diff --git a/sys/arch/i386/stand/lib/exec.c b/sys/arch/i386/stand/lib/exec.c index 45abbe187..8a283557b 100644 --- a/sys/arch/i386/stand/lib/exec.c +++ b/sys/arch/i386/stand/lib/exec.c @@ -298,8 +298,9 @@ common_load_kernel(const char *file, u_long *basemem, u_long *extmem, close(fd); /* Now we know the root fs type, load modules for it. */ - module_add(fsmod); - if (fsmod2 != NULL && strcmp(fsmod, fsmod2) != 0) + if (fsmod != NULL) + module_add(fsmod); + if (fsmod !=NULL && fsmod2 != NULL && strcmp(fsmod, fsmod2) != 0) module_add(fsmod2); /* diff --git a/sys/lib/libsa/globals.c b/sys/lib/libsa/globals.c index c22960a71..bdd2061b4 100644 --- a/sys/lib/libsa/globals.c +++ b/sys/lib/libsa/globals.c @@ -19,7 +19,11 @@ u_char bcea[6] = BA; /* broadcast ethernet address */ char rootpath[FNAME_SIZE]; /* root mount path */ char bootfile[FNAME_SIZE]; /* bootp says to boot this */ char hostname[FNAME_SIZE]; /* our hostname */ +#ifdef __minix +char *fsmod = NULL; +#else char *fsmod = "ffs"; /* guessed file system module name */ +#endif char *fsmod2; /* a requisite module */ struct in_addr myip; /* my ip address */ struct in_addr rootip; /* root ip address */