# # FORCE_VERBOSE unified diff for Mac OS X / Darwin # by peter bartoli, version 2.0 of 9/4/2002 # # 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 Jul 19 18:47:36 2002 +++ pexpert/ppc/pe_init.c Wed Sep 4 14:35:11 2002 @@ -166,11 +166,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 # options MACH_KERNEL options DEBUG +options FORCE_VERBOSE # force verbose output during boot +