summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_openwrt.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-06-12 21:08:53 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-12 21:08:53 +0200
commiteec3c8cd076a57343b624cd82127d9dbfa8e38c5 (patch)
tree657df3581076ea2e077ad4dc65b3c146f9591021 /bin/reproducible_openwrt.sh
parent8fb9f0bd3e7fff156a503321d630562baf9af804 (diff)
downloadjenkins.debian.net-eec3c8cd076a57343b624cd82127d9dbfa8e38c5.tar.xz
reproducible openwrt: fix package name
Diffstat (limited to 'bin/reproducible_openwrt.sh')
-rwxr-xr-xbin/reproducible_openwrt.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh
index eddfacc8..616212c5 100755
--- a/bin/reproducible_openwrt.sh
+++ b/bin/reproducible_openwrt.sh
@@ -101,6 +101,12 @@ echo
git log -1
echo "============================================================================="
+echo "$(date -u) - Updating package feeds."
+echo "============================================================================="
+./scripts/feeds update -a
+./scripts/feeds install -a
+
+echo "============================================================================="
echo "$(date -u) - Building the toolchain now."
echo "============================================================================="
make defconfig
@@ -191,7 +197,7 @@ for i in $(ls -1 dl/) ; do
done
echo "</table>" >> $TOOLCHAIN_HTML
echo "<table><tr><th>Debian $(cat /etc/debian_version) package on $(dpkg --print-architecture)</th><th>installed version</th></tr>" >> $TOOLCHAIN_HTML
-for i in gcc binutils bzip2 flex python perl make findutils grep diff unzip gawk util-linux zlib1g-dev libc6-dev git subversion ; do
+for i in gcc binutils bzip2 flex python perl make findutils grep diffutils unzip gawk util-linux zlib1g-dev libc6-dev git subversion ; do
echo " <tr><td>$i</td><td>" >> $TOOLCHAIN_HTML
dpkg -s $i|grep '^Version'|cut -d " " -f2 >> $TOOLCHAIN_HTML
echo " </td></tr>" >> $TOOLCHAIN_HTML