diff options
author | obrien <obrien@FreeBSD.org> | 2000-09-05 22:37:46 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-09-05 22:37:46 +0000 |
commit | 6de7dfbb5addebdbd6fd8b8b3907632862b2f4ba (patch) | |
tree | a46fa7d5e288c56eba81ee5cbf9d55936212d11c /sys/boot/common/boot.c | |
parent | 508fb708e11430ef70bfe03c5cc9002582a3d79d (diff) | |
download | FreeBSD-src-6de7dfbb5addebdbd6fd8b8b3907632862b2f4ba.zip FreeBSD-src-6de7dfbb5addebdbd6fd8b8b3907632862b2f4ba.tar.gz |
The kernel is now known as `kernel.ko' and it and its matching modules
live in ``/boot/kernel/''.
Diffstat (limited to 'sys/boot/common/boot.c')
-rw-r--r-- | sys/boot/common/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/common/boot.c b/sys/boot/common/boot.c index ae3cb77..067012c 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 = "kernel;kernel.old"; +static const char *default_bootfiles = "/boot/modules/kernel.ko"; static int autoboot_tried; |