svn commit: r333385 - head/usr.sbin/efibootmgr
Warner Losh
imp at FreeBSD.org
Tue May 8 20:02:46 UTC 2018
Author: imp
Date: Tue May 8 20:02:44 2018
New Revision: 333385
URL: https://svnweb.freebsd.org/changeset/base/333385
Log:
Remove ignored command line options
The --device and --part command line options were planned for Linux
compatibility mode. However, that mode will never happen, so remove
them as last vestiges of a false start.
Submitted by: Vlad Movchan
Modified:
head/usr.sbin/efibootmgr/efibootmgr.c
Modified: head/usr.sbin/efibootmgr/efibootmgr.c
==============================================================================
--- head/usr.sbin/efibootmgr/efibootmgr.c Tue May 8 20:02:39 2018 (r333384)
+++ head/usr.sbin/efibootmgr/efibootmgr.c Tue May 8 20:02:44 2018 (r333385)
@@ -102,7 +102,6 @@ static struct option lopts[] = {
{"del-timout", no_argument, NULL, 'T'},
{"delete", required_argument, NULL, 'B'},
{"delete-bootnext", required_argument, NULL, 'N'},
- {"device", required_argument, NULL, 'd'},
{"dry-run", no_argument, NULL, 'D'},
{"env", required_argument, NULL, 'e'},
{"help", no_argument, NULL, 'h'},
@@ -110,7 +109,6 @@ static struct option lopts[] = {
{"label", required_argument, NULL, 'L'},
{"loader", required_argument, NULL, 'l'},
{"once", no_argument, NULL, 'O'},
- {"partition", required_argument, NULL, 'p'},
{"set-timeout", required_argument, NULL, 't'},
{"verbose", no_argument, NULL, 'v'},
{ NULL, 0, NULL, 0}
More information about the svn-src-all
mailing list