* [STABLE][PATCH] udev 124: fix the absolute soname link in libvolume for SDK
@ 2009-04-24 8:11 Denys Dmytriyenko
2009-04-24 13:50 ` Koen Kooi
0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2009-04-24 8:11 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
---
recipes/udev/udev-124/libvolume-id-soname.patch | 12 ++++++++++++
recipes/udev/udev_124.bb | 3 ++-
2 files changed, 14 insertions(+), 1 deletions(-)
create mode 100644 recipes/udev/udev-124/libvolume-id-soname.patch
diff --git a/recipes/udev/udev-124/libvolume-id-soname.patch b/recipes/udev/udev-124/libvolume-id-soname.patch
new file mode 100644
index 0000000..56365a4
--- /dev/null
+++ b/recipes/udev/udev-124/libvolume-id-soname.patch
@@ -0,0 +1,12 @@
+diff -uNr udev-124-orig/extras/volume_id/lib/Makefile udev-124/extras/volume_id/lib/Makefile
+--- udev-124-orig/extras/volume_id/lib/Makefile 2008-06-12 01:24:30.000000000 -0400
++++ udev-124/extras/volume_id/lib/Makefile 2009-01-14 23:32:42.000000000 -0500
+@@ -113,7 +113,7 @@
+ ifeq ($(libdir),$(usrlibdir))
+ ln -sf $(SHLIB) $(DESTDIR)$(usrlibdir)/libvolume_id.so
+ else
+- ln -sf $(libdir)/$(SHLIB) $(DESTDIR)$(usrlibdir)/libvolume_id.so
++ ln -sf ../..$(libdir)/$(SHLIB) $(DESTDIR)$(usrlibdir)/libvolume_id.so
+ endif
+ $(INSTALL) -d $(DESTDIR)$(usrlibdir)/pkgconfig
+ $(INSTALL_DATA) libvolume_id.pc $(DESTDIR)$(usrlibdir)/pkgconfig/libvolume_id.pc
diff --git a/recipes/udev/udev_124.bb b/recipes/udev/udev_124.bb
index 76edb2f..37dc3a7 100644
--- a/recipes/udev/udev_124.bb
+++ b/recipes/udev/udev_124.bb
@@ -2,13 +2,14 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod
/dev/, handles hotplug events and loads drivers at boot time. It replaces \
the hotplug package and requires a kernel not older than 2.6.12."
RPROVIDES_${PN} = "hotplug"
-PR = "r14"
+PR = "r15"
SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://noasmlinkage.patch;patch=1 \
file://flags.patch;patch=1 \
file://vol_id_ld.patch;patch=1 \
file://udevtrigger_add_devname_filtering.patch;patch=1 \
+ file://libvolume-id-soname.patch;patch=1 \
file://mount.blacklist \
file://run.rules \
"
--
1.6.0.6
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [STABLE][PATCH] udev 124: fix the absolute soname link in libvolume for SDK
2009-04-24 8:11 [STABLE][PATCH] udev 124: fix the absolute soname link in libvolume for SDK Denys Dmytriyenko
@ 2009-04-24 13:50 ` Koen Kooi
2009-04-24 17:39 ` Denys Dmytriyenko
0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2009-04-24 13:50 UTC (permalink / raw)
To: openembedded-devel
On 24-04-09 10:11, Denys Dmytriyenko wrote:
>
> Signed-off-by: Denys Dmytriyenko<denis@denix.org>
Looks OK to me:
Acked-by: Koen Kooi <koen@openembedded.org>
> ---
> recipes/udev/udev-124/libvolume-id-soname.patch | 12 ++++++++++++
> recipes/udev/udev_124.bb | 3 ++-
> 2 files changed, 14 insertions(+), 1 deletions(-)
> create mode 100644 recipes/udev/udev-124/libvolume-id-soname.patch
>
> diff --git a/recipes/udev/udev-124/libvolume-id-soname.patch b/recipes/udev/udev-124/libvolume-id-soname.patch
> new file mode 100644
> index 0000000..56365a4
> --- /dev/null
> +++ b/recipes/udev/udev-124/libvolume-id-soname.patch
> @@ -0,0 +1,12 @@
> +diff -uNr udev-124-orig/extras/volume_id/lib/Makefile udev-124/extras/volume_id/lib/Makefile
> +--- udev-124-orig/extras/volume_id/lib/Makefile 2008-06-12 01:24:30.000000000 -0400
> ++++ udev-124/extras/volume_id/lib/Makefile 2009-01-14 23:32:42.000000000 -0500
> +@@ -113,7 +113,7 @@
> + ifeq ($(libdir),$(usrlibdir))
> + ln -sf $(SHLIB) $(DESTDIR)$(usrlibdir)/libvolume_id.so
> + else
> +- ln -sf $(libdir)/$(SHLIB) $(DESTDIR)$(usrlibdir)/libvolume_id.so
> ++ ln -sf ../..$(libdir)/$(SHLIB) $(DESTDIR)$(usrlibdir)/libvolume_id.so
> + endif
> + $(INSTALL) -d $(DESTDIR)$(usrlibdir)/pkgconfig
> + $(INSTALL_DATA) libvolume_id.pc $(DESTDIR)$(usrlibdir)/pkgconfig/libvolume_id.pc
> diff --git a/recipes/udev/udev_124.bb b/recipes/udev/udev_124.bb
> index 76edb2f..37dc3a7 100644
> --- a/recipes/udev/udev_124.bb
> +++ b/recipes/udev/udev_124.bb
> @@ -2,13 +2,14 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod
> /dev/, handles hotplug events and loads drivers at boot time. It replaces \
> the hotplug package and requires a kernel not older than 2.6.12."
> RPROVIDES_${PN} = "hotplug"
> -PR = "r14"
> +PR = "r15"
>
> SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
> file://noasmlinkage.patch;patch=1 \
> file://flags.patch;patch=1 \
> file://vol_id_ld.patch;patch=1 \
> file://udevtrigger_add_devname_filtering.patch;patch=1 \
> + file://libvolume-id-soname.patch;patch=1 \
> file://mount.blacklist \
> file://run.rules \
> "
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [STABLE][PATCH] udev 124: fix the absolute soname link in libvolume for SDK
2009-04-24 13:50 ` Koen Kooi
@ 2009-04-24 17:39 ` Denys Dmytriyenko
2009-04-24 17:56 ` Koen Kooi
0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2009-04-24 17:39 UTC (permalink / raw)
To: openembedded-devel
On Fri, Apr 24, 2009 at 03:50:34PM +0200, Koen Kooi wrote:
> On 24-04-09 10:11, Denys Dmytriyenko wrote:
>>
>> Signed-off-by: Denys Dmytriyenko<denis@denix.org>
>
>
> Looks OK to me:
>
> Acked-by: Koen Kooi <koen@openembedded.org>
Do I need another ack?
>> ---
>> recipes/udev/udev-124/libvolume-id-soname.patch | 12 ++++++++++++
>> recipes/udev/udev_124.bb | 3 ++-
>> 2 files changed, 14 insertions(+), 1 deletions(-)
>> create mode 100644 recipes/udev/udev-124/libvolume-id-soname.patch
>>
>> diff --git a/recipes/udev/udev-124/libvolume-id-soname.patch
>> b/recipes/udev/udev-124/libvolume-id-soname.patch
>> new file mode 100644
>> index 0000000..56365a4
>> --- /dev/null
>> +++ b/recipes/udev/udev-124/libvolume-id-soname.patch
>> @@ -0,0 +1,12 @@
>> +diff -uNr udev-124-orig/extras/volume_id/lib/Makefile
>> udev-124/extras/volume_id/lib/Makefile
>> +--- udev-124-orig/extras/volume_id/lib/Makefile 2008-06-12
>> 01:24:30.000000000 -0400
>> ++++ udev-124/extras/volume_id/lib/Makefile 2009-01-14 23:32:42.000000000
>> -0500
>> +@@ -113,7 +113,7 @@
>> + ifeq ($(libdir),$(usrlibdir))
>> + ln -sf $(SHLIB) $(DESTDIR)$(usrlibdir)/libvolume_id.so
>> + else
>> +- ln -sf $(libdir)/$(SHLIB) $(DESTDIR)$(usrlibdir)/libvolume_id.so
>> ++ ln -sf ../..$(libdir)/$(SHLIB) $(DESTDIR)$(usrlibdir)/libvolume_id.so
>> + endif
>> + $(INSTALL) -d $(DESTDIR)$(usrlibdir)/pkgconfig
>> + $(INSTALL_DATA) libvolume_id.pc
>> $(DESTDIR)$(usrlibdir)/pkgconfig/libvolume_id.pc
>> diff --git a/recipes/udev/udev_124.bb b/recipes/udev/udev_124.bb
>> index 76edb2f..37dc3a7 100644
>> --- a/recipes/udev/udev_124.bb
>> +++ b/recipes/udev/udev_124.bb
>> @@ -2,13 +2,14 @@ DESCRIPTION = "udev is a daemon which dynamically
>> creates and removes device nod
>> /dev/, handles hotplug events and loads drivers at boot time. It
>> replaces \
>> the hotplug package and requires a kernel not older than 2.6.12."
>> RPROVIDES_${PN} = "hotplug"
>> -PR = "r14"
>> +PR = "r15"
>>
>> SRC_URI =
>> "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
>> file://noasmlinkage.patch;patch=1 \
>> file://flags.patch;patch=1 \
>> file://vol_id_ld.patch;patch=1 \
>> file://udevtrigger_add_devname_filtering.patch;patch=1 \
>> + file://libvolume-id-soname.patch;patch=1 \
>> file://mount.blacklist \
>> file://run.rules \
>> "
>
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [STABLE][PATCH] udev 124: fix the absolute soname link in libvolume for SDK
2009-04-24 17:39 ` Denys Dmytriyenko
@ 2009-04-24 17:56 ` Koen Kooi
2009-04-24 18:13 ` Philip Balister
0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2009-04-24 17:56 UTC (permalink / raw)
To: openembedded-devel
On 24-04-09 19:39, Denys Dmytriyenko wrote:
> On Fri, Apr 24, 2009 at 03:50:34PM +0200, Koen Kooi wrote:
>> On 24-04-09 10:11, Denys Dmytriyenko wrote:
>>>
>>> Signed-off-by: Denys Dmytriyenko<denis@denix.org>
>>
>>
>> Looks OK to me:
>>
>> Acked-by: Koen Kooi<koen@openembedded.org>
>
> Do I need another ack?
ehm, I'm not sure, let's ask Marcin :) Marcin?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [STABLE][PATCH] udev 124: fix the absolute soname link in libvolume for SDK
2009-04-24 17:56 ` Koen Kooi
@ 2009-04-24 18:13 ` Philip Balister
0 siblings, 0 replies; 5+ messages in thread
From: Philip Balister @ 2009-04-24 18:13 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 532 bytes --]
Koen Kooi wrote:
> On 24-04-09 19:39, Denys Dmytriyenko wrote:
>> On Fri, Apr 24, 2009 at 03:50:34PM +0200, Koen Kooi wrote:
>>> On 24-04-09 10:11, Denys Dmytriyenko wrote:
>>>>
>>>> Signed-off-by: Denys Dmytriyenko<denis@denix.org>
>>>
>>>
>>> Looks OK to me:
>>>
>>> Acked-by: Koen Kooi<koen@openembedded.org>
>>
>> Do I need another ack?
>
> ehm, I'm not sure, let's ask Marcin :) Marcin?
one ack is needed for none core changes:
http://wiki.openembedded.net/index.php/Stable#Dealing_with_changes
Philip
[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-04-24 18:17 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-24 8:11 [STABLE][PATCH] udev 124: fix the absolute soname link in libvolume for SDK Denys Dmytriyenko
2009-04-24 13:50 ` Koen Kooi
2009-04-24 17:39 ` Denys Dmytriyenko
2009-04-24 17:56 ` Koen Kooi
2009-04-24 18:13 ` Philip Balister
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.