VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/Makefile.kmk@ 98326

Last change on this file since 98326 was 98103, checked in by vboxsync, 22 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 15.4 KB
Line 
1# $Id: Makefile.kmk 98103 2023-01-17 14:15:46Z vboxsync $
2## @file
3# VirtualBox Validation Kit - Bootsector Tests for Test Drivers or standalone testing.
4#
5
6#
7# Copyright (C) 2006-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# The contents of this file may alternatively be used under the terms
26# of the Common Development and Distribution License Version 1.0
27# (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28# in the VirtualBox distribution, in which case the provisions of the
29# CDDL are applicable instead of those of the GPL.
30#
31# You may elect to license modified versions of this file under the
32# terms and conditions of either the GPL or the CDDL or both.
33#
34# SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35#
36
37SUB_DEPTH = ../../../..
38include $(KBUILD_PATH)/subheader.kmk
39
40
41#
42# Make sure our Config.kmk gets included when kmk is running from a parent directory.
43#
44ifndef VBOX_BOOTSECTORS_CONFIG_KMK_INCLUDED
45 include $(PATH_SUB_CURRENT)/Config.kmk
46endif
47
48
49#
50# Include sub-makefile.
51#
52# The VBOX_WITH_BS3KIT feature requires NASM 2.12 and either MSVC or gcc
53# with ms_abi function attribute (gcc v4.4+, MSVC default).
54# Some 32-bit gcc compilers come without 64-bit support (e.g. EL5).
55#
56if defined(VBOX_WITH_OPEN_WATCOM)
57 if1of ($(KBUILD_TARGET), win)
58 VBOX_WITH_BS3KIT = 1
59 else if $(VBOX_GCC_VERSION_CC) >= 40400 # ms_abi was added in 4.4
60 if1of ($(KBUILD_TARGET), linux)
61 ifneq ($(VBOX_GCC_m64),)
62 VBOX_WITH_BS3KIT = 1
63 endif
64 endif
65 endif
66 ifdef VBOX_WITH_BS3KIT
67 include $(PATH_SUB_CURRENT)/bs3kit/Makefile.kmk
68 endif
69endif
70
71
72#
73# Boot Sector "Linker" tool.
74#
75TOOL_VBoxBootSectorLd = Joins one or more BS2 object files into a floppy img.
76TOOL_VBoxBootSectorLd_LINK_MISCBIN_OUTPUT =
77TOOL_VBoxBootSectorLd_LINK_MISCBIN_DEPEND =
78TOOL_VBoxBootSectorLd_LINK_MISCBIN_DEPORD = $(VBoxBs2Linker_1_TARGET)
79define TOOL_VBoxBootSectorLd_LINK_MISCBIN_CMDS
80 $(VBoxBs2Linker_1_TARGET) -o $(out) $(objs) $(othersrc)
81endef
82
83BLDPROGS += VBoxBs2Linker
84VBoxBs2Linker_TEMPLATE = VBoxBldProg
85VBoxBs2Linker_SOURCES = VBoxBs2Linker.cpp
86
87
88#
89# Makes a boot sector test image.
90#
91TEMPLATE_VBoxBsTestImg = kBuild tool config for building boot sector stuff.
92TEMPLATE_VBoxBsTestImg_INST = $(INST_VALIDATIONKIT)bootsectors/
93TEMPLATE_VBoxBsTestImg_BINSUFF = .img
94TEMPLATE_VBoxBsTestImg_MODE = 0644
95TEMPLATE_VBoxBsTestImg_ASTOOL = YASM
96TEMPLATE_VBoxBsTestImg_ASFLAGS = -f bin -P $(VBOX_PATH_BOOTSECTORS_SRC)/bootsector2-first.mac $(VBOX_YASM_Wno-segreg-in-64bit) --mapfile
97TEMPLATE_VBoxBsTestImg_ASDEFS = ASM_FORMAT_BIN
98TEMPLATE_VBoxBsTestImg_INCS = \
99 . \
100 ../../VMM/testcase/Instructions
101TEMPLATE_VBoxBsTestImg_LDTOOL = VBoxBootSectorLd
102
103
104#
105# The boot sector tests.
106#
107MISCBINS += bootsector-shutdown
108bootsector-shutdown_TEMPLATE = VBoxBsTestImg
109bootsector-shutdown_SOURCES = bootsector-shutdown.asm
110
111MISCBINS += bootsector-pae
112bootsector-pae_TEMPLATE = VBoxBsTestImg
113bootsector-pae_SOURCES = bootsector-pae.asm
114
115MISCBINS += bootsector-empty
116bootsector-empty_TEMPLATE = VBoxBsTestImg
117bootsector-empty_SOURCES = bootsector-empty.asm
118
119MISCBINS += bootsector2-test1
120bootsector2-test1_TEMPLATE = VBoxBsTestImg
121bootsector2-test1_SOURCES = bootsector2-test1.asm
122
123MISCBINS += bootsector2-cpu-hidden-regs-1
124bootsector2-cpu-hidden-regs-1_TEMPLATE = VBoxBsTestImg
125bootsector2-cpu-hidden-regs-1_SOURCES = bootsector2-cpu-hidden-regs-1.asm
126
127MISCBINS += bootsector2-cpu-instr-1
128bootsector2-cpu-instr-1_TEMPLATE = VBoxBsTestImg
129bootsector2-cpu-instr-1_SOURCES = bootsector2-cpu-instr-1.asm
130
131MISCBINS += bootsector2-cpu-pf-1
132bootsector2-cpu-pf-1_TEMPLATE = VBoxBsTestImg
133bootsector2-cpu-pf-1_SOURCES = bootsector2-cpu-pf-1.asm
134
135MISCBINS += bootsector2-cpu-xcpt-1
136bootsector2-cpu-xcpt-1_TEMPLATE = VBoxBsTestImg
137bootsector2-cpu-xcpt-1_SOURCES = bootsector2-cpu-xcpt-1.asm
138
139MISCBINS += bootsector2-cpu-xcpt-2
140bootsector2-cpu-xcpt-2_TEMPLATE = VBoxBsTestImg
141bootsector2-cpu-xcpt-2_SOURCES = bootsector2-cpu-xcpt-2.asm
142
143MISCBINS += bootsector2-cpu-a20-1
144bootsector2-cpu-a20-1_TEMPLATE = VBoxBsTestImg
145bootsector2-cpu-a20-1_SOURCES = bootsector2-cpu-a20-1.asm
146
147MISCBINS += bootsector2-cpu-basic-1
148bootsector2-cpu-basic-1_TEMPLATE = VBoxBsTestImg
149bootsector2-cpu-basic-1_SOURCES = bootsector2-cpu-basic-1.asm
150
151MISCBINS += bootsector2-cpu-ac-loop
152bootsector2-cpu-ac-loop_TEMPLATE = VBoxBsTestImg
153bootsector2-cpu-ac-loop_SOURCES = bootsector2-cpu-ac-loop.asm
154
155MISCBINS += bootsector2-cpu-db-loop
156bootsector2-cpu-db-loop_TEMPLATE = VBoxBsTestImg
157bootsector2-cpu-db-loop_SOURCES = bootsector2-cpu-db-loop.asm
158
159MISCBINS += bootsector2-boot-registers-1
160bootsector2-boot-registers-1_TEMPLATE = VBoxBsTestImg
161bootsector2-boot-registers-1_SOURCES = bootsector2-boot-registers-1.asm
162
163MISCBINS += bootsector2-triple-fault-1
164bootsector2-triple-fault-1_TEMPLATE = VBoxBsTestImg
165bootsector2-triple-fault-1_SOURCES = bootsector2-triple-fault-1.asm
166
167
168ifeq ($(USERNAME),birdxx)
169 if1of ($(KBUILD_HOST).$(KBUILD_HOST_ARCH),win.amd64)
170#
171# Generated instruction tests (work in progress).
172#
173
174VBOX_PATH_VBINSTST = $(PATH_ROOT)/src/VBox/VMM/testcase/Instructions
175VBOX_VBINSTST_GEN = $(VBOX_PATH_VBINSTST)/InstructionTestGen.py
176VBOX_BOOTSECTOR2_VBINSTST_AMD64_GEN = $(VBOX_BLD_PYTHON) $(VBOX_VBINSTST_GEN) \
177 --split 3 --target bs2-r0-64 --output-base $(bootsectors_0_OUTDIR)/VBInsTst-64 --test-size tiny
178VBOX_BOOTSECTOR2_VBINSTST_AMD64_FILES = $(shell $(VBOX_BOOTSECTOR2_VBINSTST_AMD64_GEN) --makefile-mode)
179
180#$$(bootsectors_0_OUTDIR)/VBInsTst.ts + $$(VBOX_BOOTSECTOR2_VBINSTST_AMD64_FILES): $(VBOX_VBINSTST_GEN) | $$(dir $$@)
181# $(VBOX_BOOTSECTOR2_VBINSTST_AMD64_GEN)
182# $(APPEND) -t $@
183#
184#bootsectors_SOURCES += $(bootsectors_0_OUTDIR)/bootsector2-vbinstst-1.img
185#bootsectors_CLEAN += $(VBOX_BOOTSECTOR2_VBINSTST_AMD64_FILES)
186#
187#$$(bootsectors_0_OUTDIR)/bootsector2-vbinstst-1.img: \
188# $(PATH_SUB_CURRENT)/bootsector2-vbinstst-64-1.asm \
189# $$(bootsectors_0_OUTDIR)/VBInsTst-64.asm
190# $(TOOL_$(VBOX_ASTOOL)_AS) -f bin -D ASM_FORMAT_BIN -I $(dir $@) -I $(PATH_ROOT)/include -I $(VBOX_PATH_VBINSTST) -o $@ -L nasm -l $@.lst $<
191
192MISCBINS += bootsector2-vbinstst-kernel
193bootsector2-vbinstst-kernel_TEMPLATE = VBoxBsTestImg
194bootsector2-vbinstst-kernel_SOURCES = \
195 bootsector2-vbinstst-kernel.asm
196
197
198MISCBINS += bootsector2-vbinstst-64-1
199bootsector2-vbinstst-64-1_TEMPLATE = VBoxBsTestImg
200bootsector2-vbinstst-64-1_DEFS = \
201 BS2_BIG_IMAGE_LM64 \
202 BS2_BIG_IMAGE_GEN_SOURCE_FILE=bs2-vbinstst-64-1.asm \
203 BS2_BIG_IMAGE_GEN_TEST_NAME=\"bs2-vbinstst-64-1\"
204bootsector2-vbinstst-64-1_INCS = $(bootsector2-vbinstst-64-1_0_OUTDIR)/
205bootsector2-vbinstst-64-1_SOURCES = \
206 bootsector2-vbinstst-kernel.asm \
207 bootsector2-vbinstst-big-template.asm
208bootsector2-vbinstst-64-1_INTERMEDIATES = \
209 $(bootsector2-vbinstst-64-1_0_OUTDIR)/bs2-vbinstst-64-1.asm
210bootsector2-vbinstst-64-1_CLEAN = \
211 $(bootsector2-vbinstst-64-1_0_OUTDIR)/bs2-vbinstst-64-1.asm
212
213$$(bootsector2-vbinstst-64-1_0_OUTDIR)/bs2-vbinstst-64-1.asm: $(VBOX_VBINSTST_GEN) | $$(dir $$@)
214 $(REDIRECT) -0 /dev/null -- $(VBOX_BLD_PYTHON) $(VBOX_VBINSTST_GEN) --target bs2-r0-64-big --output-base $(basename $@) --test-size medium
215
216MISCBINS += bootsector2-vbinstst-32-1
217bootsector2-vbinstst-32-1_TEMPLATE = VBoxBsTestImg
218bootsector2-vbinstst-32-1_DEFS = \
219 BS2_BIG_IMAGE_PP32 \
220 BS2_BIG_IMAGE_GEN_SOURCE_FILE=bs2-vbinstst-32-1.asm \
221 BS2_BIG_IMAGE_GEN_TEST_NAME=\"bs2-vbinstst-32-1\"
222bootsector2-vbinstst-32-1_INCS = $(bootsector2-vbinstst-32-1_0_OUTDIR)/
223bootsector2-vbinstst-32-1_SOURCES = \
224 bootsector2-vbinstst-kernel.asm \
225 bootsector2-vbinstst-big-template.asm
226bootsector2-vbinstst-32-1_INTERMEDIATES = \
227 $(bootsector2-vbinstst-32-1_0_OUTDIR)/bs2-vbinstst-32-1.asm
228bootsector2-vbinstst-32-1_CLEAN = \
229 $(bootsector2-vbinstst-32-1_0_OUTDIR)/bs2-vbinstst-32-1.asm
230
231$$(bootsector2-vbinstst-32-1_0_OUTDIR)/bs2-vbinstst-32-1.asm: $(VBOX_VBINSTST_GEN) | $$(dir $$@)
232 $(REDIRECT) -0 /dev/null -- $(VBOX_BLD_PYTHON) $(VBOX_VBINSTST_GEN) --target bs2-r0-32-big --output-base $(basename $@) --test-size medium
233
234 endif
235endif # bird-only
236
237
238ifdef VBOX_WITH_BS3KIT
239#
240# Bs3kit
241#
242
243#
244# APIC
245#
246MISCBINS += bs3-apic-1
247bs3-apic-1_TEMPLATE = VBoxBS3KitImg
248bs3-apic-1_SOURCES = \
249 bs3kit/bs3-first-rm.asm \
250 bs3-apic-1.c \
251 bs3-apic-1-32.c32
252
253
254# CPU basics #2 (first being bootsector2-cpu-basic-1).
255MISCBINS += bs3-cpu-basic-2
256bs3-cpu-basic-2_TEMPLATE = VBoxBS3KitImg
257bs3-cpu-basic-2_INCS = .
258bs3-cpu-basic-2_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-cpu-basic-2-template.c
259bs3-cpu-basic-2_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-cpu-basic-2-template.c
260bs3-cpu-basic-2_SOURCES = \
261 bs3kit/bs3-first-rm.asm \
262 bs3-cpu-basic-2.c \
263 bs3-cpu-basic-2-x0.c \
264 bs3-cpu-basic-2-32.c32 \
265 bs3-cpu-basic-2-pf.c32 \
266 bs3-cpu-basic-2-asm.asm \
267 bs3kit/bs3-cmn-instantiate-x0.c16 \
268 bs3kit/bs3-cmn-instantiate.c32 \
269 bs3kit/bs3-cmn-instantiate.c64
270bs3-cpu-basic-2-template.o:: \
271 $$(bs3-cpu-basic-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate-x0.o16 \
272 $$(bs3-cpu-basic-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
273 $$(bs3-cpu-basic-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
274 $$(bs3-cpu-basic-2_0_OUTDIR)/bs3-cpu-basic-2-asm.o16
275
276#
277# CPU weird stuff #1.
278#
279MISCBINS += bs3-cpu-weird-1
280bs3-cpu-weird-1_TEMPLATE = VBoxBS3KitImg
281bs3-cpu-weird-1_INCS = .
282bs3-cpu-weird-1_SOURCES = \
283 bs3kit/bs3-first-rm.asm \
284 bs3-cpu-weird-1.c \
285 bs3-cpu-weird-1-x0.c \
286 bs3-cpu-weird-1-asm.asm
287
288#
289# 64-bit CPU state #1.
290#
291MISCBINS += bs3-cpu-state64-1
292bs3-cpu-state64-1_TEMPLATE = VBoxBS3KitImg
293bs3-cpu-state64-1_INCS = .
294bs3-cpu-state64-1_SOURCES = \
295 bs3kit/bs3-first-init-all-lm64.asm \
296 bs3-cpu-state64-1.c64 \
297 bs3-cpu-state64-1-asm.asm
298
299#
300# FPU state corruption checker.
301#
302MISCBINS += bs3-fpustate-1
303bs3-fpustate-1_TEMPLATE = VBoxBS3KitImg
304bs3-fpustate-1_INCS = .
305bs3-fpustate-1_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-fpustate-1-template.c
306bs3-fpustate-1_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-fpustate-1-template.c
307bs3-fpustate-1_SOURCES = \
308 bs3kit/bs3-first-rm.asm \
309 bs3-fpustate-1.c \
310 bs3kit/bs3-cmn-instantiate.c16 \
311 bs3kit/bs3-cmn-instantiate.c32 \
312 bs3kit/bs3-cmn-instantiate.c64 \
313 bs3-fpustate-1-asm.asm
314bs3-fpustate-1-template.o:: \
315 $$(bs3-fpustate-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o16 \
316 $$(bs3-fpustate-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
317 $$(bs3-fpustate-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
318 $$(bs3-fpustate-1_0_OUTDIR)/bs3-fpustate-1-asm.o16
319
320#
321# CPU instruction decoding experiments.
322#
323MISCBINS += bs3-cpu-decoding-1
324bs3-cpu-decoding-1_TEMPLATE = VBoxBS3KitImg
325bs3-cpu-decoding-1_INCS = .
326bs3-cpu-decoding-1_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-cpu-decoding-1-template.c
327bs3-cpu-decoding-1_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-cpu-decoding-1-template.c
328bs3-cpu-decoding-1_SOURCES = \
329 bs3kit/bs3-first-init-all-pp32.asm \
330 bs3-cpu-decoding-1.c32 \
331 bs3-cpu-decoding-1-asm.asm
332# bs3kit/bs3-cmn-instantiate.c16 \
333# bs3kit/bs3-cmn-instantiate.c32 \
334# bs3kit/bs3-cmn-instantiate.c64
335bs3-cpu-decoding-1-template.o:: \
336 $$(bs3-cpu-decoding-1_0_OUTDIR)/bs3-cpu-decoding-1-asm.o16
337# $$(bs3-cpu-decoding-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o16 \
338# $$(bs3-cpu-decoding-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
339# $$(bs3-cpu-decoding-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
340
341
342#
343# CPU instructions #2 (first being bootsector2-cpu-instr-1).
344#
345MISCBINS += bs3-cpu-instr-2
346bs3-cpu-instr-2_TEMPLATE = VBoxBS3KitImg
347bs3-cpu-instr-2_INCS = .
348bs3-cpu-instr-2_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-cpu-instr-2-template.c
349bs3-cpu-instr-2_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-cpu-instr-2-template.c
350bs3-cpu-instr-2_SOURCES = \
351 bs3kit/bs3-first-rm.asm \
352 bs3-cpu-instr-2.c \
353 bs3-cpu-instr-2-asm.asm \
354 bs3kit/bs3-cmn-instantiate-x0.c16 \
355 bs3kit/bs3-cmn-instantiate.c32 \
356 bs3kit/bs3-cmn-instantiate.c64
357bs3-cpu-instr-2-template.o:: \
358 $$(bs3-cpu-instr-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate-x0.o16 \
359 $$(bs3-cpu-instr-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
360 $$(bs3-cpu-instr-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
361 $$(bs3-cpu-instr-2_0_OUTDIR)/bs3-cpu-instr-2-asm.o16
362
363#
364# CPU instructions #3 - SSE, ++.
365#
366MISCBINS += bs3-cpu-instr-3
367bs3-cpu-instr-3_TEMPLATE = VBoxBS3KitImg
368bs3-cpu-instr-3_INCS = .
369bs3-cpu-instr-3_SOURCES = \
370 bs3kit/bs3-first-init-all-pe32.asm \
371 bs3-cpu-instr-3.c32 \
372 bs3-cpu-instr-3-asm.asm
373bs3-cpu-instr-3-template.o:: \
374 $$(bs3-cpu-instr-3_0_OUTDIR)/bs3-cpu-instr-3-asm.o16
375
376#
377# CPU generated instruction tests #1
378#
379MISCBINS += bs3-cpu-generated-1
380bs3-cpu-generated-1_TEMPLATE = VBoxBS3KitImg
381bs3-cpu-generated-1_INCS = .
382bs3-cpu-generated-1_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-cpu-generated-1-template.c
383bs3-cpu-generated-1_SOURCES = \
384 bs3kit/bs3-first-rm.asm \
385 bs3-cpu-generated-1.c \
386 bs3-cpu-generated-1-asm.asm \
387 bs3kit/bs3-cmn-instantiate-x0.c16 \
388 bs3kit/bs3-cmn-instantiate.c32 \
389 bs3kit/bs3-cmn-instantiate.c64 \
390 $(bs3-cpu-generated-1_0_OUTDIR)/bs3-cpu-generated-1-data.c16
391bs3-cpu-generated-1_CLEAN = $(bs3-cpu-generated-1_0_OUTDIR)/bs3-cpu-generated-1-data.c16
392
393bs3-cpu-generated-1-template.o:: \
394 $$(bs3-cpu-generated-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate-x0.o16 \
395 $$(bs3-cpu-generated-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
396 $$(bs3-cpu-generated-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
397 $$(bs3-cpu-generated-1_0_OUTDIR)/bs3-cpu-generated-1-asm.o16
398
399$$(bs3-cpu-generated-1_0_OUTDIR)/bs3-cpu-generated-1-data.c16: \
400 $(PATH_SUB_CURRENT)/bs3-cpu-generated-1-data.py \
401 $(PATH_SUB_CURRENT)/../../VMM/VMMAll/IEMAllInstructionsPython.py \
402 $(PATH_SUB_CURRENT)/../../VMM/VMMAll/IEMAllInstructions*.cpp.h \
403 | $$(dir $$@)
404 $(REDIRECT) -0 /dev/null -- $(VBOX_BLD_PYTHON) $< $@
405
406#
407# Memory allocation.
408#
409MISCBINS += bs3-memalloc-1
410bs3-memalloc-1_TEMPLATE = VBoxBS3KitImg
411bs3-memalloc-1_INCS = .
412bs3-memalloc-1_SOURCES = \
413 bs3kit/bs3-first-init-all-lm64.asm \
414 bs3-memalloc-1.c64
415
416
417#
418# Timer Interrupts
419#
420MISCBINS += bs3-timers-1
421bs3-timers-1_TEMPLATE = VBoxBS3KitImg
422bs3-timers-1_INCS = .
423bs3-timers-1_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-timers-1-template.c
424bs3-timers-1_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-timers-1-template.c
425bs3-timers-1_SOURCES = \
426 bs3kit/bs3-first-rm.asm \
427 bs3-timers-1.c \
428 bs3-timers-1-x0.c
429
430#
431# Timing
432#
433MISCBINS += bs3-timing-1
434bs3-timing-1_TEMPLATE = VBoxBS3KitImg
435bs3-timing-1_INCS = .
436bs3-timing-1_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-timing-1-template.c
437bs3-timing-1_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-timing-1-template.c
438bs3-timing-1_SOURCES = \
439 bs3kit/bs3-first-rm.asm \
440 bs3-timing-1.c \
441 bs3-timing-1-32.c32
442
443#
444# Lock contention and interruption.
445#
446MISCBINS += bs3-locking-1
447bs3-locking-1_TEMPLATE = VBoxBS3KitImg
448bs3-locking-1_INCS = .
449bs3-locking-1_SOURCES = \
450 bs3kit/bs3-first-rm.asm \
451 bs3-locking-1.c
452
453endif # VBOX_WITH_BS3KIT
454
455
456#
457# Executable version of the bs3-timing-1 bootsector.
458#
459PROGRAMS += bs3-timing-1-exe
460bs3-timing-1-exe_TEMPLATE = VBoxValidationKitR3
461bs3-timing-1-exe_NAME = bs3-timing-1
462bs3-timing-1-exe_SOURCES = bs3-timing-1-exe.c
463
464
465#
466# pylint
467#
468VBOX_VALIDATIONKIT_PYTHON_SOURCES += $(wildcard $(PATH_SUB_CURRENT)/*.py)
469$(evalcall def_vbox_validationkit_process_python_sources)
470
471include $(FILE_KBUILD_SUB_FOOTER)
472
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