summaryrefslogtreecommitdiffstats
path: root/meta-initramfs
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2023-01-03 17:02:22 +0800
committerKhem Raj <raj.khem@gmail.com>2023-01-04 15:33:58 -0800
commitfedeaadbc9c579c9e31183cc01dd72e28a022df7 (patch)
tree093981dd84a361f57dd41bf7a27f8812fef36f1a /meta-initramfs
parenteefad4d27a4578e56bc686b6aa0306e4ec5491c0 (diff)
downloadmeta-openembedded-fedeaadbc9c579c9e31183cc01dd72e28a022df7.tar.gz
grubby: drop version 8.40
This version is obsolete. Drop it and only keep the git version. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-initramfs')
-rw-r--r--meta-initramfs/recipes-devtools/grubby/grubby_8.40.bb41
1 files changed, 0 insertions, 41 deletions
diff --git a/meta-initramfs/recipes-devtools/grubby/grubby_8.40.bb b/meta-initramfs/recipes-devtools/grubby/grubby_8.40.bb
deleted file mode 100644
index 307c0e85d..000000000
--- a/meta-initramfs/recipes-devtools/grubby/grubby_8.40.bb
+++ /dev/null
@@ -1,41 +0,0 @@
1SUMMARY = "A command line tool for updating and displaying info about boot loaders"
2DESCRIPTION = "grubby is a command line tool for updating and displaying information \
3about the configuration files for the grub, lilo, elilo (ia64), yaboot (powerpc) and \
4zipl (s390) boot loaders. It is primarily designed to be used from scripts which install \
5new kernels and need to find information about the current boot environment. \
6"
7HOMEPAGE = "https://github.com/rhboot/grubby"
8LICENSE = "GPL-2.0-or-later"
9
10LIC_FILES_CHKSUM = "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a"
11
12DEPENDS = "popt util-linux"
13DEPENDS:append:libc-musl = " libexecinfo"
14
15S = "${WORKDIR}/git"
16SRCREV = "79c5cfa02c567efdc5bb18cdd584789e2e35aa23"
17SRC_URI = "git://github.com/rhboot/grubby.git;protocol=https;;branch=master \
18 file://grubby-rename-grub2-editenv-to-grub-editenv.patch \
19 file://run-ptest \
20 file://0001-Add-another-variable-LIBS-to-provides-libraries-from.patch \
21 file://0002-include-paths.h-for-_PATH_MOUNTED.patch \
22 "
23
24RDEPENDS:${PN} += "dracut"
25
26inherit autotools-brokensep ptest
27
28EXTRA_OEMAKE = "-e 'CC=${CC}' 'LDFLAGS=${LDFLAGS}' LIBS='${LIBS}'"
29
30LIBS:libc-musl = "-lexecinfo"
31LIBS ?= ""
32do_install_ptest() {
33 install -d ${D}${PTEST_PATH}
34 cp -r ${S}/test ${S}/test.sh ${D}${PTEST_PATH}
35 sed -i 's|./grubby|grubby|' ${D}${PTEST_PATH}/test.sh
36}
37
38RDEPENDS:${PN} += "bash"
39RDEPENDS:${PN}-ptest = "util-linux-getopt bash"
40
41COMPATIBLE_HOST = '(x86_64.*|i.86.*)-(linux|freebsd.*)'