Module Name: src
Committed By: mlelstv
Date: Sat Nov 9 12:43:52 UTC 2024
Modified Files:
src/sys/arch/i386/stand/lib: bootmenu.c
Log Message:
Add 'fs' option for boot.cfg.
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/i386/stand/lib/bootmenu.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/i386/stand/lib/bootmenu.c
diff -u src/sys/arch/i386/stand/lib/bootmenu.c:1.18 src/sys/arch/i386/stand/lib/bootmenu.c:1.19
--- src/sys/arch/i386/stand/lib/bootmenu.c:1.18 Wed Jun 8 21:55:51 2022
+++ src/sys/arch/i386/stand/lib/bootmenu.c Sat Nov 9 12:43:52 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: bootmenu.c,v 1.18 2022/06/08 21:55:51 wiz Exp $ */
+/* $NetBSD: bootmenu.c,v 1.19 2024/11/09 12:43:52 mlelstv Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -59,6 +59,8 @@ do_bootcfg_command(const char *cmd, char
{
if (strcmp(cmd, BOOTCFG_CMD_LOAD) == 0)
module_add(arg);
+ else if (strcmp(cmd, "fs") == 0)
+ fs_add(arg);
else if (strcmp(cmd, BOOTCFG_CMD_USERCONF) == 0)
userconf_add(arg);
}