From: <abe...@us...> - 2016-02-09 03:40:23
|
Revision: 7510 http://sourceforge.net/p/astlinux/code/7510 Author: abelbeck Date: 2016-02-09 03:40:20 +0000 (Tue, 09 Feb 2016) Log Message: ----------- master-build tweak for ISO generation Modified Paths: -------------- branches/1.0/scripts/master-build Modified: branches/1.0/scripts/master-build =================================================================== --- branches/1.0/scripts/master-build 2016-02-08 17:15:00 UTC (rev 7509) +++ branches/1.0/scripts/master-build 2016-02-09 03:40:20 UTC (rev 7510) @@ -189,8 +189,11 @@ cp runnix-iso.config .config for board in $BOARDS_NO_SMP $BOARDS_SMP $BOARDS_SMP64; do + ISO_NAME="${ASTVER}-${board}.iso" if [ "${board}" != "${board%-serial}" -o "$board" = "alix" -o "$board" = "net5501" ]; then SERIAL="serial" + ISO_NAME="${ISO_NAME%-serial.iso}" + ISO_NAME="${ISO_NAME%.iso}-serial.iso" else SERIAL="" fi @@ -198,10 +201,10 @@ if [ $? -ne 0 ]; then exit 1 fi - if [ ! -f "${ASTVER}-${board}.iso" ]; then + if [ ! -f "$ISO_NAME" ]; then exit 1 fi - mv "${ASTVER}-${board}.iso" "$output_path/iso/" + mv "$ISO_NAME" "$output_path/iso/" done echo " This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |