VirtualBox

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

Last change on this file since 102056 was 101356, checked in by vboxsync, 14 months ago

Unattended: ​bugref:10530. Looks like OL8 kickstart used to include a removed command.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1# $Id: Config.kmk 101356 2023-10-05 12:44:33Z 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/file.py \
46 sdk/bindings/xpcom/python/xpcom/xpcom_consts.py \
47 sdk/bindings/xpcom/python/xpcom/nsError.py \
48 sdk/bindings/xpcom/python/xpcom/xpt.py \
49 sdk/bindings/xpcom/python/xpcom/components.py \
50 sdk/bindings/xpcom/python/xpcom/vboxxpcom.py \
51 sdk/bindings/xpcom/python/xpcom/client/__init__.py \
52 sdk/bindings/xpcom/python/xpcom/server/__init__.py \
53 sdk/bindings/xpcom/python/xpcom/server/enumerator.py \
54 sdk/bindings/xpcom/python/xpcom/server/factory.py \
55 sdk/bindings/xpcom/python/xpcom/server/loader.py \
56 sdk/bindings/xpcom/python/xpcom/server/module.py \
57 sdk/bindings/xpcom/python/xpcom/server/policy.py
58 VBOXINST_SDK_INSTALLER_PYTHON_FILES = \
59 sdk/installer/vboxapisetup.py \
60 sdk/installer/vboxapi/__init__.py \
61 sdk/installer/vboxapi/VirtualBox_constants.py
62endif
63
64
65#
66# List of unattended installation script templates (lives in
67# src/VBox/Main/UnattendedTemplates).
68#
69ifdef VBOX_WITH_UNATTENDED
70 VBOX_UNATTENDED_TEMPLATES := \
71 debian_preseed.cfg \
72 ubuntu_preseed.cfg \
73 fedora_ks.cfg \
74 ol_ks.cfg \
75 ol8_ks.cfg \
76 ol9_ks.cfg \
77 rhel3_ks.cfg \
78 rhel4_ks.cfg \
79 rhel5_ks.cfg \
80 redhat67_ks.cfg \
81 os2_response_files.rsp \
82 win_nt5_unattended.sif \
83 win_nt6_unattended.xml \
84 \
85 debian_postinstall.sh \
86 redhat_postinstall.sh \
87 ol_postinstall.sh \
88 os2_cid_install.cmd \
89 win_postinstall.cmd \
90 \
91 os2_util.exe
92 ifndef VBOX_OSE
93 VBOX_UNATTENDED_TEMPLATES += \
94 lgw_ks.cfg \
95 lgw_postinstall.sh
96 endif
97else
98 VBOX_UNATTENDED_TEMPLATES :=
99endif
100
101
102#
103# DTrace globals.
104#
105ifdef VBOX_WITH_DTRACE
106 ## List of files in the per arch DTrace library directory.
107 VBOXINST_DTRACE_LIB_ARCH_FILES := \
108 vbox-types.d \
109 vbox-arch-types.d \
110 vm.d \
111 cpumctx.d \
112 CPUMInternal.d \
113 x86.d
114 ## List of files in the per arch DTrace testcase directory.
115 VBOXINST_DTRACE_TESTCASE_ARCH_FILES := \
116 vbox-vm-struct-test.d
117 ## List of file in the DTrace scripts directory.
118 VBOXINST_DTRACE_SCRIPTS_FILES :=
119else
120 VBOXINST_DTRACE_LIB_ARCH_FILES :=
121 VBOXINST_DTRACE_TESTCASE_ARCH_FILES :=
122 VBOXINST_DTRACE_SCRIPTS_FILES :=
123endif
124
125
126#
127# Some combined package (CP) globals.
128#
129ifeq ($(KBUILD_TARGET_ARCH),x86)
130 VBOX_CP_THIS_BITS := 32
131 ifdef VBOX_WITH_COMBINED_PACKAGE
132 VBOX_CP_OTHER_ARCH := amd64
133 VBOX_CP_OTHER_BITS := 64
134 else
135 VBOX_CP_OTHER_ARCH = $(error VBOX_CP_OTHER_ARCH used in without VBOX_WITH_COMBINED_PACKAGE set)
136 VBOX_CP_OTHER_BITS = $(error VBOX_CP_OTHER_ARCH used in without VBOX_CP_OTHER_BITS set)
137 endif
138else
139 VBOX_CP_THIS_BITS := 64
140 ifdef VBOX_WITH_COMBINED_PACKAGE
141 VBOX_CP_OTHER_ARCH := x86
142 VBOX_CP_OTHER_BITS := 32
143 else
144 VBOX_CP_OTHER_ARCH = $(error VBOX_CP_OTHER_ARCH used in without VBOX_WITH_COMBINED_PACKAGE set)
145 VBOX_CP_OTHER_BITS = $(error VBOX_CP_OTHER_ARCH used in without VBOX_CP_OTHER_BITS set)
146 endif
147endif
148
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