1 | # $Id: Makefile.kmk 63885 2016-09-19 12:50:14Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Makefile for the device and driver samples.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2009-2016 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | SUB_DEPTH = ../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 |
|
---|
22 | #
|
---|
23 | # VBoxSampleDevice - A sample device module.
|
---|
24 | #
|
---|
25 | DLLS += VBoxSampleDevice
|
---|
26 | VBoxSampleDevice_TEMPLATE = VBOXR3
|
---|
27 | VBoxSampleDevice_SOURCES = \
|
---|
28 | VBoxSampleDevice.cpp \
|
---|
29 | DevPlayground.cpp
|
---|
30 | VBoxSampleDevice_LIBS = \
|
---|
31 | $(LIB_RUNTIME) \
|
---|
32 | $(LIB_VMM) \
|
---|
33 | $(LIB_REM)
|
---|
34 |
|
---|
35 | #
|
---|
36 | # VBoxSampleDriver - A sample driver module.
|
---|
37 | #
|
---|
38 | DLLS += VBoxSampleDriver
|
---|
39 | VBoxSampleDriver_TEMPLATE = VBOXR3
|
---|
40 | VBoxSampleDriver_SOURCES = \
|
---|
41 | DrvStorageFilter.cpp
|
---|
42 | VBoxSampleDriver_LIBS = \
|
---|
43 | $(LIB_RUNTIME) \
|
---|
44 | $(LIB_VMM) \
|
---|
45 | $(LIB_REM)
|
---|
46 |
|
---|
47 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
48 |
|
---|
49 |
|
---|
50 | #
|
---|
51 | # Installs the filter.
|
---|
52 | #
|
---|
53 | install-filter:
|
---|
54 | $(if-expr "$(VBOX_MANAGE)" == "",$(error VBOX_MANAGE is not defined,))
|
---|
55 | $(if-expr "$(VBOX_VMNAME)" == "",$(error VBOX_VMNAME is not defined,))
|
---|
56 | # Make VBox load the driver
|
---|
57 | $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/Drivers/VBoxSampleDriver/Path" \
|
---|
58 | "$(if $(VBoxSampleDriver_1_INST_TARGET),$(VBoxSampleDriver_1_INST_TARGET),$(VBoxSampleDriver_1_TARGET))"
|
---|
59 | # Configure the matching.
|
---|
60 | $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AboveDriver" \
|
---|
61 | "VD"
|
---|
62 | # The config of the injected driver.
|
---|
63 | $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Driver" \
|
---|
64 | "StorageFilter"
|
---|
65 | $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Config/AsyncIOSupported" \
|
---|
66 | "1"
|
---|
67 |
|
---|
68 | uninstall-filter:
|
---|
69 | $(if-expr "$(VBOX_MANAGE)" == "",$(error VBOX_MANAGE is not defined,))
|
---|
70 | $(if-expr "$(VBOX_VMNAME)" == "",$(error VBOX_VMNAME is not defined,))
|
---|
71 | $(VBOX_MANAGE) showvminfo "$(VBOX_VMNAME)"
|
---|
72 | $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/Drivers/VBoxSampleDriver/Path"
|
---|
73 | $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AboveDriver"
|
---|
74 | $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Config/AsyncIOSupported"
|
---|
75 |
|
---|