The default kernel filename is "kernel" again, not "kernel.ko".

Submitted by:	mckusick
This commit is contained in:
Mike Smith 2000-11-17 04:43:56 +00:00
parent 0fd18bb21b
commit 1d6dc22916
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68851

View File

@ -39,7 +39,7 @@ static char *getbootfile(int try);
static int loadakernel(int try, int argc, char* argv[]);
/* List of kernel names to try (may be overwritten by boot.config) XXX should move from here? */
static const char *default_bootfiles = "kernel.ko";
static const char *default_bootfiles = "kernel";
static int autoboot_tried;