Module Name: src Committed By: jmcneill Date: Fri Feb 12 19:48:26 UTC 2021
Modified Files: src/sys/kern: kern_entropy.c Log Message: entropy: Only print consolidation warning of AB_DEBUG. The previous fix for PR kern/55458 changed printf to log(LOG_DEBUG, ...) with the intent of hiding the message unless 'boot -x'. But this did not actually suppress the message to console as log(LOG_DEBUG, ...) will print to console if syslogd is not running yet. So instead, just check for AB_DEBUG flag directly in boothowto, and only printf the message if it is set. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/sys/kern/kern_entropy.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.