VirtualBox

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

Last change on this file since 63884 was 63884, checked in by vboxsync, 8 years ago

Devices/Samples: add "playground" device for making experiments (it isn't used by default and will be changed when specific PDM PCI testing is needed)

  • 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 63884 2016-09-19 12:21:00Z 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
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 \
30 DevPlayground.cpp
31VBoxSampleDevice_LIBS = \
32 $(LIB_RUNTIME) \
33 $(LIB_VMM) \
34 $(LIB_REM)
35
36#
37# VBoxSampleDriver - A sample driver module.
38#
39DLLS += VBoxSampleDriver
40VBoxSampleDriver_TEMPLATE = VBOXR3
41VBoxSampleDriver_INSTTYPE = none
42VBoxSampleDriver_SOURCES = \
43 DrvStorageFilter.cpp
44VBoxSampleDriver_LIBS = \
45 $(LIB_RUNTIME) \
46 $(LIB_VMM) \
47 $(LIB_REM)
48
49include $(FILE_KBUILD_SUB_FOOTER)
50
51
52#
53# Installs the filter.
54#
55install-filter:
56 $(if-expr "$(VBOX_MANAGE)" == "",$(error VBOX_MANAGE is not defined,))
57 $(if-expr "$(VBOX_VMNAME)" == "",$(error VBOX_VMNAME is not defined,))
58# Make VBox load the driver
59 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/Drivers/VBoxSampleDriver/Path" \
60 "$(if $(VBoxSampleDriver_1_INST_TARGET),$(VBoxSampleDriver_1_INST_TARGET),$(VBoxSampleDriver_1_TARGET))"
61# Configure the matching.
62 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AboveDriver" \
63 "VD"
64# The config of the injected driver.
65 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Driver" \
66 "StorageFilter"
67 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Config/AsyncIOSupported" \
68 "1"
69
70uninstall-filter:
71 $(if-expr "$(VBOX_MANAGE)" == "",$(error VBOX_MANAGE is not defined,))
72 $(if-expr "$(VBOX_VMNAME)" == "",$(error VBOX_VMNAME is not defined,))
73 $(VBOX_MANAGE) showvminfo "$(VBOX_VMNAME)"
74 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/Drivers/VBoxSampleDriver/Path"
75 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AboveDriver"
76 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Config/AsyncIOSupported"
77
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette