VirtualBox

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

Last change on this file since 102455 was 102342, checked in by vboxsync, 13 months ago

Main/Unattended: Implemented support for subiquity-/cloud-init-based installers. This enables installing guest newer Linux-based OSes like Ubuntu >= 22.10 in Unattended mode. More detection code for other variants will follow. Extended testcases [build fix, Windows installer does not accept dashes (-) as file keys]. bugref:10551

  • 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 102342 2023-11-27 17:56:10Z 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/vboxapisetup.py \
59 sdk/installer/vboxapi/__init__.py \
60 sdk/installer/vboxapi/VirtualBox_constants.py
61endif
62
63
64#
65# List of unattended installation script templates (lives in
66# src/VBox/Main/UnattendedTemplates).
67#
68ifdef VBOX_WITH_UNATTENDED
69 VBOX_UNATTENDED_TEMPLATES := \
70 debian_preseed.cfg \
71 ubuntu_preseed.cfg \
72 ubuntu_autoinstall_user_data \
73 ubuntu_autoinstall_meta_data \
74 fedora_ks.cfg \
75 ol_ks.cfg \
76 ol8_ks.cfg \
77 ol9_ks.cfg \
78 rhel3_ks.cfg \
79 rhel4_ks.cfg \
80 rhel5_ks.cfg \
81 redhat67_ks.cfg \
82 os2_response_files.rsp \
83 win_nt5_unattended.sif \
84 win_nt6_unattended.xml \
85 \
86 debian_postinstall.sh \
87 redhat_postinstall.sh \
88 ol_postinstall.sh \
89 os2_cid_install.cmd \
90 win_postinstall.cmd \
91 \
92 os2_util.exe
93 ifndef VBOX_OSE
94 VBOX_UNATTENDED_TEMPLATES += \
95 lgw_ks.cfg \
96 lgw_postinstall.sh
97 endif
98else
99 VBOX_UNATTENDED_TEMPLATES :=
100endif
101
102
103#
104# DTrace globals.
105#
106ifdef VBOX_WITH_DTRACE
107 ## List of files in the per arch DTrace library directory.
108 VBOXINST_DTRACE_LIB_ARCH_FILES := \
109 vbox-types.d \
110 vbox-arch-types.d \
111 vm.d \
112 cpumctx.d \
113 CPUMInternal.d \
114 x86.d
115 ## List of files in the per arch DTrace testcase directory.
116 VBOXINST_DTRACE_TESTCASE_ARCH_FILES := \
117 vbox-vm-struct-test.d
118 ## List of file in the DTrace scripts directory.
119 VBOXINST_DTRACE_SCRIPTS_FILES :=
120else
121 VBOXINST_DTRACE_LIB_ARCH_FILES :=
122 VBOXINST_DTRACE_TESTCASE_ARCH_FILES :=
123 VBOXINST_DTRACE_SCRIPTS_FILES :=
124endif
125
126
127#
128# Some combined package (CP) globals.
129#
130ifeq ($(KBUILD_TARGET_ARCH),x86)
131 VBOX_CP_THIS_BITS := 32
132 ifdef VBOX_WITH_COMBINED_PACKAGE
133 VBOX_CP_OTHER_ARCH := amd64
134 VBOX_CP_OTHER_BITS := 64
135 else
136 VBOX_CP_OTHER_ARCH = $(error VBOX_CP_OTHER_ARCH used in without VBOX_WITH_COMBINED_PACKAGE set)
137 VBOX_CP_OTHER_BITS = $(error VBOX_CP_OTHER_ARCH used in without VBOX_CP_OTHER_BITS set)
138 endif
139else
140 VBOX_CP_THIS_BITS := 64
141 ifdef VBOX_WITH_COMBINED_PACKAGE
142 VBOX_CP_OTHER_ARCH := x86
143 VBOX_CP_OTHER_BITS := 32
144 else
145 VBOX_CP_OTHER_ARCH = $(error VBOX_CP_OTHER_ARCH used in without VBOX_WITH_COMBINED_PACKAGE set)
146 VBOX_CP_OTHER_BITS = $(error VBOX_CP_OTHER_ARCH used in without VBOX_CP_OTHER_BITS set)
147 endif
148endif
149
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