diff options
author | mingli.yu@windriver.com <mingli.yu@windriver.com> | 2016-07-22 10:32:48 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-07-29 11:00:58 +0200 |
commit | 014c361d80fc4105f279b9a9976355365892d298 (patch) | |
tree | f665eba637ea6572c1c7502b84928b94e8ba7bb9 /meta-initramfs/recipes-devtools/grubby/grubby_8.40.bb | |
parent | 520610b6fa9df01c0b96d0a9eef4b1ba1eac903f (diff) | |
download | meta-openembedded-014c361d80fc4105f279b9a9976355365892d298.tar.gz |
grubby: add grubby 8.40-1
* Add grubby bb
* Rename grub2-editenv to grub-editenv as
we don't use the name grub2-editenv for grub2
* Add ptest support
* Update #!/bin/bash to #!/bin/sh in test.sh to remove
bashisms
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-initramfs/recipes-devtools/grubby/grubby_8.40.bb')
-rw-r--r-- | meta-initramfs/recipes-devtools/grubby/grubby_8.40.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-devtools/grubby/grubby_8.40.bb b/meta-initramfs/recipes-devtools/grubby/grubby_8.40.bb new file mode 100644 index 0000000000..dc6cc624f2 --- /dev/null +++ b/meta-initramfs/recipes-devtools/grubby/grubby_8.40.bb | |||
@@ -0,0 +1,38 @@ | |||
1 | SUMMARY = "A command line tool for updating and displaying info about boot loaders" | ||
2 | DESCRIPTION = "grubby is a command line tool for updating and displaying information \ | ||
3 | about the configuration files for the grub, lilo, elilo (ia64), yaboot (powerpc) and \ | ||
4 | zipl (s390) boot loaders. It is primarily designed to be used from scripts which install \ | ||
5 | new kernels and need to find information about the current boot environment. \ | ||
6 | " | ||
7 | LICENSE = "GPLv2+" | ||
8 | |||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a" | ||
10 | |||
11 | DEPENDS = "popt util-linux" | ||
12 | |||
13 | SRC_URI = "https://github.com/rhinstaller/${BPN}/archive/${PV}-1.tar.gz;downloadfilename=${BPN}-${PV}-1.tar.gz \ | ||
14 | file://grubby-rename-grub2-editenv-to-grub-editenv.patch \ | ||
15 | file://run-ptest \ | ||
16 | file://grubby-remove-bashisms-in-test.sh.patch \ | ||
17 | " | ||
18 | |||
19 | SRC_URI[md5sum] = "1005907b275d6d93368d045274537d86" | ||
20 | SRC_URI[sha256sum] = "85f1c678484f74c8978e8643451594967defce463a86c35cb1ee56d12767a9df" | ||
21 | |||
22 | S = "${WORKDIR}/${BPN}-${PV}-1" | ||
23 | |||
24 | RDEPENDS_${PN} += "dracut" | ||
25 | |||
26 | inherit autotools-brokensep ptest | ||
27 | |||
28 | EXTRA_OEMAKE = "'CC=${CC}'" | ||
29 | |||
30 | do_install_ptest() { | ||
31 | install -d ${D}${PTEST_PATH} | ||
32 | cp -r ${S}/test ${S}/test.sh ${D}${PTEST_PATH} | ||
33 | sed -i 's|./grubby|grubby|' ${D}${PTEST_PATH}/test.sh | ||
34 | } | ||
35 | |||
36 | RDEPENDS_${PN}-ptest = "util-linux-getopt" | ||
37 | |||
38 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-(linux|freebsd.*)' | ||