|
@@ -25,6 +25,7 @@ LINUX_SITE = https://cdn.kernel.org/pub/linux/kernel
|
|
|
LINUX_HEADERS_SITE = http://ftp.barfooze.de/pub/sabotage/tarballs/
|
|
|
|
|
|
DL_CMD = wget -c -O
|
|
|
+SHA1_CMD = sha1sum -c
|
|
|
|
|
|
COWPATCH = $(CURDIR)/cowpatch.sh
|
|
|
|
|
@@ -76,7 +77,7 @@ $(SOURCES)/config.sub: | $(SOURCES)
|
|
|
mkdir -p $@.tmp
|
|
|
cd $@.tmp && $(DL_CMD) $(notdir $@) "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=$(CONFIG_SUB_REV)"
|
|
|
cd $@.tmp && touch $(notdir $@)
|
|
|
- cd $@.tmp && sha1sum -c $(CURDIR)/hashes/$(notdir $@).$(CONFIG_SUB_REV).sha1
|
|
|
+ cd $@.tmp && $(SHA1_CMD) $(CURDIR)/hashes/$(notdir $@).$(CONFIG_SUB_REV).sha1
|
|
|
mv $@.tmp/$(notdir $@) $@
|
|
|
rm -rf $@.tmp
|
|
|
|
|
@@ -84,7 +85,7 @@ $(SOURCES)/%: hashes/%.sha1 | $(SOURCES)
|
|
|
mkdir -p $@.tmp
|
|
|
cd $@.tmp && $(DL_CMD) $(notdir $@) $(SITE)/$(notdir $@)
|
|
|
cd $@.tmp && touch $(notdir $@)
|
|
|
- cd $@.tmp && sha1sum -c $(CURDIR)/hashes/$(notdir $@).sha1
|
|
|
+ cd $@.tmp && $(SHA1_CMD) $(CURDIR)/hashes/$(notdir $@).sha1
|
|
|
mv $@.tmp/$(notdir $@) $@
|
|
|
rm -rf $@.tmp
|
|
|
|