diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2006-01-28 22:01:56 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2006-01-28 22:01:56 +0000 |
commit | b7ac85c30db41ed39338035728bea03ab8411aee (patch) | |
tree | 604ddb64d52fb1b4bfd9cc586be3d8942d1eb3c5 | |
parent | 0f1e9ea0b62e9652ab7efff791e0d867d43d95fe (diff) |
This is the change so that we can readable ldscript.ld
amd/rumba now builds.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2169 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/config/Config.lb | 2 | ||||
-rw-r--r-- | targets/amd/rumba/Config.lb | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/config/Config.lb b/src/config/Config.lb index 56ac5e8c4e..ba9e482858 100644 --- a/src/config/Config.lb +++ b/src/config/Config.lb @@ -13,7 +13,7 @@ makedefine HOSTCFLAGS:= -Os -Wall makerule ldscript.ld depends "ldoptions $(LDSUBSCRIPTS-1)" - action "echo \"INCLUDE ldoptions\" > $@ ; for file in $(LDSUBSCRIPTS-1) ; do echo \"INCLUDE $$file\" >> $@ ; done" + action "echo '/*ldoptions*/' > $@; cat ldoptions >> $@ ; for file in $(LDSUBSCRIPTS-1) ; do echo /\* $$file \*/ >> $@; cat $$file >> $@ ; done" end #makerule cpuflags diff --git a/targets/amd/rumba/Config.lb b/targets/amd/rumba/Config.lb index bfb04ac178..7a5644ae1d 100644 --- a/targets/amd/rumba/Config.lb +++ b/targets/amd/rumba/Config.lb @@ -14,7 +14,8 @@ romimage "normal" # payload ../../../../tg3--ide_disk.zelf # payload ../../../../../lnxieepro100.ebi # payload /etc/hosts - payload /home/hamish/work/etherboot/eb-5.2.6-lne100.elf +# payload /home/hamish/work/etherboot/eb-5.2.6-lne100.elf + payload /tmp/filo.elf end romimage "fallback" @@ -25,7 +26,8 @@ romimage "fallback" # payload ../../../../tg3--ide_disk.zelf # payload ../../../../../lnxieepro100.ebia # payload /etc/hosts - payload /home/hamish/work/etherboot/eb-5.2.6-lne100.elf +# payload /home/hamish/work/etherboot/eb-5.2.6-lne100.elf + payload /tmp/filo.elf end buildrom ./linuxbios.rom ROM_SIZE "normal" "fallback" |