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
1 changed files with 1 additions and 1 deletions

View File

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