diff options
author | Mats O Jansson <maja@cvs.openbsd.org> | 1996-06-23 19:39:14 +0000 |
---|---|---|
committer | Mats O Jansson <maja@cvs.openbsd.org> | 1996-06-23 19:39:14 +0000 |
commit | 1f2817dc68a30e1f3d8901c36c66d6b4a1cd6135 (patch) | |
tree | ce4ed844cc37639ddd61373e745c7d8a8b231893 /sys/arch/i386 | |
parent | 56a4c2b019ed13be8be39d20d53521301c65fa6d (diff) |
Added support for user modifiable kernel at boot (-c) /maja
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 8e3c965d726..666cc720fc0 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.20 1996/05/30 10:17:53 deraadt Exp $ */ +/* $OpenBSD: machdep.c,v 1.21 1996/06/23 19:39:13 maja Exp $ */ /* $NetBSD: machdep.c,v 1.202 1996/05/18 15:54:59 christos Exp $ */ /*- @@ -276,6 +276,9 @@ cpu_startup() /* * Configure the system. */ + if (boothowto & RB_CONFIG) { + user_config(); + } configure(); /* |