VirtualBox

source: vbox/trunk/src/VBox/Devices/Config.kmk@ 60422

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

VGABIOS,PCBIOS: Build variants for 80286 and 8086 in addition to the default 80386 one. Added build time checking of the BIOSORG results (sed + map file). Fixed shutdown code 0ah jump.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1# $Id: Config.kmk 60422 2016-04-11 12:39:13Z vboxsync $
2## @file
3# kBuild Configuration file for the Devices.
4#
5
6#
7# Copyright (C) 2006-2015 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
18VBOX_DEVICES_CONFIG_KMK_INCLUDED = 1
19
20# Include the top-level configure file.
21ifndef VBOX_ROOT_CONFIG_KMK_INCLUDED
22 include $(PATH_ROOT)/Config.kmk
23endif
24
25VBOX_PATH_DEVICES_SRC := $(PATH_ROOT)/src/VBox/Devices
26
27#
28# VBoxBios - Template for building 16-bit BIOS code.
29#
30TEMPLATE_VBoxBios = ROM
31TEMPLATE_VBoxBios_INSTTYPE = none
32TEMPLATE_VBoxBios_TOOL = OPENWATCOM-16
33TEMPLATE_VBoxBios_LDTOOL = OPENWATCOM-WL
34TEMPLATE_VBoxBios_ASTOOL = OPENWATCOM-16
35TEMPLATE_VBoxBios_BLD_TRG = os-agnostic
36TEMPLATE_VBoxBios_BLD_TRG_ARCH = x86
37TEMPLATE_VBoxBios_BINSUFF = .rom
38TEMPLATE_VBoxBios_INCS = . $(VBOX_PATH_DEVICES_SRC)/BiosCommonCode
39TEMPLATE_VBoxBios_ASFLAGS = -q -wx -d1 -0
40TEMPLATE_VBoxBios_CFLAGS = -q -0 -wx -zl -zu -s -oafs -ms -hc -d1+
41TEMPLATE_VBoxBios_CXXFLAGS = $(TEMPLATE_VBoxBios_CFLAGS)
42TEMPLATE_VBoxBios_DEPS = $(VBOX_VERSION_HEADER)
43TEMPLATE_VBoxBios_LDFLAGS = system dos \
44 debug codeview all \
45 option quiet, nofarcalls, map, verbose, statics, symfile \
46 disable 1014, 1023, 2120
47TEMPLATE_VBoxBios_LNK_DEPS = $(VBOX_BIOSSUMS) $(VBOX_PATH_DEVICES_SRC)/BiosCommonCode/biosorg_check.sed
48TEMPLATE_VBoxBios_POST_CMDS = \
49 $(QUIET)$(SED_EXT) -n -f $(PATH_ROOT)/src/VBox/Devices/PC/BIOS/biosorg_check.sed $(outbase).map \
50 && $(MV_EXT) -f $(out) $(out).tmp \
51 && $(VBOX_BIOSSUMS) $(out).tmp $(out) \
52 && $(RM_EXT) -f $(out).tmp \
53
54#
55# VBoxBios - Template for building 32-bit BIOS code.
56#
57TEMPLATE_VBoxBios32Lib = ROM
58TEMPLATE_VBoxBios32Lib_EXTENDS = VBoxBios
59TEMPLATE_VBoxBios32Lib_INSTTYPE = none
60TEMPLATE_VBoxBios32Lib_TOOL = OPENWATCOM
61TEMPLATE_VBoxBios32Lib_ASTOOL = OPENWATCOM
62TEMPLATE_VBoxBios32Lib_CFLAGS = -q -wx -zu -s -oas -ms -nt=BIOS32 -nd=BIOS32 -hc
63ifeq ($(KBUILD_TARGET),darwin) # The Open Watcom version we use on darwin generate trouble for the link in -d1+ mode; -d2 doesn't work anywhere.
64TEMPLATE_VBoxBios32Lib_CFLAGS += -d1
65else
66TEMPLATE_VBoxBios32Lib_CFLAGS += -d1+
67endif
68TEMPLATE_VBoxBios32Lib_CXXFLAGS = $(TEMPLATE_VBoxBios32_CFLAGS)
69TEMPLATE_VBoxBios32Lib_LNK_DEPS = $(NO_SUCH_VARIABLE)
70TEMPLATE_VBoxBios32Lib_POST_CMDS = $(NO_SUCH_VARIABLE)
71
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use