Fix the kernel default load from "/boot/modules" to "/boot/kernel".

Reported by:	dcs
This commit is contained in:
David E. O'Brien 2000-09-05 23:10:46 +00:00
parent 3bdfa9e589
commit 6f54390e53
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=65502

View file

@ -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;