From: Tony Breeds Date: Tue, 17 Feb 2009 23:20:12 +0000 (+1100) Subject: Increase the LOAD_BUFFER_SIZE to 20MiB. X-Git-Tag: yaboot-1.3.17-rc1~28^2~10 X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=commitdiff_plain;h=1110d149dc41114e22297244ca274b9a52487356;ds=sidebyside Increase the LOAD_BUFFER_SIZE to 20MiB. As installers add more features initrd's get bigger. Lets try to accommodate them. Signed-off-by: Tony Breeds --- diff --git a/second/fs_of.c b/second/fs_of.c index 95c131d..d40f938 100644 --- a/second/fs_of.c +++ b/second/fs_of.c @@ -45,7 +45,7 @@ #include "debug.h" #define LOAD_BUFFER_POS 0x1000000 -#define LOAD_BUFFER_SIZE 0x1000000 +#define LOAD_BUFFER_SIZE 0x1400000 static int of_open(struct boot_file_t* file, const char* dev_name, struct partition_t* part, const char* file_name);