~ubuntu-branches/ubuntu/trusty/virtualbox/trusty-proposed

« back to all changes in this revision

Viewing changes to src/VBox/Devices/EFI/Firmware2/VBoxPkg/PlatformPei/PlatformPei.inf

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-03-07 16:38:36 UTC
  • mfrom: (1.1.13) (3.1.20 experimental)
  • Revision ID: package-import@ubuntu.com-20130307163836-p93jpbgx39tp3gb4
Tags: 4.2.8-dfsg-0ubuntu1
* New upstream release. (Closes: #691148)
  - Fixes compatibility with kernel 3.8. (Closes: #700823; LP: #1101867)
* Switch to my @debian.org email address.
* Move package to contrib as virtualbox 4.2 needs a non-free compiler to
  build the BIOS.
* Build-depend on libdevmapper-dev.
* Refresh patches.
  - Drop 36-fix-ftbfs-xserver-112.patch, cve-2012-3221.patch,
    CVE-2013-0420.patch 37-kcompat-3.6.patch and 38-kcompat-3.7.patch.
* Drop all virtualbox-ose transitional packages.
* Drop the virtualbox-fuse package as vdfuse fails to build with
  virtualbox 4.2.
* Update install files and VBox.sh.
* Bump required kbuild version to 0.1.9998svn2577.
* Fix path to VBoxCreateUSBNode.sh in virtualbox.postinst. (Closes: #700479)
* Add an init script to virtuabox-guest-x11 which loads the vboxvideo
  kernel module. The X Server 1.13 doesn't load it anymore. (Closes: #686994)
* Update man pages. (Closes: #680053)
* Add 36-python-multiarch.patch from Rico Tzschichholz to fix detection of
  python in multiarch paths using pkg-config.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: PlatformPei.inf $
 
2
## @file
 
3
# PlatformPei.inf
 
4
#
 
5
 
 
6
#
 
7
# Copyright (C) 2012 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
 
 
18
## @file
 
19
#  Platform PEI driver
 
20
#
 
21
#  This module provides platform specific function to detect boot mode.
 
22
#  Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
 
23
#
 
24
#  This program and the accompanying materials
 
25
#  are licensed and made available under the terms and conditions of the BSD License
 
26
#  which accompanies this distribution. The full text of the license may be found at
 
27
#  http://opensource.org/licenses/bsd-license.php
 
28
#
 
29
#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
 
30
#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 
31
#
 
32
##
 
33
 
 
34
[Defines]
 
35
  INF_VERSION                    = 0x00010005
 
36
  BASE_NAME                      = PlatformPei
 
37
  FILE_GUID                      = B9EF8D3D-D70D-4ACB-B750-024EC801BDE3
 
38
  MODULE_TYPE                    = PEIM
 
39
  VERSION_STRING                 = 1.0
 
40
  ENTRY_POINT                    = InitializePlatform
 
41
 
 
42
#
 
43
# The following information is for reference only and not required by the build tools.
 
44
#
 
45
#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
 
46
#
 
47
 
 
48
[Sources]
 
49
  Cmos.c
 
50
  Fv.c
 
51
  MemDetect.c
 
52
  Platform.c
 
53
 
 
54
[Packages]
 
55
  MdePkg/MdePkg.dec
 
56
  MdeModulePkg/MdeModulePkg.dec
 
57
  UefiCpuPkg/UefiCpuPkg.dec
 
58
  OvmfPkg/OvmfPkg.dec
 
59
 
 
60
[Guids]
 
61
  gEfiMemoryTypeInformationGuid
 
62
  gEfiXenInfoGuid
 
63
 
 
64
[LibraryClasses]
 
65
  DebugLib
 
66
  HobLib
 
67
  IoLib
 
68
  PciLib
 
69
  PeiResourcePublicationLib
 
70
  PeiServicesLib
 
71
  PeiServicesTablePointerLib
 
72
  PeimEntryPoint
 
73
  MtrrLib
 
74
 
 
75
[Pcd]
 
76
  gUefiOvmfPkgTokenSpaceGuid.PcdOvmfMemFvBase
 
77
  gUefiOvmfPkgTokenSpaceGuid.PcdOvmfMemFvSize
 
78
  gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize
 
79
  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
 
80
  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
 
81
  gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved
 
82
 
 
83
[Ppis]
 
84
  gEfiPeiMasterBootModePpiGuid
 
85
 
 
86
[Depex]
 
87
  TRUE
 
88