diff options
author | Tom Rini <trini@konsulko.com> | 2015-05-14 06:59:35 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-05-14 06:59:35 -0400 |
commit | 14539bad49f0a2a53db2d57658de55ab89ab5758 (patch) | |
tree | 5f8b207ac3ca6f4750e7810e1c8f84c17fb87056 | |
parent | 14c15daecc3d5837b1a8639c909805466fc46ed7 (diff) | |
parent | 4e31e5676f0158119783def2ab9851b6bc7e6648 (diff) | |
download | u-boot-imx-14539bad49f0a2a53db2d57658de55ab89ab5758.zip u-boot-imx-14539bad49f0a2a53db2d57658de55ab89ab5758.tar.gz u-boot-imx-14539bad49f0a2a53db2d57658de55ab89ab5758.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-arc
-rw-r--r-- | arch/arc/Kconfig | 8 | ||||
-rw-r--r-- | arch/arc/config.mk | 4 |
2 files changed, 2 insertions, 10 deletions
diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig index 85fddd2..67d28d3 100644 --- a/arch/arc/Kconfig +++ b/arch/arc/Kconfig @@ -134,14 +134,6 @@ choice prompt "Target select" optional -config TARGET_DUMMY - bool "Dummy target" - help - Please select one of real target boards below! - This target is only meant to force "makedefconfig" to put - TARGET_xxx in defconfig even this is the first target from the list - below. - config TARGET_TB100 bool "Support tb100" diff --git a/arch/arc/config.mk b/arch/arc/config.mk index 04c034b..74943d9 100644 --- a/arch/arc/config.mk +++ b/arch/arc/config.mk @@ -11,13 +11,13 @@ CONFIG_SYS_BIG_ENDIAN = 1 endif ifdef CONFIG_SYS_LITTLE_ENDIAN -ARC_CROSS_COMPILE := arc-buildroot-linux-uclibc- +ARC_CROSS_COMPILE := arc-linux- PLATFORM_LDFLAGS += -EL PLATFORM_CPPFLAGS += -mlittle-endian endif ifdef CONFIG_SYS_BIG_ENDIAN -ARC_CROSS_COMPILE := arceb-buildroot-linux-uclibc- +ARC_CROSS_COMPILE := arceb-linux- PLATFORM_LDFLAGS += -EB PLATFORM_CPPFLAGS += -mbig-endian endif |