You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Instead of immediately shutting down the machine upon successful boot, pass 'rdinit=/bin/sh' on the kernel command line to allow interacting with the machine via a shell."
77
+
help=
78
+
"Instead of immediately shutting down the machine upon successful boot, pass 'rdinit=/bin/sh' on the kernel command line to allow interacting with the machine via a shell.",
64
79
)
65
80
parser.add_argument(
66
81
"-k",
67
82
"--kernel-location",
68
83
required=True,
69
84
type=str,
70
-
help=# noqa: E251
71
-
"Path to kernel image or kernel build folder to search for image in. Can be an absolute or relative path."
85
+
help=
86
+
"Path to kernel image or kernel build folder to search for image in. Can be an absolute or relative path.",
72
87
)
73
88
parser.add_argument(
74
89
"--no-kvm",
75
90
action="store_true",
76
-
help=# noqa: E251
77
-
"Do not use KVM for acceleration even when supported (only recommended for debugging)."
91
+
help=
92
+
"Do not use KVM for acceleration even when supported (only recommended for debugging).",
78
93
)
79
94
parser.add_argument(
80
95
"-s",
81
96
"--smp",
82
97
type=int,
83
-
help=# noqa: E251
84
-
"Number of processors for virtual machine. By default, only machines spawned with KVM will use multiple vCPUS."
98
+
help=
99
+
"Number of processors for virtual machine. By default, only machines spawned with KVM will use multiple vCPUS.",
85
100
)
86
101
parser.add_argument(
87
102
"-t",
@@ -194,7 +209,7 @@ def get_smp_value(args):
194
209
# CONFIG_NR_CPUS then get the actual value if possible.
0 commit comments