summaryrefslogtreecommitdiffstats
path: root/sys/kern/init_main.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2001-05-17 22:28:46 +0000
committerjhb <jhb@FreeBSD.org>2001-05-17 22:28:46 +0000
commit59ffccfbd6932c90e77e70ea73d3b8afea0998ba (patch)
tree892434b71a21c137edd1153dd459ca1508ddd96f /sys/kern/init_main.c
parentc246122199c212c96b68d551436aa739669eddee (diff)
downloadFreeBSD-src-59ffccfbd6932c90e77e70ea73d3b8afea0998ba.zip
FreeBSD-src-59ffccfbd6932c90e77e70ea73d3b8afea0998ba.tar.gz
- Move the setting of bootverbose to a MI SI_SUB_TUNABLES SYSINIT.
- Attach a writable sysctl to bootverbose (debug.bootverbose) so it can be toggled after boot. - Move the printf of the version string to a SI_SUB_COPYRIGHT SYSINIT just afer the display of the copyright message instead of doing it by hand in three MD places.
Diffstat (limited to 'sys/kern/init_main.c')
-rw-r--r--sys/kern/init_main.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index a27b3e3..f1a6a0b 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -99,6 +99,8 @@ extern int fallback_elf_brand;
struct vnode *rootvp;
int boothowto = 0; /* initialized so that it can be patched */
SYSCTL_INT(_debug, OID_AUTO, boothowto, CTLFLAG_RD, &boothowto, 0, "");
+int bootverbose;
+SYSCTL_INT(_debug, OID_AUTO, bootverbose, CTLFLAG_RW, &bootverbose, 0, "");
/*
* This ensures that there is at least one entry so that the sysinit_set
@@ -239,6 +241,16 @@ print_caddr_t(void *data __unused)
printf("%s", (char *)data);
}
SYSINIT(announce, SI_SUB_COPYRIGHT, SI_ORDER_FIRST, print_caddr_t, copyright)
+SYSINIT(version, SI_SUB_COPYRIGHT, SI_ORDER_SECOND, print_caddr_t, version)
+
+static void
+set_boot_verbose(void *data __unused)
+{
+
+ if (boothowto & RB_VERBOSE)
+ bootverbose++;
+}
+SYSINIT(boot_verbose, SI_SUB_TUNABLES, SI_ORDER_ANY, set_boot_verbose, NULL)
/*
***************************************************************************
OpenPOWER on IntegriCloud