Skip to content

Commit b55efe5

Browse files
shr-projectSusan Montooth
authored andcommitted
build.sh: Store .fastboot images as artifacts (v5.1.3)
:Release Notes: Some MACHINEs can use .fastboot image format. :Detailed Notes: :Testing Performed: Only build tested. :QA Notes: No change to image. :Issues Addressed: [ES-1183] Add support to save .fastboot files in builds Open-webOS-DCO-1.0-Signed-off-by: Martin Jansa <martin.jansa@lge.com> Change-Id: I46815ede569695a9a4d900a970b2fa29df1b17e5 Reviewed-on: https://g2g.palm.com/6392 Reviewed-by: DCO Verification Reviewed-by: Susan Montooth <susan.montooth@lge.com> Tested-by: Susan Montooth <susan.montooth@lge.com>
1 parent 89d08fb commit b55efe5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

‎scripts/build.sh‎

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#set -x
1919

2020
# Some constants
21-
SCRIPT_VERSION="5.1.2"
21+
SCRIPT_VERSION="5.1.3"
2222
SCRIPT_NAME=`basename $0`
2323
AUTHORITATIVE_OFFICIAL_BUILD_SITE="svl"
2424

@@ -523,6 +523,10 @@ else
523523
fi
524524
fi
525525
done
526+
# include .fastboot kernel image when available
527+
if ls BUILD/deploy/images/${MACHINE}/*.fastboot >/dev/null 2>/dev/null; then
528+
mv BUILD/deploy/images/${MACHINE}/*.fastboot ${ARTIFACTS}/${MACHINE}/${I}/
529+
fi
526530

527531
# copy few interesting buildhistory reports only if the image was really created
528532
# (otherwise old report from previous build checked out from buildhistory repo could be used)

0 commit comments

Comments
 (0)