# FORCE_VERBOSE unified diff for Mac OS X / Darwin
# by peter bartoli, version 1.0 of 11/19/2001
#
# 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/ppc/pe_init.c.orig	Thu Jan  4 14:28:57 2001
+++ pexpert/ppc/pe_init.c	Mon Nov 19 11:54:29 2001
@@ -181,11 +181,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)
 	{
--- pexpert/conf/MASTER.orig	Sat Mar 25 13:03:09 2000
+++ pexpert/conf/MASTER	Mon Nov 19 11:47:10 2001
@@ -84,5 +84,7 @@
 
 options		MACH_PE		# Objective-C support		# <mach_pe>
 options         MACH_KERNEL
 options         DEBUG
 
+options		FORCE_VERBOSE		# force verbose output during boot
+
