diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-05-02 19:10:27 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-03 21:30:58 +0200 |
commit | 09e7b4c89159a3e48f463b0a22e649c4fc12f4b3 (patch) | |
tree | 0a667d77e6b2700f658a047a70ef17b8ded9e59c | |
parent | e136ca20836a03c7771b6820fb16b0972a654114 (diff) | |
download | buildroot-09e7b4c89159a3e48f463b0a22e649c4fc12f4b3.tar.gz buildroot-09e7b4c89159a3e48f463b0a22e649c4fc12f4b3.zip |
boot/syslinux: needs an ia32-capable compiler
The pxelinux and isolionux images are 32-bit binaries, so we need a
compiler that can generate them (ie. a compiler that understands -m32).
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Frank Hunleth <fhunleth@troodon-software.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Tested-by: Frank Hunleth <fhunleth@troodon-software.com>
Tested-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | boot/syslinux/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/boot/syslinux/Config.in b/boot/syslinux/Config.in index 2c39e65157..5b1122d6fc 100644 --- a/boot/syslinux/Config.in +++ b/boot/syslinux/Config.in @@ -1,6 +1,7 @@ config BR2_TARGET_SYSLINUX bool "syslinux" depends on BR2_i386 || BR2_x86_64 + select BR2_HOSTARCH_NEEDS_IA32_COMPILER help The syslinux bootloader for x86 systems. This includes: syslinux, pxelinux, extlinux. |