mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
adf32adb70
Convert CONFIG_MIP405T from SYS_EXTRA_OPTIONS to a real config There are two boards, MIP405 and MIP405T that have a few differences. Start by checking for CONFIG_TARGET_MIP405. Then introduce CONFIG_TARGET_MIP405T and use that not CONFIG_MIP405T. Next, convert also convert the usage of CONFIG_ISO_STRING to be based on Kconfig. Signed-off-by: Tom Rini <trini@konsulko.com>
13 lines
293 B
ArmAsm
13 lines
293 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_TARGET_MIP405) \
|
|
|| defined(CONFIG_TARGET_MIP405T))
|
|
b _start_pci
|
|
#else
|
|
b _start
|
|
#endif
|
|
#endif
|