diff options
author | Stefan Reinauer <stepan@openbios.org> | 2003-10-13 11:49:46 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2003-10-13 11:49:46 +0000 |
commit | 02560b5fa2339f2b1701b25e8628cca2f7df865e (patch) | |
tree | 6ebb9237d069d5a3b4248af8362c506c0a24ef83 | |
parent | b68571c139f2c73a643e2cce76ce5b00fdb2580d (diff) | |
download | coreboot-02560b5fa2339f2b1701b25e8628cca2f7df865e.tar.xz |
move equal with hdama code.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1212 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/mainboard/amd/solo/failover.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/amd/solo/failover.c b/src/mainboard/amd/solo/failover.c index 8eeeaef7e1..bd9c17020e 100644 --- a/src/mainboard/amd/solo/failover.c +++ b/src/mainboard/amd/solo/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"); |