From b6cfb177d1e545d1acb599379894c9ace28209bd Mon Sep 17 00:00:00 2001 From: obrien Date: Tue, 5 Sep 2000 23:10:46 +0000 Subject: [PATCH] Fix the kernel default load from "/boot/modules" to "/boot/kernel". Reported by: dcs --- sys/boot/common/boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/boot/common/boot.c b/sys/boot/common/boot.c index 067012cf53c8..81a20b5b1078 100644 --- a/sys/boot/common/boot.c +++ b/sys/boot/common/boot.c @@ -38,7 +38,7 @@ static char *getbootfile(int try); /* List of kernel names to try (may be overwritten by boot.config) XXX should move from here? */ -static const char *default_bootfiles = "/boot/modules/kernel.ko"; +static const char *default_bootfiles = "/boot/kernel/kernel.ko"; static int autoboot_tried;