summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Bénard <eric@eukrea.com>2012-08-13 10:40:53 +0200
committerEric Bénard <eric@eukrea.com>2012-08-13 10:40:53 +0200
commit6e434777018b81bbd7873e7278f05425de18558a (patch)
tree48242bcd4ffefbfd6d2e683207e1059c6285d16f
parent568b98668fdf11b17839e20cb917922b7d51acce (diff)
parentbb03e3f1817fb6d61b1e5952274389ee6f9bbb0d (diff)
downloadmeta-openembedded-6e434777018b81bbd7873e7278f05425de18558a.tar.gz
Merge branch 'denzil-next' into denzil
-rw-r--r--meta-oe/recipes-core/systemd/systemd/var-run.conf4
-rw-r--r--meta-oe/recipes-core/systemd/systemd_git.bb5
-rw-r--r--meta-oe/recipes-devtools/ltrace/ltrace_0.5.3.bb4
-rw-r--r--meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0005-add-XWindowManager-Xsession.d-script.patch17
-rw-r--r--meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb2
-rw-r--r--meta-oe/recipes-support/cramfs/cramfs_cvs.bb3
6 files changed, 20 insertions, 15 deletions
diff --git a/meta-oe/recipes-core/systemd/systemd/var-run.conf b/meta-oe/recipes-core/systemd/systemd/var-run.conf
new file mode 100644
index 000000000..c2c18e2b9
--- /dev/null
+++ b/meta-oe/recipes-core/systemd/systemd/var-run.conf
@@ -0,0 +1,4 @@
1# empty /var/run
2R /var/run/* - - - - -
3# systemd-update-utmp-runlevel.service fails to start without this
4f /var/run/utmp 0644 root root - -
diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
index f4ca72a12..b9c8a190c 100644
--- a/meta-oe/recipes-core/systemd/systemd_git.bb
+++ b/meta-oe/recipes-core/systemd/systemd_git.bb
@@ -14,7 +14,7 @@ inherit gitpkgv
14PKGV = "v${GITPKGVTAG}" 14PKGV = "v${GITPKGVTAG}"
15 15
16PV = "git" 16PV = "git"
17PR = "r27" 17PR = "r28"
18 18
19inherit useradd pkgconfig autotools vala perlnative 19inherit useradd pkgconfig autotools vala perlnative
20 20
@@ -22,6 +22,7 @@ SRCREV = "3eff4208ffecedd778fec260f0d4b18e94dab443"
22 22
23SRC_URI = "git://anongit.freedesktop.org/systemd/systemd;protocol=git \ 23SRC_URI = "git://anongit.freedesktop.org/systemd/systemd;protocol=git \
24 ${UCLIBCPATCHES} \ 24 ${UCLIBCPATCHES} \
25 file://var-run.conf \
25 " 26 "
26UCLIBCPATCHES = "" 27UCLIBCPATCHES = ""
27UCLIBCPATCHES_libc-uclibc = "file://paper-over-mkostemp.patch \ 28UCLIBCPATCHES_libc-uclibc = "file://paper-over-mkostemp.patch \
@@ -68,6 +69,8 @@ do_install() {
68 # create machine-id 69 # create machine-id
69 # 20:12 < mezcalero> koen: you have three options: a) run systemd-machine-id-setup at install time, b) have / read-only and an empty file there (for stateless) and c) boot with / writable 70 # 20:12 < mezcalero> koen: you have three options: a) run systemd-machine-id-setup at install time, b) have / read-only and an empty file there (for stateless) and c) boot with / writable
70 touch ${D}${sysconfdir}/machine-id 71 touch ${D}${sysconfdir}/machine-id
72
73 install -m 0644 ${WORKDIR}/var-run.conf ${D}${sysconfdir}/tmpfiles.d/
71} 74}
72 75
73python populate_packages_prepend (){ 76python populate_packages_prepend (){
diff --git a/meta-oe/recipes-devtools/ltrace/ltrace_0.5.3.bb b/meta-oe/recipes-devtools/ltrace/ltrace_0.5.3.bb
index 109bf82fa..9fd423fe9 100644
--- a/meta-oe/recipes-devtools/ltrace/ltrace_0.5.3.bb
+++ b/meta-oe/recipes-devtools/ltrace/ltrace_0.5.3.bb
@@ -5,7 +5,7 @@ DEPENDS = "elfutils binutils"
5LICENSE = "GPLv2" 5LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" 6LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
7 7
8PR = "r4" 8PR = "r5"
9 9
10# ltrace is not ported to sh3/sh4 targets at this time 10# ltrace is not ported to sh3/sh4 targets at this time
11COMPATIBLE_TARGET_SYS = "(?!sh[34])" 11COMPATIBLE_TARGET_SYS = "(?!sh[34])"
@@ -52,7 +52,7 @@ do_compile() {
52 sparc*) LTRACE_ARCH=sparc ;; 52 sparc*) LTRACE_ARCH=sparc ;;
53 x86_64*) LTRACE_ARCH=x86_64 ;; 53 x86_64*) LTRACE_ARCH=x86_64 ;;
54 esac 54 esac
55 oe_runmake LDFLAGS=${TARGET_LDFLAGS} LIBS="-lsupc++ -liberty -Wl,-Bstatic -lelf -Wl,-Bdynamic" ${EXTRA_OEMAKE} ARCH=${LTRACE_ARCH} 55 oe_runmake LDFLAGS="${TARGET_LDFLAGS}" LIBS="-lsupc++ -liberty -Wl,-Bstatic -lelf -Wl,-Bdynamic" ${EXTRA_OEMAKE} ARCH=${LTRACE_ARCH}
56} 56}
57 57
58do_install() { 58do_install() {
diff --git a/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0005-add-XWindowManager-Xsession.d-script.patch b/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0005-add-XWindowManager-Xsession.d-script.patch
index f5c2c786d..1782665b2 100644
--- a/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0005-add-XWindowManager-Xsession.d-script.patch
+++ b/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0005-add-XWindowManager-Xsession.d-script.patch
@@ -9,18 +9,15 @@ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
9 1 files changed, 6 insertions(+), 0 deletions(-) 9 1 files changed, 6 insertions(+), 0 deletions(-)
10 create mode 100644 X11/Xsession.d/90xXWindowManager 10 create mode 100644 X11/Xsession.d/90xXWindowManager
11 11
12diff --git a/X11/Xsession.d/90xXWindowManager b/X11/Xsession.d/90xXWindowManager 12Index: xserver-common-1.34/X11/Xsession.d/90xXWindowManager
13new file mode 100644 13===================================================================
14index 0000000..3df8435 14--- /dev/null 1970-01-01 00:00:00.000000000 +0000
15--- /dev/null 15+++ xserver-common-1.34/X11/Xsession.d/90xXWindowManager 2012-06-28 15:02:22.010521773 +0200
16+++ b/X11/Xsession.d/90xXWindowManager 16@@ -0,0 +1,7 @@
17@@ -0,0 +1,6 @@
18+#!/bin/sh
19+if [ -x $HOME/.Xsession ]; then 17+if [ -x $HOME/.Xsession ]; then
20+ exec $HOME/.Xsession 18+ exec $HOME/.Xsession
19+elif [ -x /usr/bin/x-session-manager ]; then
20+ exec /usr/bin/x-session-manager
21+else 21+else
22+ exec /usr/bin/x-window-manager 22+ exec /usr/bin/x-window-manager
23+fi 23+fi
24--
251.7.8.5
26
diff --git a/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb b/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb
index 1147fca30..a7e81917f 100644
--- a/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb
+++ b/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "Common X11 scripts and support files"
2LICENSE = "GPLv2" 2LICENSE = "GPLv2"
3LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" 3LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
4 4
5PR = "r6" 5PR = "r7"
6 6
7# we are using a gpe-style Makefile 7# we are using a gpe-style Makefile
8inherit gpe 8inherit gpe
diff --git a/meta-oe/recipes-support/cramfs/cramfs_cvs.bb b/meta-oe/recipes-support/cramfs/cramfs_cvs.bb
index 667097c86..d9b6c0638 100644
--- a/meta-oe/recipes-support/cramfs/cramfs_cvs.bb
+++ b/meta-oe/recipes-support/cramfs/cramfs_cvs.bb
@@ -4,6 +4,7 @@ LIC_FILES_CHKSUM = "file://${WORKDIR}/linux/COPYING;md5=9579385572eb40eded61dcb0
4DEPENDS = "zlib" 4DEPENDS = "zlib"
5SRCDATE = "20110110" 5SRCDATE = "20110110"
6PV = "1.1+cvs${SRCDATE}" 6PV = "1.1+cvs${SRCDATE}"
7PR = "r1"
7 8
8SRC_URI = "cvs://anonymous@cramfs.cvs.sourceforge.net/cvsroot/cramfs;module=linux" 9SRC_URI = "cvs://anonymous@cramfs.cvs.sourceforge.net/cvsroot/cramfs;module=linux"
9S = "${WORKDIR}/linux/scripts/cramfs" 10S = "${WORKDIR}/linux/scripts/cramfs"
@@ -16,7 +17,7 @@ EXTRA_OEMAKE = "\
16 17
17 18
18do_compile_prepend() { 19do_compile_prepend() {
19 ln -s GNUmakefile Makefile 20 ln -sf GNUmakefile Makefile
20} 21}
21 22
22do_install() { 23do_install() {