Remove ISO from default build, memstick is hybrid

This commit is contained in:
Renato Botelho 2018-05-04 08:23:50 -03:00
parent bb3aa74785
commit 70350cb1ff

View File

@ -21,7 +21,7 @@
set +e
usage() {
echo "Usage $0 [options] [ iso | ova | memstick | memstickserial | memstickadi | all | none ]"
echo " all = iso memstick memstickserial memstickadi"
echo " all = memstick memstickserial memstickadi"
echo " none = upgrade only pkg repo"
echo " [ options ]: "
echo " --no-buildworld|-c - Will set NO_BUILDWORLD NO_BUILDKERNEL to not build kernel and world"
@ -311,7 +311,7 @@ fi
if [ "$IMAGETYPE" = "none" ]; then
_IMAGESTOBUILD=""
elif [ "$IMAGETYPE" = "all" ]; then
_IMAGESTOBUILD="iso memstick memstickserial"
_IMAGESTOBUILD="memstick memstickserial"
if [ "${TARGET}" = "amd64" ]; then
_IMAGESTOBUILD="${_IMAGESTOBUILD} memstickadi"
if [ -n "${_IS_RELEASE}" ]; then