diff options
Diffstat (limited to 'src/udev/udevadm.c')
-rw-r--r-- | src/udev/udevadm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/udev/udevadm.c b/src/udev/udevadm.c index df23a60c1a..cd3786b416 100644 --- a/src/udev/udevadm.c +++ b/src/udev/udevadm.c @@ -27,6 +27,7 @@ static int help(void) { { "test", "Test an event run" }, { "test-builtin", "Test a built-in command" }, { "wait", "Wait for device or device symlink" }, + { "lock", "Lock a block device" }, }; _cleanup_free_ char *link = NULL; @@ -103,6 +104,7 @@ static int udevadm_main(int argc, char *argv[]) { { "test", VERB_ANY, VERB_ANY, 0, test_main }, { "test-builtin", VERB_ANY, VERB_ANY, 0, builtin_main }, { "wait", VERB_ANY, VERB_ANY, 0, wait_main }, + { "lock", VERB_ANY, VERB_ANY, 0, lock_main }, { "version", VERB_ANY, VERB_ANY, 0, version_main }, { "help", VERB_ANY, VERB_ANY, 0, help_main }, {} |