mirror of
https://github.com/reactos/reactos.git
synced 2026-09-13 05:10:40 +08:00
* Recognize the option /CRASHDUMP on the kernel command line to specify the type of dump desired. * Added a new driver (diskdump) which wraps the miniport for the disk containing the pagefile and does the crash dump i/o. * Added a FSCTL to get the mapping between LCNs and disk offsets so crash dumps don't need to go through the filesystem. svn path=/trunk/; revision=5887
20 lines
302 B
Makefile
20 lines
302 B
Makefile
# $Id: Makefile,v 1.1 2003/08/27 21:28:08 dwelch Exp $
|
|
|
|
PATH_TO_TOP = ../../..
|
|
|
|
TARGET_BOOTSTRAP = yes
|
|
|
|
TARGET_TYPE = export_driver
|
|
|
|
TARGET_NAME = diskdump
|
|
|
|
TARGET_DDKLIBS =
|
|
|
|
TARGET_OBJECTS = $(TARGET_NAME).o diskdump_helper.o
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
# EOF
|