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
This commit is contained in:
Warner Losh 2018-05-08 20:02:44 +00:00
parent 39c0a13bc7
commit 83caf7e590
1 changed files with 0 additions and 2 deletions

View File

@ -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}