Openembedded Core Discussions
 help / color / mirror / Atom feed
* [for-denzil 1/3] poky.conf: add distros that work correctly
@ 2012-08-20 18:23 Matthew McClintock
  2012-08-20 18:23 ` [for-denzil 2/3] dbus.inc: disable selinux for native builds Matthew McClintock
  2012-08-20 18:23 ` [for-denzil 3/3] glib.inc: " Matthew McClintock
  0 siblings, 2 replies; 3+ messages in thread
From: Matthew McClintock @ 2012-08-20 18:23 UTC (permalink / raw)
  To: openembedded-core

All the builds pass for these distros as well

atom-pc, beagleboard, mpc8513e-rdb, routerstationpro

As well as other powerpc targets:

p1022ds, p4080ds, p5020ds, p5020ds-64b

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 meta-yocto/conf/distro/poky.conf |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf
index 6107993..e89697c 100644
--- a/meta-yocto/conf/distro/poky.conf
+++ b/meta-yocto/conf/distro/poky.conf
@@ -70,11 +70,13 @@ SANITY_TESTED_DISTROS ?= " \
             Ubuntu 10.04.4 LTS \n \
             Ubuntu 11.10 \n \
             Ubuntu 12.04 LTS \n \
+            Fedora release 13 (Goddard) \n \
             Fedora release 15 (Lovelock) \n \
             Fedora release 16 (Verne) \n \
             Fedora release 17 (Beefy Miracle) \n \
             CentOS release 5.6 (Final) \n \
             CentOS release 5.7 (Final) \n \
+            CentOS release 5.8 (Final) \n \
             CentOS release 6.2 (Final) \n \
             Debian GNU/Linux 6.0.4 (squeeze) \n \
             openSUSE 11.4 \n \
-- 
1.7.9.7





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

* [for-denzil 2/3] dbus.inc: disable selinux for native builds
  2012-08-20 18:23 [for-denzil 1/3] poky.conf: add distros that work correctly Matthew McClintock
@ 2012-08-20 18:23 ` Matthew McClintock
  2012-08-20 18:23 ` [for-denzil 3/3] glib.inc: " Matthew McClintock
  1 sibling, 0 replies; 3+ messages in thread
From: Matthew McClintock @ 2012-08-20 18:23 UTC (permalink / raw)
  To: openembedded-core

(Note: Upstream master has disabled selinux for this AFAICT)

Fixes issues such as:

| /usr/bin/ld: cannot find -lselinux
| collect2: ld returned 1 exit status
| make[3]: *** [libdbus-glib-1.la] Error 1

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 meta/recipes-core/dbus/dbus.inc |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc
index a75583d..e9e287b 100644
--- a/meta/recipes-core/dbus/dbus.inc
+++ b/meta/recipes-core/dbus/dbus.inc
@@ -10,7 +10,7 @@ DEPENDS = "expat virtual/libintl ${@base_contains('DISTRO_FEATURES', 'x11', '${X
 DEPENDS_virtclass-native = "expat-native virtual/libintl-native"
 DEPENDS_virtclass-nativesdk = "expat-nativesdk virtual/libintl-nativesdk virtual/libx11"
 
-INC_PR = "r3"
+INC_PR = "r4"
 
 SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \
            file://tmpdir.patch; \
@@ -70,6 +70,8 @@ EXTRA_OECONF = "--disable-tests \
                 --with-systemdsystemunitdir=${systemd_unitdir}/system/ \
                 ${EXTRA_OECONF_X}"
 
+EXTRA_OECONF_append_virtclass-native = " --disable-selinux"
+
 do_install() {
 	autotools_do_install
 
-- 
1.7.9.7





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

* [for-denzil 3/3] glib.inc: disable selinux for native builds
  2012-08-20 18:23 [for-denzil 1/3] poky.conf: add distros that work correctly Matthew McClintock
  2012-08-20 18:23 ` [for-denzil 2/3] dbus.inc: disable selinux for native builds Matthew McClintock
@ 2012-08-20 18:23 ` Matthew McClintock
  1 sibling, 0 replies; 3+ messages in thread
From: Matthew McClintock @ 2012-08-20 18:23 UTC (permalink / raw)
  To: openembedded-core

In addition to dbus, we also need to disable selinux for glib as well
otherwise we will get the same link error

(Note: Upstream master has disabled selinux AFAICT)

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 meta/recipes-core/dbus/dbus-glib_0.98.bb      |    2 +-
 meta/recipes-core/glib-2.0/glib-2.0_2.30.3.bb |    2 +-
 meta/recipes-core/glib-2.0/glib.inc           |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-core/dbus/dbus-glib_0.98.bb b/meta/recipes-core/dbus/dbus-glib_0.98.bb
index bd9389a..e2c6a0c 100644
--- a/meta/recipes-core/dbus/dbus-glib_0.98.bb
+++ b/meta/recipes-core/dbus/dbus-glib_0.98.bb
@@ -1,6 +1,6 @@
 require dbus-glib.inc
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI[md5sum] = "3f7f117dc7c8d899d9acfdcbf9253fb8"
 SRC_URI[sha256sum] = "297c81d6bb8b1c312e9b0ccfe91eb28ec0672756abb64dfb7bbe2b5f1ae5d111"
diff --git a/meta/recipes-core/glib-2.0/glib-2.0_2.30.3.bb b/meta/recipes-core/glib-2.0/glib-2.0_2.30.3.bb
index f1f9217..81037a4 100644
--- a/meta/recipes-core/glib-2.0/glib-2.0_2.30.3.bb
+++ b/meta/recipes-core/glib-2.0/glib-2.0_2.30.3.bb
@@ -1,6 +1,6 @@
 require glib.inc
 
-PR = "r1"
+PR = "r2"
 PE = "1"
 
 DEPENDS += "libffi python-argparse-native zlib"
diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc
index 835743a..8eda116 100644
--- a/meta/recipes-core/glib-2.0/glib.inc
+++ b/meta/recipes-core/glib-2.0/glib.inc
@@ -26,7 +26,7 @@ inherit autotools pkgconfig gettext
 S = "${WORKDIR}/glib-${PV}"
 
 EXTRA_OECONF = "--disable-debug --enable-included-printf=no --disable-dtrace --disable-fam"
-EXTRA_OECONF_virtclass-native = "--disable-dtrace --disable-systemtap --disable-fam"
+EXTRA_OECONF_virtclass-native = "--disable-dtrace --disable-systemtap --disable-fam --disable-selinux"
 EXTRA_OECONF_linuxstdbase = "--enable-included-printf=no --disable-dtrace --disable-fam"
 
 FILES_${PN} = "${libdir}/lib*${SOLIBS} ${sysconfdir}/bash_completion.d ${datadir}/glib-2.0/schemas"
-- 
1.7.9.7





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

end of thread, other threads:[~2012-08-20 18:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-20 18:23 [for-denzil 1/3] poky.conf: add distros that work correctly Matthew McClintock
2012-08-20 18:23 ` [for-denzil 2/3] dbus.inc: disable selinux for native builds Matthew McClintock
2012-08-20 18:23 ` [for-denzil 3/3] glib.inc: " Matthew McClintock

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