mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 08:27:23 +00:00
8bde7f776c
- remove trailing white space, trailing empty lines, C++ comments, etc. - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c) * Patches by Kenneth Johansson, 25 Jun 2003: - major rework of command structure (work done mostly by Michal Cendrowski and Joakim Kristiansen)
12 lines
243 B
ArmAsm
12 lines
243 B
ArmAsm
/* 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
|