summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/grub/grub_2.04.bb
diff options
context:
space:
mode:
authorNaveen Saini <naveen.kumar.saini@intel.com>2021-03-19 15:14:33 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-20 18:50:05 +0000
commit36a59d63619c2225fe48aa1d8fb1cdabedfffc03 (patch)
tree6dba0bc201c2ff5b75eddc261f6b8cfa1e73e05c /meta/recipes-bsp/grub/grub_2.04.bb
parent590398080e81fb5e2f81e12b8900858837dfe25f (diff)
downloadopenembedded-core-contrib-36a59d63619c2225fe48aa1d8fb1cdabedfffc03.tar.gz
grub: upgrade 2.04 -> 2.06~rc1
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. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/grub/grub_2.04.bb')
-rw-r--r--meta/recipes-bsp/grub/grub_2.04.bb41
1 files changed, 0 insertions, 41 deletions
diff --git a/meta/recipes-bsp/grub/grub_2.04.bb b/meta/recipes-bsp/grub/grub_2.04.bb
deleted file mode 100644
index d4e09faa40..0000000000
--- a/meta/recipes-bsp/grub/grub_2.04.bb
+++ /dev/null
@@ -1,41 +0,0 @@
-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"