diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2013-07-14 00:27:30 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-07-14 22:16:40 +0200 |
commit | 72189e5b10cb6b54dd21c498f21464e57e9d8516 (patch) | |
tree | 3a00c468a1d3495ad83babc426b1d78dc683a6b1 | |
parent | e3923dd1bfe854afc010636ee2aada0161ed97a0 (diff) | |
download | buildroot-72189e5b10cb6b54dd21c498f21464e57e9d8516.tar.gz buildroot-72189e5b10cb6b54dd21c498f21464e57e9d8516.zip |
linux: remove EABI conditional
We're only EABI now, so we want to always build an EABI kernel
when we're building for ARM.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | linux/linux.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/linux/linux.mk b/linux/linux.mk index dfc948ca51..2ab437dd3f 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -170,9 +170,8 @@ define LINUX_CONFIGURE_CMDS cp $(KERNEL_SOURCE_CONFIG) $(KERNEL_ARCH_PATH)/configs/buildroot_defconfig $(TARGET_MAKE_ENV) $(MAKE1) $(LINUX_MAKE_FLAGS) -C $(@D) buildroot_defconfig rm $(KERNEL_ARCH_PATH)/configs/buildroot_defconfig - $(if $(BR2_ARM_EABI), - $(call KCONFIG_ENABLE_OPT,CONFIG_AEABI,$(@D)/.config), - $(call KCONFIG_DISABLE_OPT,CONFIG_AEABI,$(@D)/.config)) + $(if $(BR2_arm)$(BR2_armeb), + $(call KCONFIG_ENABLE_OPT,CONFIG_AEABI,$(@D)/.config)) # As the kernel gets compiled before root filesystems are # built, we create a fake cpio file. It'll be # replaced later by the real cpio archive, and the kernel will be |