Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/2] udev-extraconf: drop allarch to allow setting to MACHINE_ARCH in some .bbappend
@ 2012-11-15 10:55 Martin Jansa
  2012-11-15 10:55 ` [PATCH 2/2] opkg: drop PACKAGE_ARCH setting for update-alternatives-cworth Martin Jansa
  2012-11-25 20:38 ` [PATCH 1/2] udev-extraconf: drop allarch to allow setting to MACHINE_ARCH in some .bbappend Richard Purdie
  0 siblings, 2 replies; 3+ messages in thread
From: Martin Jansa @ 2012-11-15 10:55 UTC (permalink / raw)
  To: openembedded-core

* if bsp needs some special rule for udev
* see https://bugzilla.yoctoproject.org/show_bug.cgi?id=3390 for details

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-core/udev/udev-extraconf_1.0.bb | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/meta/recipes-core/udev/udev-extraconf_1.0.bb b/meta/recipes-core/udev/udev-extraconf_1.0.bb
index 2c4a4f1..fd9a333 100644
--- a/meta/recipes-core/udev/udev-extraconf_1.0.bb
+++ b/meta/recipes-core/udev/udev-extraconf_1.0.bb
@@ -4,9 +4,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
                     file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
 
-inherit allarch
-
-PR = "r7"
+PR = "r8"
 
 SRC_URI = " \
        file://automount.rules \
-- 
1.8.0




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] opkg: drop PACKAGE_ARCH setting for update-alternatives-cworth
  2012-11-15 10:55 [PATCH 1/2] udev-extraconf: drop allarch to allow setting to MACHINE_ARCH in some .bbappend Martin Jansa
@ 2012-11-15 10:55 ` Martin Jansa
  2012-11-25 20:38 ` [PATCH 1/2] udev-extraconf: drop allarch to allow setting to MACHINE_ARCH in some .bbappend Richard Purdie
  1 sibling, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2012-11-15 10:55 UTC (permalink / raw)
  To: openembedded-core

* there is warning about update-alternatives-cworth ipk being
  overwritten in "all" feed when opkg is built for more architectures
* see https://bugzilla.yoctoproject.org/show_bug.cgi?id=3390 for details

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-devtools/opkg/opkg.inc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/opkg/opkg.inc b/meta/recipes-devtools/opkg/opkg.inc
index b3d587c..250eaa8 100644
--- a/meta/recipes-devtools/opkg/opkg.inc
+++ b/meta/recipes-devtools/opkg/opkg.inc
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
                     file://src/opkg-cl.c;beginline=1;endline=20;md5=321f658c3f6b6c832e25c8850b5dffba"
 
 PE = "1"
-INC_PR = "r10"
+INC_PR = "r11"
 
 FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/opkg"
 
@@ -36,7 +36,6 @@ RCONFLICTS_update-alternatives-cworth = "update-alternatives-dpkg"
 RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} opkg-config-base"
 RDEPENDS_${PN}_class-native = ""
 RDEPENDS_${PN}_class-nativesdk = ""
-PACKAGE_ARCH_update-alternatives-cworth = "all"
 RREPLACES_${PN} = "opkg-nogpg"
 
 PACKAGES =+ "libopkg-dev libopkg-staticdev libopkg update-alternatives-cworth"
-- 
1.8.0




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] udev-extraconf: drop allarch to allow setting to MACHINE_ARCH in some .bbappend
  2012-11-15 10:55 [PATCH 1/2] udev-extraconf: drop allarch to allow setting to MACHINE_ARCH in some .bbappend Martin Jansa
  2012-11-15 10:55 ` [PATCH 2/2] opkg: drop PACKAGE_ARCH setting for update-alternatives-cworth Martin Jansa
@ 2012-11-25 20:38 ` Richard Purdie
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Purdie @ 2012-11-25 20:38 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-core

On Thu, 2012-11-15 at 11:55 +0100, Martin Jansa wrote:
> * if bsp needs some special rule for udev
> * see https://bugzilla.yoctoproject.org/show_bug.cgi?id=3390 for details
> 
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  meta/recipes-core/udev/udev-extraconf_1.0.bb | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)

I've been thinking about this and some other related problems. There is
a pattern and we need to be able to inherit allarch but disable it's
functionality.

I've therefore just posted an alternative proposed fix for this.

Cheers,

Richard




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-11-26  9:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-15 10:55 [PATCH 1/2] udev-extraconf: drop allarch to allow setting to MACHINE_ARCH in some .bbappend Martin Jansa
2012-11-15 10:55 ` [PATCH 2/2] opkg: drop PACKAGE_ARCH setting for update-alternatives-cworth Martin Jansa
2012-11-25 20:38 ` [PATCH 1/2] udev-extraconf: drop allarch to allow setting to MACHINE_ARCH in some .bbappend Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox