git: 0833a3fe5b33 - main - nanobsd: Alphebetize -I
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 09 Sep 2025 21:49:10 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=0833a3fe5b33f0ef4cdbd4e9b3af0fcd223d366a
commit 0833a3fe5b33f0ef4cdbd4e9b3af0fcd223d366a
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2025-09-09 15:56:09 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2025-09-09 21:49:05 +0000
nanobsd: Alphebetize -I
Put -I in its proper place alphabetically
Sponsored by: Netflix
---
tools/tools/nanobsd/nanobsd.sh | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/tools/tools/nanobsd/nanobsd.sh b/tools/tools/nanobsd/nanobsd.sh
index 4c390d8ca371..3a09468176cf 100755
--- a/tools/tools/nanobsd/nanobsd.sh
+++ b/tools/tools/nanobsd/nanobsd.sh
@@ -66,6 +66,15 @@ do
do_installkernel=false
shift
;;
+ -I)
+ do_world=false
+ do_kernel=false
+ do_installworld=false
+ do_installkernel=false
+ do_prep_image=false
+ do_image=true
+ shift
+ ;;
-K)
do_installkernel=false
shift
@@ -124,15 +133,6 @@ do
do_world=false
shift
;;
- -I)
- do_world=false
- do_kernel=false
- do_installworld=false
- do_installkernel=false
- do_prep_image=false
- do_image=true
- shift
- ;;
--)
shift
break