#
# FORCE_VERBOSE unified diff for Mac OS X / Darwin
# by peter bartoli, version 3.0 of 11/23/2003
#
# 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	Fri Oct 24 15:26:25 2003
+++ pexpert/ppc/pe_init.c	Sun Nov 23 14:35:30 2003
@@ -162,11 +162,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	Tue Oct 21 12:24:55 2003
+++ pexpert/conf/MASTER	Sun Nov 23 14:35:30 2003
@@ -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
+
