1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-16 15:11:52 +00:00

Add -i option to supress image building.

Submitted by:	keramida
This commit is contained in:
Poul-Henning Kamp 2008-08-09 09:27:54 +00:00
parent fc0708f69f
commit 36a6be7fc9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181460

View File

@ -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"