[LinuxBIOS] lzma compression and filo/etherboot payloads in buildrom

Ward Vandewege ward at gnu.org
Thu Nov 15 18:17:24 CET 2007


Hi all,

I seem to have a problem when trying to use a lzma pre-compressed payload in
buildrom in combination with an etherboot (or filo) payload. Things work fine
with a kernel or LAB payload.

I've attached the LinuxBIOS Config.lb I used, and the boot output for
etherboot. I recall having similar problems with a filo payload.

If I disable CONFIG_COMPRESSED_PAYLOAD_LZMA and CONFIG_PRECOMPRESSED_PAYLOAD
in Config.lb and disable the LZMA compression in buildrom's kconfig the
Etherboot payload works just fine.

Am I doing something stupid?

Thanks,
Ward.

-- 
Ward Vandewege <ward at fsf.org>
Free Software Foundation - Senior System Administrator
-------------- next part --------------
A non-text attachment was scrubbed...
Name: minicom4.cap
Type: application/cap
Size: 17138 bytes
Desc: not available
URL: <http://www.coreboot.org/pipermail/coreboot/attachments/20071115/1cd9c7c7/attachment.bin>
-------------- next part --------------
##
## This file is part of the LinuxBIOS project.
##
## Copyright (C) 2007 AMD
## Written by Yinghai Lu <yinghailu at gmail.com> for AMD.
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
##

target m57sli
mainboard gigabyte/m57sli

option ROM_SIZE=0x100000

romimage "normal"
	option USE_FAILOVER_IMAGE=0
	option USE_FALLBACK_IMAGE=0
	option ROM_IMAGE_SIZE=0x20000
  option CONFIG_COMPRESSED_PAYLOAD_LZMA=1
  option CONFIG_PRECOMPRESSED_PAYLOAD=1
	option XIP_ROM_SIZE=0x40000
	option LINUXBIOS_EXTRA_VERSION="$(shell cat ../../VERSION)_Normal"
	payload ../payload.elf
end

romimage "fallback" 
	option USE_FAILOVER_IMAGE=0
	option USE_FALLBACK_IMAGE=1
	option ROM_IMAGE_SIZE=0x20000
  option CONFIG_COMPRESSED_PAYLOAD_LZMA=1
  option CONFIG_PRECOMPRESSED_PAYLOAD=1
	option XIP_ROM_SIZE=0x40000
	option LINUXBIOS_EXTRA_VERSION="$(shell cat ../../VERSION)_Fallback"
	payload ../payload.elf
end

romimage "failover"
	option USE_FAILOVER_IMAGE=1
	option USE_FALLBACK_IMAGE=0
	option ROM_IMAGE_SIZE=FAILOVER_SIZE
  option CONFIG_COMPRESSED_PAYLOAD_LZMA=1
  option CONFIG_PRECOMPRESSED_PAYLOAD=1
	option XIP_ROM_SIZE=FAILOVER_SIZE
	option LINUXBIOS_EXTRA_VERSION="$(shell cat ../../VERSION)_Failover"
end

buildrom ./linuxbios.rom ROM_SIZE "normal" "fallback" "failover"


More information about the coreboot mailing list