mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
grubby: update to latest
This project doesn't seem to produce regular releases as they once did, the last such release (8.40-1) was in 2015 (over 3 years ago at this point). Therefore switch to building the latest git commit. Also, refresh the patches as required (used devtool --force-patch-refresh). Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
parent
e3812fa4ad
commit
9b08b7af9e
|
|
@ -1,26 +1,24 @@
|
|||
From 22afaa21b4b258082be591e54c99e1ba6fbd7748 Mon Sep 17 00:00:00 2001
|
||||
From b7b3caa9b5c8abcd3c371d0683001cd681e104b3 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sat, 15 Jul 2017 10:19:22 -0700
|
||||
Subject: [PATCH 1/2] Add another variable LIBS to provides libraries from env
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
|
||||
---
|
||||
Makefile | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index ac14404..92a8e73 100644
|
||||
index cc7e823..ae30a07 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -27,7 +27,7 @@ RPM_OPT_FLAGS ?= -O2 -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector
|
||||
CFLAGS += $(RPM_OPT_FLAGS) -std=gnu99 -Wall -Werror -Wno-error=unused-function -Wno-unused-function -ggdb
|
||||
LDFLAGS :=
|
||||
@@ -31,7 +31,7 @@ ifneq ($(VERBOSE_TEST),)
|
||||
VERBOSE_TEST="--verbose"
|
||||
endif
|
||||
|
||||
-grubby_LIBS = -lblkid -lpopt
|
||||
+grubby_LIBS = -lblkid -lpopt ${LIBS}
|
||||
|
||||
all: grubby
|
||||
|
||||
--
|
||||
2.13.3
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
From 0841706a5b5280e501c8e392c70c466c5fbcf0aa Mon Sep 17 00:00:00 2001
|
||||
From 15f0572f2f456c2c1b700bc790d9ce7a5c13cc74 Mon Sep 17 00:00:00 2001
|
||||
From: Jackie Huang <jackie.huang@windriver.com>
|
||||
Date: Tue, 4 Aug 2015 23:54:41 -0700
|
||||
Subject: [PATCH] rename grub2-editenv to grub-editenv
|
||||
|
|
@ -8,38 +8,48 @@ We don't use the name grub2-editenv for grub2.
|
|||
Upstream-Status: Inappropriate
|
||||
|
||||
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
|
||||
|
||||
---
|
||||
grubby.c | 4 ++--
|
||||
test.sh | 6 +++---
|
||||
2 files changed, 5 insertions(+), 5 deletions(-)
|
||||
test.sh | 8 ++++----
|
||||
2 files changed, 6 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/grubby.c b/grubby.c
|
||||
index d4ebb86..47a1a15 100644
|
||||
index 396041a..3ceae69 100644
|
||||
--- a/grubby.c
|
||||
+++ b/grubby.c
|
||||
@@ -290,7 +290,7 @@ static char *grub2GetEnv(struct configFileInfo *info, char *name)
|
||||
char *s = NULL;
|
||||
char *ret = NULL;
|
||||
char *envFile = info->envFile ? info->envFile : "/boot/grub2/grubenv";
|
||||
- int rc = asprintf(&s, "grub2-editenv %s list | grep '^%s='", envFile, name);
|
||||
+ int rc = asprintf(&s, "grub-editenv %s list | grep '^%s='", envFile, name);
|
||||
@@ -301,7 +301,7 @@ static char *grub2GetEnv(struct configFileInfo *info, char *name)
|
||||
char *ret = NULL;
|
||||
char *envFile = info->envFile ? info->envFile : "/boot/grub2/grubenv";
|
||||
int rc =
|
||||
- asprintf(&s, "grub2-editenv %s list | grep '^%s='", envFile, name);
|
||||
+ asprintf(&s, "grub-editenv %s list | grep '^%s='", envFile, name);
|
||||
|
||||
if (rc < 0)
|
||||
return NULL;
|
||||
@@ -361,7 +361,7 @@ static int grub2SetEnv(struct configFileInfo *info, char *name, char *value)
|
||||
if (!value)
|
||||
return -1;
|
||||
if (rc < 0)
|
||||
return NULL;
|
||||
@@ -373,7 +373,7 @@ static int grub2SetEnv(struct configFileInfo *info, char *name, char *value)
|
||||
if (!value)
|
||||
return -1;
|
||||
|
||||
- rc = asprintf(&s, "grub2-editenv %s set '%s=%s'", envFile, name, value);
|
||||
+ rc = asprintf(&s, "grub-editenv %s set '%s=%s'", envFile, name, value);
|
||||
free(value);
|
||||
if (rc <0)
|
||||
return -1;
|
||||
- rc = asprintf(&s, "grub2-editenv %s set '%s=%s'", envFile, name, value);
|
||||
+ rc = asprintf(&s, "grub-editenv %s set '%s=%s'", envFile, name, value);
|
||||
free(value);
|
||||
if (rc < 0)
|
||||
return -1;
|
||||
diff --git a/test.sh b/test.sh
|
||||
index 6379698..f738388 100755
|
||||
index 33d24cf..009479c 100755
|
||||
--- a/test.sh
|
||||
+++ b/test.sh
|
||||
@@ -574,7 +574,7 @@ if [ "$testgrub2" == "y" ]; then
|
||||
@@ -573,7 +573,7 @@ if [ "$testgrub2" == "y" ]; then
|
||||
--remove-kernel=/boot/vmlinuz-2.6.38.2-9.fc15.x86_64 \
|
||||
--boot-filesystem=/boot/
|
||||
commandTest "saved_default output" \
|
||||
- "grub2-editenv test/grub2-support_files/env_temp list" \
|
||||
+ "grub-editenv test/grub2-support_files/env_temp list" \
|
||||
"saved_entry=Linux, with Fedora 2.6.38.8-32.fc15.x86_64"
|
||||
|
||||
# copy a stanza and add arguments as well, while using --set-index=
|
||||
@@ -627,7 +627,7 @@ if [ "$testgrub2" == "y" ]; then
|
||||
--title='title' --initrd=/boot/new-initrd --boot-filesystem=/boot/ \
|
||||
--copy-default
|
||||
commandTest "saved_default output" \
|
||||
|
|
@ -48,7 +58,7 @@ index 6379698..f738388 100755
|
|||
"saved_entry=Linux, with Fedora 2.6.38.8-32.fc15.x86_64"
|
||||
|
||||
testing="GRUB2 add kernel with default=saved_entry and a terrible title"
|
||||
@@ -587,13 +587,13 @@ if [ "$testgrub2" == "y" ]; then
|
||||
@@ -640,13 +640,13 @@ if [ "$testgrub2" == "y" ]; then
|
||||
testing="GRUB2 set default with default=saved_entry and a terrible name"
|
||||
grub2Test grub2.9 add/g2-1.9 --env grubenv.1 --set-default-index=0
|
||||
commandTest "saved_default output" \
|
||||
|
|
@ -64,6 +74,3 @@ index 6379698..f738388 100755
|
|||
"saved_entry=title"
|
||||
|
||||
testing="GRUB2 --default-index with default=saved_entry"
|
||||
--
|
||||
2.3.5
|
||||
|
||||
|
|
|
|||
40
meta-initramfs/recipes-devtools/grubby/grubby_git.bb
Normal file
40
meta-initramfs/recipes-devtools/grubby/grubby_git.bb
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
SUMMARY = "A command line tool for updating and displaying info about boot loaders"
|
||||
DESCRIPTION = "grubby is a command line tool for updating and displaying information \
|
||||
about the configuration files for the grub, lilo, elilo (ia64), yaboot (powerpc) and \
|
||||
zipl (s390) boot loaders. It is primarily designed to be used from scripts which install \
|
||||
new kernels and need to find information about the current boot environment. \
|
||||
"
|
||||
HOMEPAGE = "https://github.com/rhboot/grubby"
|
||||
LICENSE = "GPLv2+"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a"
|
||||
|
||||
DEPENDS = "popt util-linux"
|
||||
DEPENDS_append_libc-musl = " libexecinfo"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
SRCREV = "a1d2ae93408c3408e672d7eba4550fdf27fb0201"
|
||||
SRC_URI = "git://github.com/rhboot/grubby.git;protocol=https; \
|
||||
file://grubby-rename-grub2-editenv-to-grub-editenv.patch \
|
||||
file://run-ptest \
|
||||
file://0001-Add-another-variable-LIBS-to-provides-libraries-from.patch \
|
||||
file://0002-include-paths.h-for-_PATH_MOUNTED.patch \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN} += "dracut"
|
||||
|
||||
inherit autotools-brokensep ptest
|
||||
|
||||
EXTRA_OEMAKE = "-e 'CC=${CC}' 'LDFLAGS=${LDFLAGS}' LIBS='${LIBS}'"
|
||||
|
||||
LIBS_libc-musl = "-lexecinfo"
|
||||
LIBS ?= ""
|
||||
do_install_ptest() {
|
||||
install -d ${D}${PTEST_PATH}
|
||||
cp -r ${S}/test ${S}/test.sh ${D}${PTEST_PATH}
|
||||
sed -i 's|./grubby|grubby|' ${D}${PTEST_PATH}/test.sh
|
||||
}
|
||||
|
||||
RDEPENDS_${PN}-ptest = "util-linux-getopt bash"
|
||||
|
||||
COMPATIBLE_HOST = '(x86_64.*|i.86.*)-(linux|freebsd.*)'
|
||||
Loading…
Reference in New Issue
Block a user