diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-04-23 22:00:33 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-04-24 15:19:18 +0200 |
commit | 79407e01fe383f8c2884e0ef5c99584058eaaa51 (patch) | |
tree | 66319bb08e3e12585b7d3c6749fca09c5dfc05eb | |
parent | 554e29e267e6b36a0fd78c82cbad2c82d939eb7f (diff) | |
download | buildroot-79407e01fe383f8c2884e0ef5c99584058eaaa51.tar.gz buildroot-79407e01fe383f8c2884e0ef5c99584058eaaa51.zip |
binutils: disable <2.24 for aarch64
Versions lower than 2.24 fail to build a working kernel as in:
Freeing unused kernel memory: 184K (ffffffc00059a000 - ffffffc0005c8000)
init[1]: unhandled level 2 translation fault (11) at 0x00000008, esr
0x92000006
pgd = ffffffc876403000
[00000008] *pgd=00000008f6ea0003, *pmd=0000000000000000
[Peter: adjust commit message]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/binutils/Config.in.host | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/binutils/Config.in.host b/package/binutils/Config.in.host index 58738e88ed..2f86f517bf 100644 --- a/package/binutils/Config.in.host +++ b/package/binutils/Config.in.host @@ -14,30 +14,30 @@ choice bool "binutils 2.18-avr32-1.0.1" config BR2_BINUTILS_VERSION_2_20_1 - depends on !BR2_avr32 + depends on !BR2_avr32 && !BR2_aarch64 depends on !BR2_ARM_EABIHF bool "binutils 2.20.1" config BR2_BINUTILS_VERSION_2_21 - depends on !BR2_avr32 + depends on !BR2_avr32 && !BR2_aarch64 depends on !BR2_ARM_EABIHF bool "binutils 2.21" config BR2_BINUTILS_VERSION_2_21_1 - depends on !BR2_avr32 + depends on !BR2_avr32 && !BR2_aarch64 depends on !BR2_ARM_EABIHF bool "binutils 2.21.1" config BR2_BINUTILS_VERSION_2_22 - depends on !BR2_avr32 + depends on !BR2_avr32 && !BR2_aarch64 bool "binutils 2.22" config BR2_BINUTILS_VERSION_2_23_1 - depends on !BR2_avr32 + depends on !BR2_avr32 && !BR2_aarch64 bool "binutils 2.23.1" config BR2_BINUTILS_VERSION_2_23_2 - depends on !BR2_avr32 + depends on !BR2_avr32 && !BR2_aarch64 bool "binutils 2.23.2" config BR2_BINUTILS_VERSION_2_24 |