mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 00:32:12 +02:00
2.06 RC1 release have a number of CVEs fixed: CVE-2020-15705 CVE-2021-3418 CVE-2020-27749 CVE-2021-20233 CVE-2021-20225 CVE-2020-25647 CVE-2020-25632 CVE-2020-27779 CVE-2020-14372 CVE-2020-15707 CVE-2020-15706 CVE-2020-14309 CVE-2020-14310 CVE-2020-14311 CVE-2020-14308 CVE-2020-10713 CVE-2014-4607 Dropped backported patches. (From OE-Core rev: 36a59d63619c2225fe48aa1d8fb1cdabedfffc03) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
42 lines
1.1 KiB
BlitzBasic
42 lines
1.1 KiB
BlitzBasic
require grub2.inc
|
|
|
|
RDEPENDS_${PN}-common += "${PN}-editenv"
|
|
RDEPENDS_${PN} += "${PN}-common"
|
|
RDEPENDS_${PN}_class-native = ""
|
|
|
|
RPROVIDES_${PN}-editenv += "${PN}-efi-editenv"
|
|
|
|
PROVIDES_append_class-native = " grub-efi-native"
|
|
|
|
PACKAGES =+ "${PN}-editenv ${PN}-common"
|
|
FILES_${PN}-editenv = "${bindir}/grub-editenv"
|
|
FILES_${PN}-common = " \
|
|
${bindir} \
|
|
${sysconfdir} \
|
|
${sbindir} \
|
|
${datadir}/grub \
|
|
"
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
|
|
do_install_append () {
|
|
# Avoid conflicts with the EFI package for systems such as arm64 where we
|
|
# need to build grub and grub-efi but only EFI is supported by removing EFI
|
|
# from this package.
|
|
rm -rf ${D}${libdir}/grub/*-efi/
|
|
rmdir --ignore-fail-on-non-empty ${D}${libdir}/grub ${D}${libdir}
|
|
|
|
install -d ${D}${sysconfdir}/grub.d
|
|
# Remove build host references...
|
|
find "${D}" -name modinfo.sh -type f -exec \
|
|
sed -i \
|
|
-e 's,--sysroot=${STAGING_DIR_TARGET},,g' \
|
|
-e 's|${DEBUG_PREFIX_MAP}||g' \
|
|
-e 's:${RECIPE_SYSROOT_NATIVE}::g' \
|
|
{} +
|
|
}
|
|
|
|
INSANE_SKIP_${PN} = "arch"
|
|
INSANE_SKIP_${PN}-dbg = "arch"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|