summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rules/cross-gcc.in4
-rw-r--r--rules/cross-gcc.make1
2 files changed, 5 insertions, 0 deletions
diff --git a/rules/cross-gcc.in b/rules/cross-gcc.in
index a9648b6..059268f 100644
--- a/rules/cross-gcc.in
+++ b/rules/cross-gcc.in
@@ -20,6 +20,10 @@ config CROSS_GCC_VERSION
help
Specify the version of gcc here.
+config CROSS_GCC_MD5
+ string
+ prompt "gcc source md5sum"
+
config CROSS_GCC_43
bool
prompt "additional deps for gcc >= 4.3"
diff --git a/rules/cross-gcc.make b/rules/cross-gcc.make
index 662f207..23438cc 100644
--- a/rules/cross-gcc.make
+++ b/rules/cross-gcc.make
@@ -18,6 +18,7 @@ CROSS_PACKAGES-$(PTXCONF_CROSS_GCC) += cross-gcc
# Paths and names
#
CROSS_GCC_VERSION := $(call remove_quotes,$(PTXCONF_CROSS_GCC_VERSION))
+CROSS_GCC_MD5 := $(call remove_quotes,$(PTXCONF_CROSS_GCC_MD5))
CROSS_GCC := gcc-$(CROSS_GCC_VERSION)
CROSS_GCC_SUFFIX := tar.bz2
CROSS_GCC_SOURCE := $(SRCDIR)/$(CROSS_GCC).$(CROSS_GCC_SUFFIX)