Fix toolchain configuration for alix bsp

The new gcc 8.2 toolchain emits fancy new endbr32 instructions that the
Geode LX doesn't have. The system chokes during boot with an illegal
opcode in libmount. This commit disables cet for the Alix bsp.

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2019-01-11 18:40:05 +01:00
parent f17e6f75b2
commit f34878ac01
1 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
RELEASEPKG="release-alix"
TARGET="i686-linux-musl"
GCC_CPU="i686"
TARGET="i586-linux-musl"
GCC_CPU="geode"
CPU_IS_64BIT="no"
GCC_EXTRACFG="--disable-libmpx"
BINUTILS_EXTRACFG=""
GCC_EXTRACFG="--disable-libmpx --disable-cet"
BINUTILS_EXTRACFG="--disable-cet"
LINUXPKG="linux"
LINUX_TGT="bzImage modules"