From cdb873271d8d101494d53c42c1f42a1e967339a1 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 5 Dec 2011 19:43:27 +0100 Subject: [PATCH] Increased hard-coded maximum JSVM initrd size to 2 MiB 512 KiB. --- sortix/kernel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sortix/kernel.cpp b/sortix/kernel.cpp index cf6bd253..2a2e7cc4 100644 --- a/sortix/kernel.cpp +++ b/sortix/kernel.cpp @@ -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