From: <abe...@us...> - 2015-01-05 15:19:14
|
Revision: 6907 http://sourceforge.net/p/astlinux/code/6907 Author: abelbeck Date: 2015-01-05 15:19:07 +0000 (Mon, 05 Jan 2015) Log Message: ----------- Update 'master' scripts to include Asterisk 13 Modified Paths: -------------- branches/1.0/scripts/master-build branches/1.0/scripts/master-upload Modified: branches/1.0/scripts/master-build =================================================================== --- branches/1.0/scripts/master-build 2015-01-05 15:06:37 UTC (rev 6906) +++ branches/1.0/scripts/master-build 2015-01-05 15:19:07 UTC (rev 6907) @@ -66,6 +66,13 @@ FIRMWARE="ast11-firmware-1.x" IMG="ast11-img" ;; + ast13) + CONFIG="astlinux-ast13.config" + ASTERISK_VERSION="$(awk -F'=' '/^ASTERISK_VERSION/ { if ($2 ~ /^ *13./) {print $2; exit} }' package/asterisk/asterisk.mk)" + ASTERISK_VERSION="asterisk-${ASTERISK_VERSION// /}" + FIRMWARE="ast13-firmware-1.x" + IMG="ast13-img" + ;; *) echo "master-build: Unknown Asterisk Version." exit 1 @@ -98,10 +105,10 @@ rm -f initrd.img # -# Build Asterisk 1.8 and 11 versions of AstLinux +# Build Asterisk 1.8, 11 and 13 versions of AstLinux # -for asterisk in ast18 ast11; do +for asterisk in ast18 ast11 ast13; do set_asterisk_version $asterisk Modified: branches/1.0/scripts/master-upload =================================================================== --- branches/1.0/scripts/master-upload 2015-01-05 15:06:37 UTC (rev 6906) +++ branches/1.0/scripts/master-upload 2015-01-05 15:19:07 UTC (rev 6907) @@ -83,6 +83,12 @@ MIRROR_FIRMWARE="$FIRMWARE" MIRROR_IMG="downloads/img" ;; + ast13) + FIRMWARE="ast13-firmware-1.x" + IMG="ast13-img" + MIRROR_FIRMWARE="$FIRMWARE" + MIRROR_IMG="downloads/img" + ;; *) echo "master-upload: Unknown Asterisk Version." exit 1 @@ -119,10 +125,10 @@ fi # -# Upload Asterisk 1.8 and 11 versions of AstLinux +# Upload Asterisk 1.8, 11 and 13 versions of AstLinux # -for asterisk in ast18 ast11; do +for asterisk in ast18 ast11 ast13; do set_asterisk_version $asterisk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |