uclibc: add 0.9.30.1

This commit is contained in:
Peter Korsgaard 2009-03-03 09:41:15 +00:00
parent bbdf9df60a
commit 7664a62a0c
3 changed files with 14 additions and 2 deletions

View File

@ -214,3 +214,6 @@ config BR2_EXT_UCLIBC_VERSION_0_9_30
bool
default !BR2_TOOLCHAIN_EXTERNAL_SOURCE
config BR2_EXT_UCLIBC_VERSION_0_9_30_1
bool
default !BR2_TOOLCHAIN_EXTERNAL_SOURCE

View File

@ -5,7 +5,7 @@ comment "uClibc Options"
choice
prompt "uClibc C library Version"
default BR2_UCLIBC_VERSION_0_9_30
default BR2_UCLIBC_VERSION_0_9_30_1
help
Select the version of uClibc you wish to use.
@ -15,14 +15,19 @@ choice
depends on BR2_EXT_UCLIBC_VERSION_0_9_28_3
config BR2_UCLIBC_VERSION_0_9_29
depends on BR2_DEPRECATED || BR2_RECENT
depends on BR2_DEPRECATED
bool "uClibc 0.9.29"
depends on BR2_EXT_UCLIBC_VERSION_0_9_29
config BR2_UCLIBC_VERSION_0_9_30
depends on BR2_RECENT || BR2_DEPRECATED
bool "uClibc 0.9.30"
depends on BR2_EXT_UCLIBC_VERSION_0_9_30
config BR2_UCLIBC_VERSION_0_9_30_1
bool "uClibc 0.9.30.1"
depends on BR2_EXT_UCLIBC_VERSION_0_9_30_1
config BR2_UCLIBC_VERSION_SNAPSHOT
bool "daily snapshot"
@ -41,6 +46,7 @@ config BR2_UCLIBC_CONFIG
default "toolchain/uClibc/uClibc-0.9.28.config" if BR2_UCLIBC_VERSION_0_9_28_3
default "toolchain/uClibc/uClibc-0.9.29.config" if BR2_UCLIBC_VERSION_0_9_29
default "toolchain/uClibc/uClibc-0.9.30.config" if BR2_UCLIBC_VERSION_0_9_30
default "toolchain/uClibc/uClibc-0.9.30.config" if BR2_UCLIBC_VERSION_0_9_30_1
default "toolchain/uClibc/uClibc-snapshot.config" if BR2_UCLIBC_VERSION_SNAPSHOT
help
Some people may wish to use their own modified uClibc configuration

View File

@ -23,6 +23,9 @@ UCLIBC_SITE:=http://www.uclibc.org/downloads/snapshots
UCLIBC_PATCH_DIR:=toolchain/uClibc/
else
# releases
ifeq ($(BR2_UCLIBC_VERSION_0_9_30_1),y)
UCLIBC_VER:=0.9.30.1
endif
ifeq ($(BR2_UCLIBC_VERSION_0_9_30),y)
UCLIBC_VER:=0.9.30
endif