mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sys-firmware/edk2-ovmf: Depends on dev-lang/python[sqlite], add -9999 ebuild
Closes: https://bugs.gentoo.org/617668 Closes: https://github.com/gentoo/gentoo/pull/6366 Package-Manager: Portage-2.3.16, Repoman-2.3.6 Signed-off-by: Matthias Maier <tamiko@gentoo.org>
This commit is contained in:
committed by
Matthias Maier
parent
4c82c231fa
commit
7fb961811b
116
sys-firmware/edk2-ovmf/edk2-ovmf-2017_pre20170505-r1.ebuild
Normal file
116
sys-firmware/edk2-ovmf/edk2-ovmf-2017_pre20170505-r1.ebuild
Normal file
@@ -0,0 +1,116 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_REQ_USE="sqlite"
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit eutils python-any-r1 readme.gentoo-r1
|
||||
|
||||
DESCRIPTION="UEFI firmware for 64-bit x86 virtual machines"
|
||||
HOMEPAGE="https://github.com/tianocore/edk2"
|
||||
|
||||
REQUIRED_USE="
|
||||
${PYTHON_REQUIRED_USE}
|
||||
"
|
||||
NON_BINARY_DEPEND="
|
||||
>=dev-lang/nasm-2.0.7
|
||||
>=sys-power/iasl-20160729
|
||||
${PYTHON_DEPS}
|
||||
"
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/tianocore/edk2"
|
||||
DEPEND+="
|
||||
${NON_BINARY_DEPEND}
|
||||
"
|
||||
else
|
||||
SRC_URI="
|
||||
binary? ( https://dev.gentoo.org/~tamiko/distfiles/${P}-bin.tar.xz )
|
||||
!binary? ( https://dev.gentoo.org/~tamiko/distfiles/${P}.tar.xz )"
|
||||
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
|
||||
IUSE="+binary"
|
||||
REQUIRED_USE+="
|
||||
!amd64? ( binary )
|
||||
"
|
||||
DEPEND+="
|
||||
!binary? (
|
||||
amd64? (
|
||||
${NON_BINARY_DEPEND}
|
||||
)
|
||||
)"
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-build_system_fixes.patch
|
||||
)
|
||||
fi
|
||||
|
||||
LICENSE="BSD-2 MIT"
|
||||
SLOT="0"
|
||||
|
||||
DISABLE_AUTOFORMATTING=true
|
||||
DOC_CONTENTS="This package contains the tianocore edk2 UEFI firmware for 64-bit x86
|
||||
virtual machines. The firmware is located under
|
||||
/usr/share/edk2-ovmf/OVMF.fd
|
||||
/usr/share/edk2-ovmf/OVMF_CODE.fd
|
||||
/usr/share/edk2-ovmf/OVMF_VARS.fd
|
||||
|
||||
The firmware does not support csm (due to no free csm implementation
|
||||
available). If you need a firmware with csm support you have to download
|
||||
one for yourself. Firmware blobs are commonly labeled
|
||||
OVMF{,_CODE,_VARS}-with-csm.fd
|
||||
|
||||
In order to use the firmware you can run qemu the following way
|
||||
|
||||
$ qemu-system-x86_64 \
|
||||
-drive file=/usr/share/edk2-ovmf/OVMF.fd,if=pflash,format=raw,unit=0,readonly=on \
|
||||
...
|
||||
|
||||
You can register the firmware for use in libvirt by adding to /etc/libvirt/qemu.conf:
|
||||
nvram = [
|
||||
\"/usr/share/edk2-ovmf/OVMF_CODE.fd:/usr/share/edk2-ovmf/OVMF_VARS.fd\"
|
||||
]"
|
||||
|
||||
pkg_setup() {
|
||||
[[ ${PV} != "9999" ]] && use binary || python-any-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
if [[ ${PV} != "9999" ]] && use binary; then
|
||||
eapply_user
|
||||
return
|
||||
fi
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
TARGET_ARCH=X64
|
||||
TARGET_NAME=RELEASE
|
||||
TARGET_TOOLS=GCC49
|
||||
|
||||
[[ ${PV} != "9999" ]] && use binary && return
|
||||
|
||||
emake ARCH=${TARGET_ARCH} -C BaseTools -j1
|
||||
|
||||
. ./edksetup.sh
|
||||
|
||||
./OvmfPkg/build.sh \
|
||||
-a "${TARGET_ARCH}" -b "${TARGET_NAME}" -t "${TARGET_TOOLS}" \
|
||||
-D FD_SIZE_2MB \
|
||||
|| die "OvmfPkg/build.sh failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
local builddir="Build/OvmfX64/${TARGET_NAME}_${TARGET_TOOLS}/FV"
|
||||
|
||||
insinto /usr/share/${PN}
|
||||
doins "${builddir}"/OVMF{,_CODE,_VARS}.fd
|
||||
|
||||
readme.gentoo_create_doc
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
readme.gentoo_print_elog
|
||||
}
|
||||
116
sys-firmware/edk2-ovmf/edk2-ovmf-9999.ebuild
Normal file
116
sys-firmware/edk2-ovmf/edk2-ovmf-9999.ebuild
Normal file
@@ -0,0 +1,116 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_REQ_USE="sqlite"
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit eutils python-any-r1 readme.gentoo-r1
|
||||
|
||||
DESCRIPTION="UEFI firmware for 64-bit x86 virtual machines"
|
||||
HOMEPAGE="https://github.com/tianocore/edk2"
|
||||
|
||||
REQUIRED_USE="
|
||||
${PYTHON_REQUIRED_USE}
|
||||
"
|
||||
NON_BINARY_DEPEND="
|
||||
>=dev-lang/nasm-2.0.7
|
||||
>=sys-power/iasl-20160729
|
||||
${PYTHON_DEPS}
|
||||
"
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/tianocore/edk2"
|
||||
DEPEND+="
|
||||
${NON_BINARY_DEPEND}
|
||||
"
|
||||
else
|
||||
SRC_URI="
|
||||
binary? ( https://dev.gentoo.org/~tamiko/distfiles/${P}-bin.tar.xz )
|
||||
!binary? ( https://dev.gentoo.org/~tamiko/distfiles/${P}.tar.xz )"
|
||||
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
|
||||
IUSE="+binary"
|
||||
REQUIRED_USE+="
|
||||
!amd64? ( binary )
|
||||
"
|
||||
DEPEND+="
|
||||
!binary? (
|
||||
amd64? (
|
||||
${NON_BINARY_DEPEND}
|
||||
)
|
||||
)"
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-build_system_fixes.patch
|
||||
)
|
||||
fi
|
||||
|
||||
LICENSE="BSD-2 MIT"
|
||||
SLOT="0"
|
||||
|
||||
DISABLE_AUTOFORMATTING=true
|
||||
DOC_CONTENTS="This package contains the tianocore edk2 UEFI firmware for 64-bit x86
|
||||
virtual machines. The firmware is located under
|
||||
/usr/share/edk2-ovmf/OVMF.fd
|
||||
/usr/share/edk2-ovmf/OVMF_CODE.fd
|
||||
/usr/share/edk2-ovmf/OVMF_VARS.fd
|
||||
|
||||
The firmware does not support csm (due to no free csm implementation
|
||||
available). If you need a firmware with csm support you have to download
|
||||
one for yourself. Firmware blobs are commonly labeled
|
||||
OVMF{,_CODE,_VARS}-with-csm.fd
|
||||
|
||||
In order to use the firmware you can run qemu the following way
|
||||
|
||||
$ qemu-system-x86_64 \
|
||||
-drive file=/usr/share/edk2-ovmf/OVMF.fd,if=pflash,format=raw,unit=0,readonly=on \
|
||||
...
|
||||
|
||||
You can register the firmware for use in libvirt by adding to /etc/libvirt/qemu.conf:
|
||||
nvram = [
|
||||
\"/usr/share/edk2-ovmf/OVMF_CODE.fd:/usr/share/edk2-ovmf/OVMF_VARS.fd\"
|
||||
]"
|
||||
|
||||
pkg_setup() {
|
||||
[[ ${PV} != "9999" ]] && use binary || python-any-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
if [[ ${PV} != "9999" ]] && use binary; then
|
||||
eapply_user
|
||||
return
|
||||
fi
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
TARGET_ARCH=X64
|
||||
TARGET_NAME=RELEASE
|
||||
TARGET_TOOLS=GCC49
|
||||
|
||||
[[ ${PV} != "9999" ]] && use binary && return
|
||||
|
||||
emake ARCH=${TARGET_ARCH} -C BaseTools
|
||||
|
||||
. ./edksetup.sh
|
||||
|
||||
./OvmfPkg/build.sh \
|
||||
-a "${TARGET_ARCH}" -b "${TARGET_NAME}" -t "${TARGET_TOOLS}" \
|
||||
-D FD_SIZE_2MB \
|
||||
|| die "OvmfPkg/build.sh failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
local builddir="Build/OvmfX64/${TARGET_NAME}_${TARGET_TOOLS}/FV"
|
||||
|
||||
insinto /usr/share/${PN}
|
||||
doins "${builddir}"/OVMF{,_CODE,_VARS}.fd
|
||||
|
||||
readme.gentoo_create_doc
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
readme.gentoo_print_elog
|
||||
}
|
||||
Reference in New Issue
Block a user