diff options
author | Stefan Reinauer <stepan@openbios.org> | 2003-10-24 13:53:33 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2003-10-24 13:53:33 +0000 |
commit | e4436bd7f640170c03798914baa2c47690df5e61 (patch) | |
tree | 4e30ab2bcf5fcb034a52708f908631b92142bd7d /src/mainboard/newisys/khepri/failover.c | |
parent | a9974e584cb6fa9baabc89145920403b98fbc930 (diff) | |
download | coreboot-e4436bd7f640170c03798914baa2c47690df5e61.tar.xz |
retightening khepri after last hdama changes
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1230 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/newisys/khepri/failover.c')
-rw-r--r-- | src/mainboard/newisys/khepri/failover.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/newisys/khepri/failover.c b/src/mainboard/newisys/khepri/failover.c index 8eeeaef7e1..bd9c17020e 100644 --- a/src/mainboard/newisys/khepri/failover.c +++ b/src/mainboard/newisys/khepri/failover.c @@ -27,6 +27,10 @@ static void main(void) asm("jmp __cpu_reset"); } } + /* Is this a deliberate reset by the bios */ + else if (bios_reset_detected() && last_boot_normal()) { + asm("jmp __normal_image"); + } /* Is this a secondary cpu? */ else if (!boot_cpu() && last_boot_normal()) { asm("jmp __normal_image"); |