Merge branch 'enlarge-debug' into 'main'

Increase initfs in debug build

See merge request redox-os/base!26
This commit is contained in:
Jeremy Soller
2025-08-01 06:50:42 -06:00
+5
View File
@@ -12,6 +12,11 @@ use redox_initfs::types as initfs;
pub const KIBIBYTE: u64 = 1024;
pub const MEBIBYTE: u64 = KIBIBYTE * 1024;
#[cfg(debug_assertions)]
pub const DEFAULT_MAX_SIZE: u64 = 128 * MEBIBYTE;
#[cfg(not(debug_assertions))]
pub const DEFAULT_MAX_SIZE: u64 = 64 * MEBIBYTE;
enum EntryKind {