diff --git a/src/ugrd/main.py b/src/ugrd/main.py index 9c8e05cd..63e46ec1 100755 --- a/src/ugrd/main.py +++ b/src/ugrd/main.py @@ -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"}, @@ -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"},