1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Increased hard-coded maximum JSVM initrd size to 2 MiB 512 KiB.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-12-05 19:43:27 +01:00
parent 7e55f325fc
commit cdb873271d

View file

@ -203,7 +203,7 @@ namespace Sortix
#else
// TODO: UGLY HACK because JSVM doesn't support multiboot yet!
initrd = (uint8_t*) 0x180000UL;
initrdsize = 0x80000; // 512 KiB
initrdsize = 0x280000; // 2 MiB 512 KiB
#endif
#ifndef JSSORTIX