Also make squashfs skippable with $IMAGE_TARGETS

This commit is contained in:
Steve Langasek 2017-02-08 15:18:22 -08:00
parent 97bc634bd9
commit 60da7e7c43

View File

@ -3,6 +3,15 @@
#
# Generate a squashfs root and manifest
case $IMAGE_TARGETS in
""|*squashfs*)
;;
*)
echo "Skipping squashfs build"
exit 0
;;
esac
if [ -n "$SUBARCH" ]; then
echo "Skipping rootfs build for subarch flavor build"
exit 0