
rem
rem Kernel Debugging Script for *RELEASE*
rem
rem Run this by changing to the \support\debug\i386 directory
rem on the WinFrame CD-ROM.
rem

mode 80,999

rem
rem Change this to the proper port that has the kernel
rem debugger cable hooked up
rem

set _NT_DEBUG_PORT=com2

set _NT_SYMBOL_PATH=\support\debug\i386

rem
rem Edit this path if you want a debugger log.
rem Then remove the rem statement.
rem

rem set _NT_DEBUG_LOG_FILE_OPEN=c:\temp\kd.log

set PATH=%_NT_SYMBOL_PATH%

rem
rem This allows updated modules due to vendor HALS's, device
rem drivers, service pack's, hotfixes, etc., to be included by
rem the debugger.
rem
rem The layout of the directory must conform to the layout of
rem \support\debug\i386\symbols.
rem
rem IE: a new hal would go into  \debug\update\symbols\dll\hal.dbg
rem     and a device driver into \debug\update\symbols\sys\vendor.dbg
rem

rem set _NT_ALT_SYMBOL_PATH=c:\debug\update

rem
rem This is for a single CPU machine only
rem

i386kd

rem
rem Uncomment this rem, and comment out the above i386kd
rem command line for a Multiprocessor system.
rem

rem i386kd -mp


