The default search path for kernel and modules was bogus. It makes no
sense for /boot/kernel to come last.
This commit is contained in:
parent
54329571cf
commit
c888e59b84
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=65940
@ -49,7 +49,7 @@ struct file_metadata* metadata_next(struct file_metadata *base_mp, int type);
|
||||
/* load address should be tweaked by first module loaded (kernel) */
|
||||
static vm_offset_t loadaddr = 0;
|
||||
|
||||
static const char *default_searchpath ="/boot/modules;/modules;/boot/kernel";
|
||||
static const char *default_searchpath ="/boot/kernel;/boot/modules;/modules";
|
||||
|
||||
struct preloaded_file *preloaded_files = NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user