summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2011-08-16 00:14:53 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2011-08-16 08:36:01 +0200
commit5c6212aea681843b0129b17d04ccc24d0bc3403d (patch)
treebccdda3c23681a92bdc8f2c08227a6f8b866f089
parent57fb63e34d7816d82d7f8947dfde2edc9e739e50 (diff)
uClibc: disallow 0.9.32 on sh
Build breaks during final uClibc build with 0.9.32. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--toolchain/uClibc/Config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/uClibc/Config.in b/toolchain/uClibc/Config.in
index 9f3c7b3c7..34aaa13dd 100644
--- a/toolchain/uClibc/Config.in
+++ b/toolchain/uClibc/Config.in
@@ -5,7 +5,7 @@ comment "uClibc Options"
choice
prompt "uClibc C library Version"
- default BR2_UCLIBC_VERSION_0_9_31 if BR2_avr32 # 0.9.32 broken
+ default BR2_UCLIBC_VERSION_0_9_31 if (BR2_avr32 || BR2_sh) # 0.9.32 broken
default BR2_UCLIBC_VERSION_0_9_32
help
Select the version of uClibc you wish to use.
@@ -19,7 +19,7 @@ choice
config BR2_UCLIBC_VERSION_0_9_32
bool "uClibc 0.9.32.x"
- depends on !BR2_avr32
+ depends on !(BR2_avr32 || BR2_sh)
config BR2_UCLIBC_VERSION_SNAPSHOT
bool "daily snapshot"