]> git.proxmox.com Git - mirror_edk2.git/commit - OvmfPkg/Bhyve/BhyveX64.dsc
Add BhyvePkg, to support the bhyve hypervisor
authorRebecca Cran <rebecca@bsdio.com>
Mon, 13 Jul 2020 05:41:31 +0000 (23:41 -0600)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Fri, 31 Jul 2020 13:03:10 +0000 (13:03 +0000)
commit656419f922c047a3c48bd3f4ecea7d8e87d0b761
tree28fea8684780003f1434ff1b494efad1ece7a1d0
parent137c2c6eff67f4750d77e8e40af6683c412d3ed0
Add BhyvePkg, to support the bhyve hypervisor

BhyvePkg supports the bhyve hypervisor, which is a hypervisor/virtual
machine manager available on FreeBSD, macOS and Illumos.

Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
Message-Id: <20200713054131.479627-2-rebecca@bsdio.com>
Acked-by: Laszlo Ersek <lersek@redhat.com>
53 files changed:
OvmfPkg/Bhyve/AcpiPlatformDxe/AcpiPlatform.c [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiPlatformDxe/AcpiPlatform.h [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiPlatformDxe/AcpiPlatformDxe.inf [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiPlatformDxe/Bhyve.c [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiPlatformDxe/EntryPoint.c [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiPlatformDxe/PciDecoding.c [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiTables/AcpiTables.inf [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiTables/Dsdt.asl [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiTables/Facp.aslc [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiTables/Facs.aslc [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiTables/Hpet.aslc [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiTables/Madt.aslc [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiTables/Mcfg.aslc [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiTables/Platform.h [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiTables/Spcr.aslc [new file with mode: 0644]
OvmfPkg/Bhyve/AcpiTables/Ssdt.asl [new file with mode: 0644]
OvmfPkg/Bhyve/BhyvePkg.dec [new file with mode: 0644]
OvmfPkg/Bhyve/BhyvePkgDefines.fdf.inc [new file with mode: 0644]
OvmfPkg/Bhyve/BhyvePkgX64.dsc [new file with mode: 0644]
OvmfPkg/Bhyve/BhyvePkgX64.fdf [new file with mode: 0644]
OvmfPkg/Bhyve/BhyveRfbDxe/BhyveRfbDxe.inf [new file with mode: 0644]
OvmfPkg/Bhyve/BhyveRfbDxe/ComponentName.c [new file with mode: 0644]
OvmfPkg/Bhyve/BhyveRfbDxe/Gop.h [new file with mode: 0644]
OvmfPkg/Bhyve/BhyveRfbDxe/GopDriver.c [new file with mode: 0644]
OvmfPkg/Bhyve/BhyveRfbDxe/GopScreen.c [new file with mode: 0644]
OvmfPkg/Bhyve/BhyveRfbDxe/VbeShim.asm [new file with mode: 0644]
OvmfPkg/Bhyve/BhyveRfbDxe/VbeShim.c [new file with mode: 0644]
OvmfPkg/Bhyve/BhyveRfbDxe/VbeShim.h [new file with mode: 0644]
OvmfPkg/Bhyve/BhyveRfbDxe/VbeShim.sh [new file with mode: 0644]
OvmfPkg/Bhyve/FvmainCompactScratchEnd.fdf.inc [new file with mode: 0644]
OvmfPkg/Bhyve/Include/Library/BhyveFwCtlLib.h [new file with mode: 0644]
OvmfPkg/Bhyve/Library/BhyveFwCtlLib/BhyveFwCtlLib.c [new file with mode: 0644]
OvmfPkg/Bhyve/Library/BhyveFwCtlLib/BhyveFwCtlLib.inf [new file with mode: 0644]
OvmfPkg/Bhyve/Library/PlatformBootManagerLib/BdsPlatform.c [new file with mode: 0644]
OvmfPkg/Bhyve/Library/PlatformBootManagerLib/BdsPlatform.h [new file with mode: 0644]
OvmfPkg/Bhyve/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf [new file with mode: 0644]
OvmfPkg/Bhyve/Library/PlatformBootManagerLib/PlatformData.c [new file with mode: 0644]
OvmfPkg/Bhyve/License.txt [new file with mode: 0644]
OvmfPkg/Bhyve/PlatformPei/AmdSev.c [new file with mode: 0644]
OvmfPkg/Bhyve/PlatformPei/ClearCache.c [new file with mode: 0644]
OvmfPkg/Bhyve/PlatformPei/Cmos.c [new file with mode: 0644]
OvmfPkg/Bhyve/PlatformPei/Cmos.h [new file with mode: 0644]
OvmfPkg/Bhyve/PlatformPei/FeatureControl.c [new file with mode: 0644]
OvmfPkg/Bhyve/PlatformPei/Fv.c [new file with mode: 0644]
OvmfPkg/Bhyve/PlatformPei/MemDetect.c [new file with mode: 0644]
OvmfPkg/Bhyve/PlatformPei/Platform.c [new file with mode: 0644]
OvmfPkg/Bhyve/PlatformPei/Platform.h [new file with mode: 0644]
OvmfPkg/Bhyve/PlatformPei/PlatformPei.inf [new file with mode: 0644]
OvmfPkg/Bhyve/SmbiosPlatformDxe/Bhyve.c [new file with mode: 0644]
OvmfPkg/Bhyve/SmbiosPlatformDxe/SmbiosPlatformDxe.c [new file with mode: 0644]
OvmfPkg/Bhyve/SmbiosPlatformDxe/SmbiosPlatformDxe.h [new file with mode: 0644]
OvmfPkg/Bhyve/SmbiosPlatformDxe/SmbiosPlatformDxe.inf [new file with mode: 0644]
OvmfPkg/Bhyve/VarStore.fdf.inc [new file with mode: 0644]