summaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2016-05-27 16:48:42 -0300
committerRenato Botelho <renato@netgate.com>2016-05-27 17:27:30 -0300
commit099570f2b28898f5f2d8c725c92add860fabfa0f (patch)
tree475f20405b185299bd8c48726ff0c66107f52754 /build.sh
parent3f38f937bea54f1798b0a215c4b4500e2061609d (diff)
downloadpfsense-099570f2b28898f5f2d8c725c92add860fabfa0f.zip
pfsense-099570f2b28898f5f2d8c725c92add860fabfa0f.tar.gz
Stop building full update images, users will need to reach 2.3 first and then go to newer versions
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh11
1 files changed, 4 insertions, 7 deletions
diff --git a/build.sh b/build.sh
index 61f46ee..ea0ca20 100755
--- a/build.sh
+++ b/build.sh
@@ -51,8 +51,8 @@
set +e
usage() {
- echo "Usage $0 [options] [ iso | nanobsd | ova | nanobsd-vga | memstick | memstickserial | memstickadi | fullupdate | all | none ]"
- echo " all = iso nanobsd nanobsd-vga memstick memstickserial memstickadi fullupdate"
+ echo "Usage $0 [options] [ iso | nanobsd | ova | nanobsd-vga | memstick | memstickserial | memstickadi | all | none ]"
+ echo " all = iso nanobsd nanobsd-vga memstick memstickserial memstickadi"
echo " none = upgrade only pkg repo"
echo " [ options ]: "
echo " --flash-size|-f size(s) - a list of flash sizes to build with nanobsd i.e. '2g 4g'. Default: 2g"
@@ -199,7 +199,7 @@ while test "$1" != ""; do
--do-not-upload|-u)
export DO_NOT_UPLOAD=1
;;
- all|none|*iso*|*ova*|*memstick*|*memstickserial*|*memstickadi*|*nanobsd*|*nanobsd-vga*|*fullupdate*)
+ all|none|*iso*|*ova*|*memstick*|*memstickserial*|*memstickadi*|*nanobsd*|*nanobsd-vga*)
BUILDACTION="images"
IMAGETYPE="${1}"
;;
@@ -358,7 +358,7 @@ fi
if [ "$IMAGETYPE" = "none" ]; then
_IMAGESTOBUILD=""
elif [ "$IMAGETYPE" = "all" ]; then
- _IMAGESTOBUILD="iso fullupdate nanobsd nanobsd-vga memstick memstickserial"
+ _IMAGESTOBUILD="iso nanobsd nanobsd-vga memstick memstickserial"
if [ "${TARGET}" = "amd64" ]; then
_IMAGESTOBUILD="${_IMAGESTOBUILD} memstickadi"
fi
@@ -445,9 +445,6 @@ for _IMGTOBUILD in $_IMAGESTOBUILD; do
memstickadi)
create_memstick_adi_image
;;
- fullupdate)
- create_Full_update_tarball
- ;;
nanobsd|nanobsd-vga)
if [ "${TARGET}" = "i386" -a "${_IMGTOBUILD}" = "nanobsd" ]; then
export DEFAULT_KERNEL=${DEFAULT_KERNEL_NANOBSD:-"${PRODUCT_NAME}_wrap"}
OpenPOWER on IntegriCloud