From patchwork Fri Feb 25 02:34:59 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [FILO] Artec loader with NULLFS Date: Fri, 25 Feb 2011 02:34:59 -0000 From: Nathan Williams X-Patchwork-Id: 2694 Message-Id: <1298601299.2603.100.camel@dualcore.traverse> To: coreboot@coreboot.org load_linux_kernel() checks using_devsize, so we need to clear it if we are using Artec loader without a file system. Signed-off-by: Nathan Williams Index: i386/artecboot.c =================================================================== --- i386/artecboot.c (revision 140) +++ i386/artecboot.c (working copy) @@ -126,6 +126,7 @@ part_start = bootHdr.kernelStart >> DEV_SECTOR_BITS; part_length = ((bootHdr.kernelSize-1) >> DEV_SECTOR_BITS) + 1; filemax = bootHdr.kernelSize; + using_devsize = 0; linux_load(file, bootHdr.cmdLine); }