summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-06-10 14:06:54 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-06-10 14:25:14 +0200
commit1f082d713430278200e5a2339ca7cdee5b79380f (patch)
tree52d8e707c141ff40cf9534ae92be3b2e2b10cbb8
parent3c13eb469087f8d86ef600dd2f3554fc883f975c (diff)
downloadOSELAS.Toolchain-1f082d713430278200e5a2339ca7cdee5b79380f.tar.gz
OSELAS.Toolchain-1f082d713430278200e5a2339ca7cdee5b79380f.tar.xz
cross-gdb: add md5sum
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/cross-gdb.in9
-rw-r--r--rules/cross-gdb.make1
2 files changed, 9 insertions, 1 deletions
diff --git a/rules/cross-gdb.in b/rules/cross-gdb.in
index 84ef046..c983485 100644
--- a/rules/cross-gdb.in
+++ b/rules/cross-gdb.in
@@ -7,10 +7,17 @@ menuconfig CROSS_GDB
C++, Fortran, Modula 2 and Java programs. A must-have for any
serious programmer.
+if CROSS_GDB
+
config CROSS_GDB_VERSION
- depends on CROSS_GDB
string
prompt "gdb version"
default "6.8"
help
Specify the version of gdb here.
+
+config CROSS_GDB_MD5
+ string
+ prompt "gdb source md5sum"
+
+endif
diff --git a/rules/cross-gdb.make b/rules/cross-gdb.make
index a6a682c..727de25 100644
--- a/rules/cross-gdb.make
+++ b/rules/cross-gdb.make
@@ -18,6 +18,7 @@ CROSS_PACKAGES-$(PTXCONF_CROSS_GDB) += cross-gdb
# Paths and names
#
CROSS_GDB_VERSION := $(call remove_quotes,$(PTXCONF_CROSS_GDB_VERSION))
+CROSS_GDB_MD5 := $(call remove_quotes,$(PTXCONF_CROSS_GDB_MD5))
CROSS_GDB := gdb-$(CROSS_GDB_VERSION)
CROSS_GDB_SUFFIX := tar.bz2
CROSS_GDB_SOURCE := $(SRCDIR)/$(CROSS_GDB).$(CROSS_GDB_SUFFIX)