summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-06-10 14:06:55 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-06-10 14:25:15 +0200
commitaffedc0e8a6e047538bc691b608f5f85cbe77484 (patch)
tree88598b80b4016abaf427429accc9fee0cf160680
parent9e4595aecdbc063404e482c0dcc8220d9402c2a4 (diff)
downloadOSELAS.Toolchain-affedc0e8a6e047538bc691b608f5f85cbe77484.tar.gz
OSELAS.Toolchain-affedc0e8a6e047538bc691b608f5f85cbe77484.tar.xz
newlib: add md5sum
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/newlib.in9
-rw-r--r--rules/newlib.make1
2 files changed, 9 insertions, 1 deletions
diff --git a/rules/newlib.in b/rules/newlib.in
index 6665d1e..c1d285d 100644
--- a/rules/newlib.in
+++ b/rules/newlib.in
@@ -18,10 +18,17 @@ menuconfig NEWLIB
all under free software licenses that make them easily
usable on embedded products.
+if NEWLIB
+
config NEWLIB_VERSION
- depends on NEWLIB
string
prompt "newlib version"
default "1.16.0"
help
Specify the newlib version here.
+
+config NEWLIB_MD5
+ string
+ prompt "newlib source md5sum"
+
+endif
diff --git a/rules/newlib.make b/rules/newlib.make
index ccc5524..6811a34 100644
--- a/rules/newlib.make
+++ b/rules/newlib.make
@@ -18,6 +18,7 @@ PACKAGES-$(PTXCONF_NEWLIB) += newlib
# Paths and names
#
NEWLIB_VERSION := $(call remove_quotes,$(PTXCONF_NEWLIB_VERSION))
+NEWLIB_MD5 := $(call remove_quotes,$(PTXCONF_NEWLIB_MD5))
NEWLIB := newlib-$(NEWLIB_VERSION)
NEWLIB_SUFFIX := tar.gz
NEWLIB_URL := ftp://sources.redhat.com/pub/newlib/$(NEWLIB).$(NEWLIB_SUFFIX)