Hi, On Mon, May 28, 2007 at 05:41:13PM +0200, Stefan Reinauer wrote: > > gcc -m32 -nostdlib -nostartfiles -static -o linuxbios -T ldscript.ld crt0.o > > /usr/bin/ld: section .id [00000000fffdffce -> 00000000fffdffef] overlaps > > section .rom [00000000fffd663a -> 00000000fffe208f] > > /usr/bin/ld: linuxbios: section .id lma 0xfffdffce overlaps previous > > sections > > /usr/bin/ld: linuxbios: section .reset lma 0xfffdfff0 overlaps previous > > sections > > collect2: ld returned 1 exit status > > make[1]: *** [linuxbios] Fehler 1 > > make[1]: Leaving directory > > `/usr/src/neues_bios/LinuxBIOSv2/targets/digitallogic/adl855pc/adl855pc/normal' > > make: *** [normal/linuxbios.rom] Fehler 1 > > video:/usr/src/neues_bios/LinuxBIOSv2/targets/digitallogic/adl855pc/adl855pc# > > > > Try setting ROM_SIZE in the mainboard Config.lb to your rom size (512k?) > and ROM_IMAGE_SIZE in the targets/ Config.lb to 0x16000 or 0x17000 > instead of 0x10000 or whatever it is.
This patch works for me. It's strange that abuild doen't complain here, but manually building does indeed not work... Uwe. -- http://www.hermann-uwe.de | http://www.holsham-traders.de http://www.crazy-hacks.org | http://www.unmaintained-free-software.org
Signed-off-by: Uwe Hermann <[EMAIL PROTECTED]> Index: targets/digitallogic/adl855pc/Config.lb =================================================================== --- targets/digitallogic/adl855pc/Config.lb (Revision 2701) +++ targets/digitallogic/adl855pc/Config.lb (Arbeitskopie) @@ -6,16 +6,17 @@ option DEFAULT_CONSOLE_LOGLEVEL=10 option MAXIMUM_CONSOLE_LOGLEVEL=10 + romimage "normal" option USE_FALLBACK_IMAGE=0 - option ROM_IMAGE_SIZE=0x10000 + option ROM_IMAGE_SIZE= 80 * 1024 option LINUXBIOS_EXTRA_VERSION=".0Normal" payload /etc/hosts end romimage "fallback" option USE_FALLBACK_IMAGE=1 - option ROM_IMAGE_SIZE=0x10000 + option ROM_IMAGE_SIZE= 80 * 1024 option LINUXBIOS_EXTRA_VERSION=".0Fallback" payload /etc/hosts end
signature.asc
Description: Digital signature
-- linuxbios mailing list [email protected] http://www.linuxbios.org/mailman/listinfo/linuxbios
