The --minimum-ram-size option seem to not do anything. It is associated with the minimum_stack_size variable for some reason, which is not being used further in the code.
|
#[arg( |
|
long = "minimum-ram-size", |
|
id = "min-ram-size", |
|
help = "in bytes", |
|
conflicts_with = "stack-size", |
|
conflicts_with = "heap-size", |
|
conflicts_with = "kernel-heap-size" |
|
)] |
|
pub minimum_stack_size: Option<u32>, |
The
--minimum-ram-sizeoption seem to not do anything. It is associated with theminimum_stack_sizevariable for some reason, which is not being used further in the code.elf2tab/src/cmdline.rs
Lines 64 to 72 in 06b05fd