Forráskód Böngészése

scripts/qemustart: add notes on adding new options

Signed-off-by: Yousong Zhou <[email protected]>
Yousong Zhou 6 éve
szülő
commit
c2fee615ce
1 módosított fájl, 5 hozzáadás és 0 törlés
  1. 5 0
      scripts/qemustart

+ 5 - 0
scripts/qemustart

@@ -124,6 +124,11 @@ parse_args() {
 	o_network=
 	o_qemu_extra=()
 	while [ "$#" -gt 0 ]; do
+		# Cmdline options for the script itself SHOULD try to be
+		# prefixed with two dashes to distinguish them from those for
+		# qemu executables.
+		#
+		# Also note that qemu accepts both --opt and -opt
 		case "$1" in
 			--kernel) o_kernel="$2"; shift 2 ;;
 			--rootfs) o_rootfs="$2"; shift 2 ;;