2002-11-03 00:38:21 +00:00
|
|
|
/* Copyright MontaVista Software Incorporated, 2000 */
|
2003-06-04 15:05:30 +00:00
|
|
|
#include <config.h>
|
2002-11-03 00:38:21 +00:00
|
|
|
.section .resetvec,"ax"
|
|
|
|
#if defined(CONFIG_440)
|
|
|
|
b _start_440
|
2003-06-04 15:05:30 +00:00
|
|
|
#else
|
|
|
|
#if defined(CONFIG_BOOT_PCI) && defined(CONFIG_MIP405)
|
|
|
|
b _start_pci
|
2002-11-03 00:38:21 +00:00
|
|
|
#else
|
|
|
|
b _start
|
|
|
|
#endif
|
2003-06-04 15:05:30 +00:00
|
|
|
#endif
|