uClibc: add uClibc 0.9.30 to kconfig and Makefile

This patch adds uClibc versino 0.9.30 to the list of selectable versions. The
version identification for snapshot is also updated to reflect 0.9.30.

Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
This commit is contained in:
Hans-Christian Egtvedt 2008-12-01 13:02:22 +00:00
parent 377e554200
commit 0547cb9cb9
2 changed files with 8 additions and 1 deletions

View File

@ -18,6 +18,10 @@ choice
bool "uClibc 0.9.29"
depends on BR2_EXT_UCLIBC_VERSION_0_9_29
config BR2_UCLIBC_VERSION_0_9_30
bool "uClibc 0.9.30"
depends on BR2_EXT_UCLIBC_VERSION_0_9_30
config BR2_UCLIBC_VERSION_SNAPSHOT
bool "daily snapshot"

View File

@ -15,7 +15,7 @@ endif
ifeq ($(BR2_UCLIBC_VERSION_SNAPSHOT),y)
# Be aware that this changes daily....
UCLIBC_VER:=0.9.29
UCLIBC_VER:=0.9.30
UCLIBC_DIR:=$(TOOL_BUILD_DIR)/uClibc
UCLIBC_SOURCE:=uClibc-$(strip $(subst ",, $(BR2_USE_UCLIBC_SNAPSHOT))).tar.bz2
#"))
@ -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),y)
UCLIBC_VER:=0.9.30
endif
ifeq ($(BR2_UCLIBC_VERSION_0_9_29),y)
UCLIBC_VER:=0.9.29
endif