mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
efibootmgr: -C isn't implemented
-C isn't implemented, so just errx out until it is. It's not listed in the man page, but is parsed for compatibility with the Linux efibootmgr(8) command. Sponsored by: Netflix
This commit is contained in:
parent
98d2608a2a
commit
731f91c077
1 changed files with 2 additions and 0 deletions
|
|
@ -226,6 +226,8 @@ parse_args(int argc, char *argv[])
|
|||
case 'C':
|
||||
opts.copy = true;
|
||||
opts.cp_src = strtoul(optarg, NULL, 16);
|
||||
errx(1, "Copy not implemented");
|
||||
break;
|
||||
case 'c':
|
||||
opts.create = true;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue