Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ugrd/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ def main():
},
{"flags": ["-c", "--config"], "action": "store", "help": "set the config file location"},
{"flags": ["-m", "--modules"], "action": "store", "help": "Define config modules to load, comma separated"},
{"flags": ["--no-kmod"], "action": "store_true", "help": "Allow images to be built without kmods/kernel info"},
{"flags": ["--kernel-version", "--kver"], "action": "store", "help": "set the kernel version"},
{"flags": ["--clean"], "action": "store_true", "help": "clean the build directory at runtime"},
{"flags": ["--no-clean"], "action": "store_false", "help": "disable build directory cleaning", "dest": "clean"},
Expand Down Expand Up @@ -124,7 +125,6 @@ def main():
"help": "do not autodetect root DM volumes",
"dest": "autodetect_root_dm",
},
{"flags": ["--no-kmod"], "action": "store_true", "help": "Allow images to be built without kmods/kernel info"},
{"flags": ["--print-config"], "action": "store_true", "help": "print the final config dict"},
{"flags": ["--print-init"], "action": "store_true", "help": "print the final init structure"},
{"flags": ["--test"], "action": "store_true", "help": "Tests the image with qemu"},
Expand Down