Merge branch 'fix-initfs-debug-space' into 'main'

Fix initfs space insufficient issue

See merge request redox-os/base!119
This commit is contained in:
Jeremy Soller
2026-02-17 07:54:12 -07:00
+1 -1
View File
@@ -14,7 +14,7 @@ pub const KIBIBYTE: u64 = 1024;
pub const MEBIBYTE: u64 = KIBIBYTE * 1024;
#[cfg(debug_assertions)]
pub const DEFAULT_MAX_SIZE: u64 = 128 * MEBIBYTE;
pub const DEFAULT_MAX_SIZE: u64 = 256 * MEBIBYTE;
#[cfg(not(debug_assertions))]
pub const DEFAULT_MAX_SIZE: u64 = 64 * MEBIBYTE;