bootboot: add a delay when assuming the stack size

This commit is contained in:
pitust 2021-11-07 08:12:40 +00:00
parent 610ae1198a
commit 252bc5e524

View File

@ -186,6 +186,7 @@ void bootboot_load(char *config) {
print("bootboot: warning: no init stack size entered, assuming 1024\n");
print("1024 is really small, specify more using initstack=size ini initrd;\n");
init_stack_size = 1024;
delay(1000000);
}
printv("bootboot: mapping struct to %X\n", struct_vaddr);
printv("bootboot: mapping environemnt to %X\n", env_vaddr);