#
# FORCE_VERBOSE for Mac OS X 10.4.x / Darwin 8.x
# by peter bartoli, last modified 5/27/2k5
#
# to install
# 1. unpack and cd to your xnu source tree
# 2. patch -p0 -b [--verbose --suffix=.orig] < FORCE_VERBOSE.patch
# 3. build xnu and install your kernel
#
--- pexpert/conf/MASTER.orig	2005-05-16 15:29:57.000000000 -0700
+++ pexpert/conf/MASTER	2005-05-27 18:48:26.000000000 -0700
@@ -84,5 +84,7 @@
 
 options		MACH_PE		# Objective-C support		# <mach_pe>
 options         MACH_KERNEL
 options         DEBUG
 
+options		FORCE_VERBOSE	# force verbose output during bootstrapping
+
--- pexpert/ppc/pe_init.c.orig	2005-05-16 15:29:56.000000000 -0700
+++ pexpert/ppc/pe_init.c	2005-05-27 18:45:18.000000000 -0700
@@ -158,11 +158,15 @@
 	  PE_state.video.v_baseAddr	= args->Video.v_baseAddr;
 	  PE_state.video.v_rowBytes	= args->Video.v_rowBytes;
 	  PE_state.video.v_width	= args->Video.v_width;
 	  PE_state.video.v_height	= args->Video.v_height;
 	  PE_state.video.v_depth	= args->Video.v_depth;
+#ifdef FORCE_VERBOSE
+	  PE_state.video.v_display	= 0;
+#else
 	  PE_state.video.v_display	= args->Video.v_display;
+#endif /* FORCE_VERBOSE */
 	  strcpy( PE_state.video.v_pixelFormat, "PPPPPPPP");
 	}
 
 	if (!vm_initialized)
 	{
