From db266683d317664481e8cc52d8bb313e91fa6f04 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 6 Sep 2000 20:50:24 +0000 Subject: [PATCH] With the committed changes to the loaders modules path code, the kernel path does not need to be hard coded. --- 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 81a20b5b107..3913e34363f 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/kernel/kernel.ko"; +static const char *default_bootfiles = "kernel.ko"; static int autoboot_tried;