diff options
author | Romain Naour <romain.naour@gmail.com> | 2016-08-01 18:30:20 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-01 22:09:05 +0200 |
commit | c946f1a909b8b450a9b0f904d0cf62933b1f99a4 (patch) | |
tree | 217d8b42842005f4d7c439ccb0795c26dbd024a5 | |
parent | ad3dcf0050787061f8a6cf5b07760811a4404daa (diff) | |
download | buildroot-c946f1a909b8b450a9b0f904d0cf62933b1f99a4.tar.gz buildroot-c946f1a909b8b450a9b0f904d0cf62933b1f99a4.zip |
package/xenomai: disable for cortex-M cpus
Following include/asm-arm/features.h, Xenomai doesn't support cortex-M
cpus.
error "Could not find current ARM architecture"
Fixes:
http://autobuild.buildroot.net/results/06a/06a52b2c2c23df595f58feb6b95437fc65a86d31
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/xenomai/Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/xenomai/Config.in b/package/xenomai/Config.in index a4a279545d..3de7bde092 100644 --- a/package/xenomai/Config.in +++ b/package/xenomai/Config.in @@ -1,8 +1,8 @@ config BR2_PACKAGE_XENOMAI_ARCH_SUPPORTS bool default y - depends on BR2_i386 || BR2_x86_64 || BR2_arm || \ - BR2_bfin || BR2_powerpc || BR2_sh4 + depends on BR2_i386 || BR2_x86_64 || (BR2_arm && !BR2_ARM_CPU_ARMV7M) || \ + BR2_bfin || BR2_powerpc || BR2_sh4 comment "xenomai needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS |