diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-07-27 11:42:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-07-27 11:42:02 +0000 |
commit | a027475bcd72c790a9f48e5a0eff342f1607f176 (patch) | |
tree | b0daf21c2769f24e703d12408996375dd4fc39af /sys/arch | |
parent | 830252a9a76dbb4c62201c453b36989c13fd0f07 (diff) |
handle RB_CONFIG
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sun3/sun3/machdep.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/arch/sun3/sun3/machdep.c b/sys/arch/sun3/sun3/machdep.c index 27eb73c7811..695364e1b9e 100644 --- a/sys/arch/sun3/sun3/machdep.c +++ b/sys/arch/sun3/sun3/machdep.c @@ -348,6 +348,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(); } |