diff options
author | scottl <scottl@FreeBSD.org> | 2004-12-01 04:59:33 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2004-12-01 04:59:33 +0000 |
commit | 3b185ba05b013889fb9a4f02e530c8b1d734ac7d (patch) | |
tree | 719336249a200cf5775895b7f48a80bbb7459fb3 /sys/boot/efi/libefi | |
parent | bbfe6568e2f0be5145349496b27f9de33b6e67b8 (diff) | |
download | FreeBSD-src-3b185ba05b013889fb9a4f02e530c8b1d734ac7d.zip FreeBSD-src-3b185ba05b013889fb9a4f02e530c8b1d734ac7d.tar.gz |
Remove the last vestiges of the userconfig option. None of this actually
did anything, so this commit should be considered a NO-OP.
Diffstat (limited to 'sys/boot/efi/libefi')
-rw-r--r-- | sys/boot/efi/libefi/bootinfo.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/boot/efi/libefi/bootinfo.c b/sys/boot/efi/libefi/bootinfo.c index 729ad70..44fde46 100644 --- a/sys/boot/efi/libefi/bootinfo.c +++ b/sys/boot/efi/libefi/bootinfo.c @@ -53,7 +53,6 @@ static struct } howto_names[] = { {"boot_askname", RB_ASKNAME}, {"boot_cdrom", RB_CDROM}, - {"boot_userconfig", RB_CONFIG}, {"boot_ddb", RB_KDB}, {"boot_gdb", RB_GDB}, {"boot_single", RB_SINGLE}, @@ -86,9 +85,6 @@ bi_getboothowto(char *kargs) case 'a': howto |= RB_ASKNAME; break; - case 'c': - howto |= RB_CONFIG; - break; case 'C': howto |= RB_CDROM; break; |