mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add -i option to supress image building.
Submitted by: keramida
This commit is contained in:
parent
fc0708f69f
commit
36a6be7fc9
1 changed files with 10 additions and 2 deletions
|
|
@ -581,6 +581,7 @@ usage () {
|
|||
echo " -b suppress builds (both kernel and world)"
|
||||
echo " -k suppress buildkernel"
|
||||
echo " -w suppress buildworld"
|
||||
echo " -i suppress disk image build"
|
||||
echo " -c specify config file"
|
||||
) 1>&2
|
||||
exit 2
|
||||
|
|
@ -591,9 +592,10 @@ usage () {
|
|||
|
||||
do_kernel=true
|
||||
do_world=true
|
||||
do_image=true
|
||||
|
||||
set +e
|
||||
args=`getopt bc:hkw $*`
|
||||
args=`getopt bc:hkwi $*`
|
||||
if [ $? -ne 0 ] ; then
|
||||
usage
|
||||
exit 2
|
||||
|
|
@ -622,6 +624,8 @@ do
|
|||
-h)
|
||||
usage
|
||||
;;
|
||||
-i)
|
||||
do_image=false
|
||||
-w)
|
||||
shift;
|
||||
do_world=false
|
||||
|
|
@ -713,7 +717,11 @@ install_kernel
|
|||
run_customize
|
||||
setup_nanobsd
|
||||
prune_usr
|
||||
create_${NANO_ARCH}_diskimage
|
||||
if $do_image ; then
|
||||
create_${NANO_ARCH}_diskimage
|
||||
else
|
||||
echo "## Skipping image build (as instructed)"
|
||||
fi
|
||||
last_orders
|
||||
|
||||
echo "# NanoBSD image completed"
|
||||
|
|
|
|||
Loading…
Reference in a new issue