diff options
| author | Mike Smith <msmith@FreeBSD.org> | 1998-08-31 21:10:43 +0000 |
|---|---|---|
| committer | Mike Smith <msmith@FreeBSD.org> | 1998-08-31 21:10:43 +0000 |
| commit | c73b70eec4b68178784c31aec3da953f2dc866d5 (patch) | |
| tree | 11e724c0d5af81d1587b9e16ad1221b7ed292905 /sys/boot/common/boot.c | |
| parent | f471c448696471f51d236a6adc398d299577b221 (diff) | |
Notes
Diffstat (limited to 'sys/boot/common/boot.c')
| -rw-r--r-- | sys/boot/common/boot.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/boot/common/boot.c b/sys/boot/common/boot.c index ad24e2e66cea..029e900d6ce9 100644 --- a/sys/boot/common/boot.c +++ b/sys/boot/common/boot.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: boot.c,v 1.1.1.1 1998/08/21 03:17:41 msmith Exp $ */ /* @@ -106,7 +106,9 @@ command_boot(int argc, char *argv[]) /* Hook for platform-specific autoloading of modules */ if (archsw.arch_autoload() != 0) return(CMD_ERROR); - archsw.arch_boot(); + + /* Call the exec handler from the loader matching the kernel */ + module_formats[km->m_loader]->l_exec(km); return(CMD_ERROR); } |
