summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/sys/systm.h
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/sys/sys/systm.h')
-rw-r--r--freebsd/sys/sys/systm.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/freebsd/sys/sys/systm.h b/freebsd/sys/sys/systm.h
index 6ac0491d..36b3f59f 100644
--- a/freebsd/sys/sys/systm.h
+++ b/freebsd/sys/sys/systm.h
@@ -73,7 +73,11 @@ extern int boothowto; /* reboot flags, from console subsystem */
#ifndef __rtems__
extern int bootverbose; /* nonzero to print verbose messages */
#else /* __rtems__ */
-#define bootverbose 0 /* XXX RTEMS doesn't support verbose */
+#ifdef BOOTVERBOSE
+extern int bootverbose; /* nonzero to print verbose messages */
+#else
+#define bootverbose 0 /* Remove all verbose code for the standard RTEMS build */
+#endif /* BOOTVERBOSE */
#endif /* __rtems__ */