]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
make.sh: add machine type to system-release.
authorArne Fitzenreiter <arne_f@ipfire.org>
Sun, 2 Oct 2011 12:52:27 +0000 (14:52 +0200)
committerArne Fitzenreiter <arne_f@ipfire.org>
Sun, 2 Oct 2011 12:52:27 +0000 (14:52 +0200)
make.sh

diff --git a/make.sh b/make.sh
index d05fecd5949b928bd2b666bda1791750ca0bdc86..161319db7abd6910c31c168d1fcf59004f1b4163 100755 (executable)
--- a/make.sh
+++ b/make.sh
@@ -724,9 +724,9 @@ buildipfire() {
   cat /proc/cpuinfo >> $BASEDIR/build/var/ipfire/firebuild
   echo $PAKFIRE_CORE > $BASEDIR/build/opt/pakfire/db/core/mine
   if [ "$GIT_BRANCH" = "next" ]; then
-       echo "$NAME $VERSION - (Development Build: $GIT_LASTCOMMIT)" > $BASEDIR/build/etc/system-release
+       echo "$NAME $VERSION ($MACHINE) - Development Build: $GIT_LASTCOMMIT" > $BASEDIR/build/etc/system-release
   else
-       echo "$NAME $VERSION - $GIT_BRANCH" > $BASEDIR/build/etc/system-release
+       echo "$NAME $VERSION ($MACHINE) - $GIT_BRANCH" > $BASEDIR/build/etc/system-release
   fi
 }