Move initrd to 64M

This commit is contained in:
Fabian 2020-12-31 19:14:33 -06:00
parent af4f1c5d8e
commit 12a19b444f

View file

@ -43,9 +43,10 @@ function load_kernel(mem8, bzimage, initrd, cmdline)
const KERNEL_HIGH_ADDRESS = 0x100000;
// Puts the initrd at the 32 mb boundary. This means the mininum memory size
// is 32 mb plus the size of the initrd
const INITRD_ADDRESS = 32 << 20;
// Put the initrd at the 64 MB boundary. This means the minimum memory size
// is 64 MB plus the size of the initrd.
// Note: If set too low, kernel may fail to load the initrd with "invalid magic at start of compressed archive"
const INITRD_ADDRESS = 64 << 20;
const quiet = false;