summaryrefslogtreecommitdiff
path: root/cpu/ppc4xx/resetvec.S
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/ppc4xx/resetvec.S')
-rw-r--r--cpu/ppc4xx/resetvec.S7
1 files changed, 5 insertions, 2 deletions
diff --git a/cpu/ppc4xx/resetvec.S b/cpu/ppc4xx/resetvec.S
index 53502254dc..e058bf037e 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