diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-07-27 11:40:52 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-07-27 11:40:52 +0000 |
commit | 830252a9a76dbb4c62201c453b36989c13fd0f07 (patch) | |
tree | 73523b138e6f766a8e23529f82050b4205a373fc /sys/arch/amiga | |
parent | 667a4b898dba9d39307423e234e2f0e6daf8bcc6 (diff) |
handle RB_CONFIG
Diffstat (limited to 'sys/arch/amiga')
-rw-r--r-- | sys/arch/amiga/amiga/machdep.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/amiga/amiga/machdep.c b/sys/arch/amiga/amiga/machdep.c index 990a37c97a7..99b214fcaf4 100644 --- a/sys/arch/amiga/amiga/machdep.c +++ b/sys/arch/amiga/amiga/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.13 1996/05/29 10:14:29 niklas Exp $ */ +/* $OpenBSD: machdep.c,v 1.14 1996/07/27 11:40:26 deraadt Exp $ */ /* $NetBSD: machdep.c,v 1.72 1996/05/19 14:55:31 is Exp $ */ /* @@ -541,6 +541,13 @@ again: /* * Configure the system. */ + if (boothowto & RB_CONFIG) { +#ifdef BOOT_CONFIG + user_config(); +#else + printf("kernel does not support -c; continuing..\n"); +#endif + } configure(); #ifdef DEBUG printf("survived configure...\n"); |