VirtualBox

source: vbox/trunk/src/VBox/Devices/Samples/Makefile.kmk@ 40754

Last change on this file since 40754 was 39857, checked in by vboxsync, 12 years ago

A filter driver sample.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1# $Id: Makefile.kmk 39857 2012-01-24 16:41:13Z vboxsync $
2## @file
3# Makefile for the device and driver samples.
4#
5
6#
7# Copyright (C) 2009-2012 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
18SUB_DEPTH = ../../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21
22#
23# VBoxSampleDevice - A sample device module.
24#
25DLLS += VBoxSampleDevice
26VBoxSampleDevice_TEMPLATE = VBOXR3
27VBoxSampleDevice_INSTTYPE = none
28VBoxSampleDevice_SOURCES = \
29 VBoxSampleDevice.cpp
30VBoxSampleDevice_LIBS = \
31 $(LIB_RUNTIME) \
32 $(LIB_VMM) \
33 $(LIB_REM)
34
35#
36# VBoxSampleDriver - A sample driver module.
37#
38DLLS += VBoxSampleDriver
39VBoxSampleDriver_TEMPLATE = VBOXR3
40VBoxSampleDriver_INSTTYPE = none
41VBoxSampleDriver_SOURCES = \
42 DrvStorageFilter.cpp
43VBoxSampleDriver_LIBS = \
44 $(LIB_RUNTIME) \
45 $(LIB_VMM) \
46 $(LIB_REM)
47
48include $(KBUILD_PATH)/subfooter.kmk
49
50
51#
52# Installs the filter.
53#
54install-filter:
55 $(if-expr "$(VBOX_MANAGE)" == "",$(error VBOX_MANAGE is not defined,))
56 $(if-expr "$(VBOX_VMNAME)" == "",$(error VBOX_VMNAME is not defined,))
57# Make VBox load the driver
58 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/Drivers/VBoxSampleDriver/Path" \
59 "$(if $(VBoxSampleDriver_1_INST_TARGET),$(VBoxSampleDriver_1_INST_TARGET),$(VBoxSampleDriver_1_TARGET))"
60# Configure the matching.
61 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AboveDriver" \
62 "VD"
63# The config of the injected driver.
64 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Driver" \
65 "StorageFilter"
66 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Config/AsyncIOSupported" \
67 "1"
68
69uninstall-filter:
70 $(if-expr "$(VBOX_MANAGE)" == "",$(error VBOX_MANAGE is not defined,))
71 $(if-expr "$(VBOX_VMNAME)" == "",$(error VBOX_VMNAME is not defined,))
72 $(VBOX_MANAGE) showvminfo "$(VBOX_VMNAME)"
73 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/Drivers/VBoxSampleDriver/Path"
74 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AboveDriver"
75 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Config/AsyncIOSupported"
76
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use