* [meta-initramfs][PATCH 1/2] dracut: add 'getopt' to RDEPENDS
@ 2014-08-27 7:29 Koen Kooi
2014-08-27 7:29 ` [meta-initramfs][PATCH 2/2] dracut: update to 038 Koen Kooi
2014-08-28 7:21 ` [meta-initramfs][PATCH 1/2] dracut: add 'getopt' to RDEPENDS Khem Raj
0 siblings, 2 replies; 4+ messages in thread
From: Koen Kooi @ 2014-08-27 7:29 UTC (permalink / raw)
To: openembedded-devel; +Cc: Koen Kooi
This drags in full util-linux, a future TODO is to split up util-linux
completely in OE-core.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
meta-initramfs/recipes-devtools/dracut/dracut_git.bb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
index 945ba0f..9909a6d 100644
--- a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
+++ b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
@@ -33,7 +33,8 @@ FILES_${PN} += "${datadir}/bash-completion \
${libdir}/kernel \
"
-RDEPENDS_${PN} = "systemd findutils cpio util-linux-blkid bash ldd"
+# 'getopt' is in the util-linux main package
+RDEPENDS_${PN} = "systemd findutils cpio util-linux-blkid util-linux bash ldd"
# This could be optimized a bit, but let's avoid non-booting systems :)
RRECOMMENDS_${PN} = " \
kernel-modules \
--
1.9.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [meta-initramfs][PATCH 2/2] dracut: update to 038
2014-08-27 7:29 [meta-initramfs][PATCH 1/2] dracut: add 'getopt' to RDEPENDS Koen Kooi
@ 2014-08-27 7:29 ` Koen Kooi
2014-08-28 7:21 ` [meta-initramfs][PATCH 1/2] dracut: add 'getopt' to RDEPENDS Khem Raj
1 sibling, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2014-08-27 7:29 UTC (permalink / raw)
To: openembedded-devel; +Cc: Koen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
meta-initramfs/recipes-devtools/dracut/dracut_git.bb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
index 9909a6d..ea55a4d 100644
--- a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
+++ b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
@@ -5,10 +5,10 @@ LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
PE = "1"
-PV = "036"
+PV = "038"
-# v036 tag
-SRCREV = "d50a99c5ceeb7107f624c5d3238d37509b2217a8"
+# v038 tag
+SRCREV = "267a109a81715c8957f14659593deb7b6255d40e"
SRC_URI = "git://git.kernel.org/pub/scm/boot/dracut/dracut.git"
S = "${WORKDIR}/git"
--
1.9.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-initramfs][PATCH 1/2] dracut: add 'getopt' to RDEPENDS
2014-08-27 7:29 [meta-initramfs][PATCH 1/2] dracut: add 'getopt' to RDEPENDS Koen Kooi
2014-08-27 7:29 ` [meta-initramfs][PATCH 2/2] dracut: update to 038 Koen Kooi
@ 2014-08-28 7:21 ` Khem Raj
2014-08-28 8:04 ` Koen Kooi
1 sibling, 1 reply; 4+ messages in thread
From: Khem Raj @ 2014-08-28 7:21 UTC (permalink / raw)
To: openembedded-devel; +Cc: Koen Kooi
On 14-08-27 09:29:00, Koen Kooi wrote:
> This drags in full util-linux, a future TODO is to split up util-linux
> completely in OE-core.
>
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
> meta-initramfs/recipes-devtools/dracut/dracut_git.bb | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
> index 945ba0f..9909a6d 100644
> --- a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
> +++ b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
> @@ -33,7 +33,8 @@ FILES_${PN} += "${datadir}/bash-completion \
> ${libdir}/kernel \
> "
>
> -RDEPENDS_${PN} = "systemd findutils cpio util-linux-blkid bash ldd"
> +# 'getopt' is in the util-linux main package
> +RDEPENDS_${PN} = "systemd findutils cpio util-linux-blkid util-linux bash ldd"
Its dragging in bash too, does it really need it ? can it be enhanced
to support busybox/ash
> # This could be optimized a bit, but let's avoid non-booting systems :)
> RRECOMMENDS_${PN} = " \
> kernel-modules \
> --
> 1.9.0
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-initramfs][PATCH 1/2] dracut: add 'getopt' to RDEPENDS
2014-08-28 7:21 ` [meta-initramfs][PATCH 1/2] dracut: add 'getopt' to RDEPENDS Khem Raj
@ 2014-08-28 8:04 ` Koen Kooi
0 siblings, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2014-08-28 8:04 UTC (permalink / raw)
To: Khem Raj; +Cc: openembedded-devel
Op 28 aug. 2014, om 09:21 heeft Khem Raj <raj.khem@gmail.com> het volgende geschreven:
> On 14-08-27 09:29:00, Koen Kooi wrote:
>> This drags in full util-linux, a future TODO is to split up util-linux
>> completely in OE-core.
>>
>> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
>> ---
>> meta-initramfs/recipes-devtools/dracut/dracut_git.bb | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
>> index 945ba0f..9909a6d 100644
>> --- a/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
>> +++ b/meta-initramfs/recipes-devtools/dracut/dracut_git.bb
>> @@ -33,7 +33,8 @@ FILES_${PN} += "${datadir}/bash-completion \
>> ${libdir}/kernel \
>> "
>>
>> -RDEPENDS_${PN} = "systemd findutils cpio util-linux-blkid bash ldd"
>> +# 'getopt' is in the util-linux main package
>> +RDEPENDS_${PN} = "systemd findutils cpio util-linux-blkid util-linux bash ldd"
>
> Its dragging in bash too, does it really need it ? can it be enhanced
> to support busybox/ash
It might be, I haven't looked at it yet.
regards,
Koen
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-08-28 8:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-27 7:29 [meta-initramfs][PATCH 1/2] dracut: add 'getopt' to RDEPENDS Koen Kooi
2014-08-27 7:29 ` [meta-initramfs][PATCH 2/2] dracut: update to 038 Koen Kooi
2014-08-28 7:21 ` [meta-initramfs][PATCH 1/2] dracut: add 'getopt' to RDEPENDS Khem Raj
2014-08-28 8:04 ` Koen Kooi
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.