summaryrefslogtreecommitdiff
path: root/sys/arch/vax
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-27 11:40:52 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-27 11:40:52 +0000
commit830252a9a76dbb4c62201c453b36989c13fd0f07 (patch)
tree73523b138e6f766a8e23529f82050b4205a373fc /sys/arch/vax
parent667a4b898dba9d39307423e234e2f0e6daf8bcc6 (diff)
handle RB_CONFIG
Diffstat (limited to 'sys/arch/vax')
-rw-r--r--sys/arch/vax/vax/machdep.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/arch/vax/vax/machdep.c b/sys/arch/vax/vax/machdep.c
index 2cdc6cdc5d0..53cbc176d44 100644
--- a/sys/arch/vax/vax/machdep.c
+++ b/sys/arch/vax/vax/machdep.c
@@ -265,6 +265,13 @@ cpu_startup()
/*
* Configure the system.
*/
+ if (boothowto & RB_CONFIG) {
+#ifdef BOOT_CONFIG
+ user_config();
+#else
+ printf("kernel does not support -c; continuing..\n");
+#endif
+ }
configure();
}