diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2003-06-26 04:05:37 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2003-06-26 04:05:37 +0000 |
commit | db59928fd93080e5376e45f7dcf7ddee0262e336 (patch) | |
tree | 55f17ffd2cc31dc7d3c7651f0a3e1dd43aa44324 /src/mainboard/arima/hdama | |
parent | 4f22177aa5fdbdd8166ba59938018fc53a4ad2ba (diff) | |
download | coreboot-db59928fd93080e5376e45f7dcf7ddee0262e336.tar.xz |
OK, now builds fallback for arima/hdama!
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@917 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/arima/hdama')
-rw-r--r-- | src/mainboard/arima/hdama/Config.lb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mainboard/arima/hdama/Config.lb b/src/mainboard/arima/hdama/Config.lb index 95abddd0c0..38827109e6 100644 --- a/src/mainboard/arima/hdama/Config.lb +++ b/src/mainboard/arima/hdama/Config.lb @@ -37,6 +37,8 @@ if USE_FALLBACK_IMAGE print "Use fallback!" mainboardinit cpu/i386/reset16.inc ldscript /cpu/i386/reset16.lds +else + print "NO FALLBACK USED!" end if USE_NORMAL_IMAGE @@ -45,7 +47,7 @@ if USE_NORMAL_IMAGE end # #### Should this be in the northbridge code? -#mainboardinit archi386/lib/cpu_reset.inc +mainboardinit arch/i386/lib/cpu_reset.inc # ### ### Include an id string (For safe flashing) @@ -59,7 +61,9 @@ ldscript /arch/i386/lib/id.lds #### failover to another image. #### #option MAX_REBOOT_CNT=2 -##ldscript arch/i386/lib/failover.lds USE_FALLBACK_IMAGE +if USE_FALLBACK_IMAGE + ldscript /arch/i386/lib/failover.lds +end # ### ### Setup our mtrrs |