diff options
Diffstat (limited to 'cpu/ppc4xx/resetvec.S')
-rw-r--r-- | cpu/ppc4xx/resetvec.S | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cpu/ppc4xx/resetvec.S b/cpu/ppc4xx/resetvec.S index 53502254dc3..e058bf037eb 100644 --- a/cpu/ppc4xx/resetvec.S +++ b/cpu/ppc4xx/resetvec.S @@ -1,10 +1,13 @@ /* Copyright MontaVista Software Incorporated, 2000 */ - - +#include <config.h> .section .resetvec,"ax" #if defined(CONFIG_440) b _start_440 #else +#if defined(CONFIG_BOOT_PCI) && defined(CONFIG_MIP405) + b _start_pci +#else b _start #endif +#endif |