Date: Tue, 8 May 2018 20:02:45 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r333385 - head/usr.sbin/efibootmgr Message-ID: <201805082002.w48K2jpZ024649@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805082002.w48K2jpZ024649>