VirtualBox

source: vbox/trunk/src/VBox/Installer/Config.kmk

Last change on this file was 103032, checked in by vboxsync, 4 months ago

Main/Python: Added missing installer files. bugref:10579

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 KB
Line 
1# $Id: Config.kmk 103032 2024-01-24 16:49:46Z vboxsync $
2## @file
3# kBuild Configuration file for the installers
4#
5
6#
7# Copyright (C) 2015-2023 Oracle and/or its affiliates.
8#
9# This file is part of VirtualBox base platform packages, as
10# available from https://www.virtualbox.org.
11#
12# This program is free software; you can redistribute it and/or
13# modify it under the terms of the GNU General Public License
14# as published by the Free Software Foundation, in version 3 of the
15# License.
16#
17# This program is distributed in the hope that it will be useful, but
18# WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20# General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, see <https://www.gnu.org/licenses>.
24#
25# SPDX-License-Identifier: GPL-3.0-only
26#
27
28VBOX_INSTALLER_CONFIG_KMK_INCLUDED = 1
29
30# Include the top-level configure file.
31ifndef VBOX_ROOT_CONFIG_KMK_INCLUDED
32 include $(PATH_ROOT)/Config.kmk
33endif
34
35#
36# Generic stuff.
37#
38VBOX_PATH_INST_COMMON_SRC := $(PATH_ROOT)/src/VBox/Installer/common
39
40
41ifdef VBOX_WITH_PYTHON
42 VBOXINST_SDK_BINDINGS_XPCOM_PYTHON_FILES = \
43 sdk/bindings/xpcom/python/xpcom/__init__.py \
44 sdk/bindings/xpcom/python/xpcom/primitives.py \
45 sdk/bindings/xpcom/python/xpcom/xpcom_consts.py \
46 sdk/bindings/xpcom/python/xpcom/nsError.py \
47 sdk/bindings/xpcom/python/xpcom/xpt.py \
48 sdk/bindings/xpcom/python/xpcom/components.py \
49 sdk/bindings/xpcom/python/xpcom/vboxxpcom.py \
50 sdk/bindings/xpcom/python/xpcom/client/__init__.py \
51 sdk/bindings/xpcom/python/xpcom/server/__init__.py \
52 sdk/bindings/xpcom/python/xpcom/server/enumerator.py \
53 sdk/bindings/xpcom/python/xpcom/server/factory.py \
54 sdk/bindings/xpcom/python/xpcom/server/loader.py \
55 sdk/bindings/xpcom/python/xpcom/server/module.py \
56 sdk/bindings/xpcom/python/xpcom/server/policy.py
57 VBOXINST_SDK_INSTALLER_PYTHON_FILES = \
58 sdk/installer/python/vboxapisetup.py \
59 sdk/installer/python/vboxapi/setup.py \
60 sdk/installer/python/vboxapi/pyproject.toml \
61 sdk/installer/python/vboxapi/src/vboxapi/__init__.py \
62 sdk/installer/python/vboxapi/src/vboxapi/VirtualBox_constants.py
63endif
64
65
66#
67# List of unattended installation script templates (lives in
68# src/VBox/Main/UnattendedTemplates).
69#
70ifdef VBOX_WITH_UNATTENDED
71 VBOX_UNATTENDED_TEMPLATES := \
72 debian_preseed.cfg \
73 ubuntu_preseed.cfg \
74 ubuntu_autoinstall_user_data \
75 ubuntu_autoinstall_meta_data \
76 fedora_ks.cfg \
77 ol_ks.cfg \
78 ol8_ks.cfg \
79 ol9_ks.cfg \
80 rhel3_ks.cfg \
81 rhel4_ks.cfg \
82 rhel5_ks.cfg \
83 redhat67_ks.cfg \
84 os2_response_files.rsp \
85 win_nt5_unattended.sif \
86 win_nt6_unattended.xml \
87 \
88 debian_postinstall.sh \
89 redhat_postinstall.sh \
90 ol_postinstall.sh \
91 os2_cid_install.cmd \
92 win_postinstall.cmd \
93 \
94 os2_util.exe
95 ifndef VBOX_OSE
96 VBOX_UNATTENDED_TEMPLATES += \
97 lgw_ks.cfg \
98 lgw_postinstall.sh
99 endif
100else
101 VBOX_UNATTENDED_TEMPLATES :=
102endif
103
104
105#
106# DTrace globals.
107#
108ifdef VBOX_WITH_DTRACE
109 ## List of files in the per arch DTrace library directory.
110 VBOXINST_DTRACE_LIB_ARCH_FILES := \
111 vbox-types.d \
112 vbox-arch-types.d \
113 vm.d \
114 cpumctx.d \
115 CPUMInternal.d \
116 x86.d
117 ## List of files in the per arch DTrace testcase directory.
118 VBOXINST_DTRACE_TESTCASE_ARCH_FILES := \
119 vbox-vm-struct-test.d
120 ## List of file in the DTrace scripts directory.
121 VBOXINST_DTRACE_SCRIPTS_FILES :=
122else
123 VBOXINST_DTRACE_LIB_ARCH_FILES :=
124 VBOXINST_DTRACE_TESTCASE_ARCH_FILES :=
125 VBOXINST_DTRACE_SCRIPTS_FILES :=
126endif
127
128
129#
130# Some combined package (CP) globals.
131#
132ifeq ($(KBUILD_TARGET_ARCH),x86)
133 VBOX_CP_THIS_BITS := 32
134 ifdef VBOX_WITH_COMBINED_PACKAGE
135 VBOX_CP_OTHER_ARCH := amd64
136 VBOX_CP_OTHER_BITS := 64
137 else
138 VBOX_CP_OTHER_ARCH = $(error VBOX_CP_OTHER_ARCH used in without VBOX_WITH_COMBINED_PACKAGE set)
139 VBOX_CP_OTHER_BITS = $(error VBOX_CP_OTHER_ARCH used in without VBOX_CP_OTHER_BITS set)
140 endif
141else
142 VBOX_CP_THIS_BITS := 64
143 ifdef VBOX_WITH_COMBINED_PACKAGE
144 VBOX_CP_OTHER_ARCH := x86
145 VBOX_CP_OTHER_BITS := 32
146 else
147 VBOX_CP_OTHER_ARCH = $(error VBOX_CP_OTHER_ARCH used in without VBOX_WITH_COMBINED_PACKAGE set)
148 VBOX_CP_OTHER_BITS = $(error VBOX_CP_OTHER_ARCH used in without VBOX_CP_OTHER_BITS set)
149 endif
150endif
151
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use