Re: [oe] [meta-oe][v2] 00/22] systemd rework

2012-02-23 Thread Andreas Müller
On Mon, Feb 20, 2012 at 1:40 PM, Martin Jansa martin.ja...@gmail.com wrote: On Thu, Feb 16, 2012 at 03:02:54AM +0100, Andreas Müller wrote: V1 - V2: [2]  do not check configuration variables for cross and nativesdk [3]  rename systemd_package to systemd_generate_package_scripts [6]  parse

[oe] ELC Videos

2012-02-23 Thread Eric Bénard
Hi, ELC videos are available here : http://video.linux.com/categories/2012-embedded-linux-conference 2 (at least) are about OE Yocto : Khem OpenEmbedded - A Layered Approach : http://video.linux.com/videos/openembedded-a-layered-approach Saul Yocto Project Update :

Re: [oe] [meta-oe][v2] 00/22] systemd rework

2012-02-23 Thread Martin Jansa
On Thu, Feb 23, 2012 at 09:26:50AM +0100, Andreas Müller wrote: On Mon, Feb 20, 2012 at 1:40 PM, Martin Jansa martin.ja...@gmail.com wrote: On Thu, Feb 16, 2012 at 03:02:54AM +0100, Andreas Müller wrote: V1 - V2: [2]  do not check configuration variables for cross and nativesdk [3]  

Re: [oe] [meta-handheld][PATCH] linux_3.2: update from 3.2.1 to 3.2.7

2012-02-23 Thread Andrea Adami
On Thu, Feb 23, 2012 at 7:36 AM, Martin Jansa martin.ja...@gmail.com wrote: On Wed, Feb 22, 2012 at 11:28:08PM +0100, Andrea Adami wrote: * apply latest patchset * bump INC_PR Looking at this commit and almost the same in meta-initramfs, why haven't you moved linux-3.2.inc to meta-initramfs

Re: [oe] gcc-cross-initial patching fails

2012-02-23 Thread Andreas Müller
On Wed, Feb 22, 2012 at 10:39 PM, Andreas Müller schnitzelt...@googlemail.com wrote: On Wed, Feb 22, 2012 at 10:18 PM, Khem Raj raj.k...@gmail.com wrote: On Wed, Feb 22, 2012 at 12:15 PM, McClintock Matthew-B29882 b29...@freescale.com wrote: Applying patch gcc45-no-add-needed.patch patching

[oe] [meta-oe V3 05/23] systemd.bbclass: automatically create packages set in SYSTEMD_PACKAGES

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- meta-oe/classes/systemd.bbclass |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/meta-oe/classes/systemd.bbclass b/meta-oe/classes/systemd.bbclass index

[oe] [meta-oe V3 07/23] systemd.bbclass: run code in populate_packages_prepend only if ${D} exists

2012-02-23 Thread Andreas Müller
All further manipulations need to be performed only once. This modication avoids unwanted behaviour when inheriting rm_work.bbclass [1] [1] http://lists.linuxtogo.org/pipermail/openembedded-devel/2012-February/038067.html Signed-off-by: Andreas Müller schnitzelt...@googlemail.com ---

[oe] [meta-oe V3 06/23] systemd.bbclass: automatically install all *.service and *.socket supplied in recipe's SRC_URI

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- meta-oe/classes/systemd.bbclass | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/meta-oe/classes/systemd.bbclass b/meta-oe/classes/systemd.bbclass index e779bef..b2d4191 100644 ---

[oe] [meta-oe V3 11/23] dropbear: remove unneeded systemd code / use ${systemd_unitdir}

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- .../dropbear/dropbear_2011.54.bbappend | 13 ++--- 1 files changed, 2 insertions(+), 11 deletions(-) diff --git a/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend

[oe] [meta-oe V3 14/23] cronie: remove unneeded systemd code

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- .../recipes-extended/cronie/cronie_1.4.8.bbappend | 12 +--- 1 files changed, 1 insertions(+), 11 deletions(-) diff --git

[oe] [meta-oe V3 10/23] connman: remove unneeded systemd code / use ${systemd_unitdir}

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- .../connman/connman_0.78.bbappend |9 ++--- 1 files changed, 2 insertions(+), 7 deletions(-) diff --git a/meta-oe/recipes-connectivity/connman/connman_0.78.bbappend

[oe] [meta-oe V3 08/23] systemd.bbclass: automatically extend FILES_* for systemd packages

2012-02-23 Thread Andreas Müller
* Add files found in SYSTEMD_SERVICE and add service files referenced by 'Also=' (and 'Conflicts=' in case of one service for links to /dev/null) recursively. * For *.socket files the corresponding '*.service' and '*@.service are packed * In case a file set in SYSTEMD_SERVICE does not exist,

[oe] [meta-oe V3 12/23] openssh: remove unneeded systemd code

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- .../openssh/openssh_5.9p1.bbappend | 14 +- 1 files changed, 1 insertions(+), 13 deletions(-) diff --git

[oe] [meta-oe V3 03/23] systemd.bbclass: enhance checks for SYSTEMD_PACKAGES and SYSTEMD_SERVICE

2012-02-23 Thread Andreas Müller
after recipe parsing the following plausibilities are checked: * ERROR if empty SYSTEMD_PACKAGES * ERROR if SYSTEMD_PACKAGES entry does not contain '-systemd' AND package_name != ${PN} * ERROR if SYSTEMD_PACKAGES entry contains '-systemd' but entry without '-systemd' (base pkg) does not exist

[oe] [meta-oe V3 02/23] systemd.bbclass: introduce systemd_unitdir

2012-02-23 Thread Andreas Müller
Follow suggestion in [1] [1] http://lists.linuxtogo.org/pipermail/openembedded-devel/2012-February/038018.html Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- meta-oe/classes/systemd.bbclass |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git

[oe] [meta-oe V3 13/23] elsa: remove unneeded systemd code

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- meta-efl/recipes-efl/efl/elsa_svn.bb | 11 +-- 1 files changed, 1 insertions(+), 10 deletions(-) diff --git a/meta-efl/recipes-efl/efl/elsa_svn.bb

[oe] [meta-oe V3 00/23] systemd rework

2012-02-23 Thread Andreas Müller
V1 - V2: [2] do not check configuration variables for cross and nativesdk [3] rename systemd_package to systemd_generate_package_scripts [6] parse unit files to determine the files to pack [7] create warning if *-systemd package already rdepends it's base package added in V2: [8]-[20]

[oe] [meta-oe V3 15/23] xserver-nodm-init: remove unneeded systemd code

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- .../xserver-nodm-init/xserver-nodm-init_2.0.bb |9 + 1 files changed, 1 insertions(+), 8 deletions(-) diff --git a/meta-oe/recipes-graphics/xserver-nodm-init/xserver-nodm-init_2.0.bb

[oe] [meta-oe V3 01/23] systemd-systemctl-native: add multiple services support

2012-02-23 Thread Andreas Müller
Thanks to Otavio Salvador for helping hint [1] [1] http://lists.linuxtogo.org/pipermail/openembedded-devel/2012-February/037856.html Signed-off-by: Andreas Müller schnitzelt...@googlemail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- .../systemd/systemd-systemctl-native/systemctl

[oe] [meta-oe V3 04/23] systemd.bbclass: cosmetics

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- meta-oe/classes/systemd.bbclass | 15 +++ 1 files changed, 7 insertions(+), 8 deletions(-) diff --git a/meta-oe/classes/systemd.bbclass b/meta-oe/classes/systemd.bbclass

[oe] [meta-oe V3 17/23] udisks: remove unneeded systemd code

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- meta-oe/recipes-support/udisks/udisks_1.0.4.bb |9 + 1 files changed, 1 insertions(+), 8 deletions(-) diff --git a/meta-oe/recipes-support/udisks/udisks_1.0.4.bb b/meta-oe/recipes-support/udisks/udisks_1.0.4.bb index

[oe] [meta-oe V3 18/23] rsyslog: remove unneeded systemd code

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- meta-oe/recipes-extended/rsyslog/rsyslog.inc |7 +-- 1 files changed, 1 insertions(+), 6 deletions(-) diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog.inc

[oe] [meta-oe V3 09/23] systemd.bbclass: automatically extend RDEPENDS for *-systemd packages

2012-02-23 Thread Andreas Müller
* append systemd functionalty moved into systemd_add_rdepends * append base-pgk in case receipe does not set RDEPENDS for *-systemd package Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- meta-oe/classes/systemd.bbclass | 21 + 1 files changed, 17

[oe] [meta-oe V3 21/23] gpsd: remove unneeded systemd code

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- meta-oe/recipes-navigation/gpsd/gpsd_2.96.bb | 12 ++-- 1 files changed, 2 insertions(+), 10 deletions(-) diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_2.96.bb

[oe] [meta-oe V3 22/23] busybox: remove unneeded systemd code / use ${systemd_unitdir}

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- .../recipes-core/busybox/busybox_1.19.3.bbappend | 15 +-- 1 files changed, 5 insertions(+), 10 deletions(-) diff --git a/meta-oe/recipes-core/busybox/busybox_1.19.3.bbappend

[oe] [meta-oe V3 19/23] syslog-ng: remove unneeded systemd code / use ${systemd_unitdir}

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- meta-oe/recipes-support/syslog-ng/syslog-ng.inc |9 ++--- 1 files changed, 2 insertions(+), 7 deletions(-) diff --git a/meta-oe/recipes-support/syslog-ng/syslog-ng.inc b/meta-oe/recipes-support/syslog-ng/syslog-ng.inc index

[oe] [meta-oe V3 20/23] dhcp: remove unneeded systemd code

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- .../recipes-connectivity/dhcp/dhcp_4.2.0.bbappend | 12 +--- 1 files changed, 1 insertions(+), 11 deletions(-) diff --git

[oe] [meta-oe V3 23/23] dhcp: add native systemd support for dhcp-relay

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- .../recipes-connectivity/dhcp/dhcp_4.2.0.bbappend |8 +--- .../dhcp/files/dhcrelay.service| 10 ++ 2 files changed, 15 insertions(+), 3

Re: [oe] [meta-oe V3 00/23] systemd rework

2012-02-23 Thread Otavio Salvador
On Thu, Feb 23, 2012 at 10:10, Andreas Müller schnitzelt...@googlemail.com wrote: V2 - V3: (Hopefully) all suggestions and comments were incorporated  / rebased This patchset is ready for merging IMO. Checking remaining recipes that might be change to use ${systemd_unitdir} I found:

Re: [oe] [meta-oe V3 00/23] systemd rework

2012-02-23 Thread Martin Jansa
On Thu, Feb 23, 2012 at 10:31:26AM -0200, Otavio Salvador wrote: On Thu, Feb 23, 2012 at 10:10, Andreas Müller schnitzelt...@googlemail.com wrote: V2 - V3: (Hopefully) all suggestions and comments were incorporated  / rebased This patchset is ready for merging IMO. Agreed, just tested in

[oe] [meta-oe][PATCH] gateone, networkmanager, cloud9, ntp: use systemd_unitdir variable

2012-02-23 Thread Martin Jansa
* maybe we should move systemd_unitdir definition outside systemd.bbclass because it's used in few more recipes which doesn't inherit systemd Signed-off-by: Martin Jansa martin.ja...@gmail.com --- .../recipes-connectivity/gateone/gateone_git.bb|4 ++--

Re: [oe] [meta-oe V3 00/23] systemd rework

2012-02-23 Thread Andreas Müller
On Thu, Feb 23, 2012 at 1:31 PM, Otavio Salvador ota...@ossystems.com.br wrote: On Thu, Feb 23, 2012 at 10:10, Andreas Müller schnitzelt...@googlemail.com wrote: V2 - V3: (Hopefully) all suggestions and comments were incorporated  / rebased This patchset is ready for merging IMO. Checking

Re: [oe] [meta-oe V3 00/23] systemd rework

2012-02-23 Thread Otavio Salvador
On Thu, Feb 23, 2012 at 10:39, Martin Jansa martin.ja...@gmail.com wrote: I have patch for few: meta-oe/recipes-devtools/cloud9/cloud9_0.5.1.bb meta-oe/recipes-connectivity/gateone/gateone_git.bb meta-oe/recipes-support/ntp/ntp_4.2.6p3.bb and networkmanager Please send them above this

Re: [oe] [meta-oe][PATCH] gateone, networkmanager, cloud9, ntp: use systemd_unitdir variable

2012-02-23 Thread Otavio Salvador
On Thu, Feb 23, 2012 at 10:40, Martin Jansa martin.ja...@gmail.com wrote: * maybe we should move systemd_unitdir definition outside systemd.bbclass  because it's used in few more recipes which doesn't inherit systemd Please split this patch and do PR bump so we get them rebuild. -- Otavio

Re: [oe] [meta-oe][PATCH] gateone, networkmanager, cloud9, ntp: use systemd_unitdir variable

2012-02-23 Thread Martin Jansa
On Thu, Feb 23, 2012 at 10:50:02AM -0200, Otavio Salvador wrote: On Thu, Feb 23, 2012 at 10:40, Martin Jansa martin.ja...@gmail.com wrote: * maybe we should move systemd_unitdir definition outside systemd.bbclass  because it's used in few more recipes which doesn't inherit systemd Please

Re: [oe] [meta-oe][PATCH] gateone, networkmanager, cloud9, ntp: use systemd_unitdir variable

2012-02-23 Thread Otavio Salvador
On Thu, Feb 23, 2012 at 10:58, Martin Jansa martin.ja...@gmail.com wrote: On Thu, Feb 23, 2012 at 10:50:02AM -0200, Otavio Salvador wrote: On Thu, Feb 23, 2012 at 10:40, Martin Jansa martin.ja...@gmail.com wrote: * maybe we should move systemd_unitdir definition outside systemd.bbclass  

[oe] [PATCH 3/7] postgresql: include Makefile.global in SSTATE_SCAN_FILES

2012-02-23 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta-oe/recipes-support/postgresql/postgresql.inc |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc index

Re: [oe] [meta-oe][PATCH] gateone, networkmanager, cloud9, ntp: use systemd_unitdir variable

2012-02-23 Thread Martin Jansa
On Thu, Feb 23, 2012 at 11:10:18AM -0200, Otavio Salvador wrote: On Thu, Feb 23, 2012 at 10:58, Martin Jansa martin.ja...@gmail.com wrote: On Thu, Feb 23, 2012 at 10:50:02AM -0200, Otavio Salvador wrote: On Thu, Feb 23, 2012 at 10:40, Martin Jansa martin.ja...@gmail.com wrote: * maybe we

Re: [oe] [meta-oe][PATCH] gateone, networkmanager, cloud9, ntp: use systemd_unitdir variable

2012-02-23 Thread Otavio Salvador
On Thu, Feb 23, 2012 at 12:53, Martin Jansa martin.ja...@gmail.com wrote: splitted and with PR bumps in contrib/jansa/pull I think Koen would prefer if you resend them so he can get them from patchwork. Not sure though... -- Otavio Salvador                             O.S. Systems E-mail:

Re: [oe] [meta-oe][PATCH] gateone, networkmanager, cloud9, ntp: use systemd_unitdir variable

2012-02-23 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Op 23-02-12 15:58, Otavio Salvador schreef: On Thu, Feb 23, 2012 at 12:53, Martin Jansa martin.ja...@gmail.com wrote: splitted and with PR bumps in contrib/jansa/pull I think Koen would prefer if you resend them so he can get them from

[oe] [PATCH][meta-oe 1/1] toscoterm: add

2012-02-23 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta-oe/recipes-support/toscoterm/toscoterm_git.bb | 26 1 files changed, 26 insertions(+), 0 deletions(-) create mode 100644 meta-oe/recipes-support/toscoterm/toscoterm_git.bb diff --git

Re: [oe] [meta-oe][PATCH] gateone, networkmanager, cloud9, ntp: use systemd_unitdir variable

2012-02-23 Thread Martin Jansa
On Thu, Feb 23, 2012 at 04:44:27PM +0100, Koen Kooi wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Op 23-02-12 15:58, Otavio Salvador schreef: On Thu, Feb 23, 2012 at 12:53, Martin Jansa martin.ja...@gmail.com wrote: splitted and with PR bumps in contrib/jansa/pull I think

[oe] [meta-oe][PATCH 0/7] PACKAGECONFIG for polkit and foxtrotgps upgrade - added more patches for systemd and sstate

2012-02-23 Thread Martin Jansa
First 2 patches are the same, Added 4 more patches for systemd_unitdir variable and 1 patch for sstate The following changes since commit 4751336bc02d6881efff1c0c6a1b449a156eb723: vsftpd: add new package (2012-02-22 12:23:16 +0100) are available in the git repository at:

[oe] [meta-oe][PATCH 3/7] postgresql: include Makefile.global in SSTATE_SCAN_FILES

2012-02-23 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta-oe/recipes-support/postgresql/postgresql.inc |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc index

[oe] [meta-oe][PATCH 4/7] gateone: use systemd_unitdir variable

2012-02-23 Thread Martin Jansa
* maybe we should move systemd_unitdir definition outside systemd.bbclass because it's used in few more recipes which doesn't inherit systemd Signed-off-by: Martin Jansa martin.ja...@gmail.com --- .../recipes-connectivity/gateone/gateone_git.bb|6 +++--- 1 files changed, 3

[oe] [meta-oe][PATCH 5/7] networkmanager: use systemd_unitdir variable

2012-02-23 Thread Martin Jansa
* maybe we should move systemd_unitdir definition outside systemd.bbclass because it's used in few more recipes which doesn't inherit systemd Signed-off-by: Martin Jansa martin.ja...@gmail.com --- .../networkmanager/networkmanager_0.9.2.0.bb |4 ++-- 1 files changed, 2 insertions(+),

[oe] [meta-oe][PATCH 6/7] cloud9: use systemd_unitdir variable

2012-02-23 Thread Martin Jansa
* maybe we should move systemd_unitdir definition outside systemd.bbclass because it's used in few more recipes which doesn't inherit systemd Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta-oe/recipes-devtools/cloud9/cloud9_0.5.1.bb |8 1 files changed, 4

[oe] [meta-oe][PATCH 7/7] ntp: use systemd_unitdir variable

2012-02-23 Thread Martin Jansa
* maybe we should move systemd_unitdir definition outside systemd.bbclass because it's used in few more recipes which doesn't inherit systemd Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta-oe/recipes-support/ntp/ntp_4.2.6p3.bb | 10 +- 1 files changed, 5 insertions(+), 5

[oe] [meta-mozilla] firefox does not fetch

2012-02-23 Thread Andreas Müller
Hi just noticed that firefox URI seems to have moved ERROR: Function failed: Fetcher failure for URL: 'http://archive.mozilla.org/pub/mozilla.org/firefox/releases/10.0.1/source/firefox-10.0.1.source.tar.bz2;name=archive'. Unable to fetch URL from any source. I was about to prepare a patch for

Re: [oe] [meta-mozilla] firefox does not fetch

2012-02-23 Thread Otavio Salvador
On Thu, Feb 23, 2012 at 15:15, Andreas Müller schnitzelt...@googlemail.com wrote: ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/10.0.1/source/firefox-10.0.1.source.tar.bz2 but it seems that has a different checksum so I did not want to jump into this. If you have time (and enough

Re: [oe] [OE-core] gcc-cross-initial patching fails

2012-02-23 Thread Koen Kooi
Op 22 feb. 2012, om 22:39 heeft Andreas Müller het volgende geschreven: On Wed, Feb 22, 2012 at 10:18 PM, Khem Raj raj.k...@gmail.com wrote: On Wed, Feb 22, 2012 at 12:15 PM, McClintock Matthew-B29882 b29...@freescale.com wrote: Applying patch gcc45-no-add-needed.patch patching file

Re: [oe] [PATCH][meta-oe 1/1] toscoterm: add

2012-02-23 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Otavio and I had an offline talk about this and I moved a better version of this. Op 23-02-12 16:49, Otavio Salvador schreef: Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta-oe/recipes-support/toscoterm/toscoterm_git.bb | 26

[oe] [meta-oe][PATCH 2/3] meta-oe: include pointercal-xinput in SIGGEN_EXCLUDERECIPES_ABISAFE

2012-02-23 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta-oe/conf/layer.conf |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta-oe/conf/layer.conf b/meta-oe/conf/layer.conf index 267616b..0a3a9ef 100644 --- a/meta-oe/conf/layer.conf +++ b/meta-oe/conf/layer.conf @@

[oe] [meta-oe][PATCH 1/3] mysql5: PR bump after including *_config in default SSTATE_SCAN_FILES

2012-02-23 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta-oe/recipes-support/mysql/mysql5_5.1.40.inc |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta-oe/recipes-support/mysql/mysql5_5.1.40.inc b/meta-oe/recipes-support/mysql/mysql5_5.1.40.inc index

[oe] [meta-oe][PATCH 0/3] Small updates for sstate

2012-02-23 Thread Martin Jansa
The following changes since commit 3c50d83184d58eba36f72c7e2e7116d2a8e92a71: toscoterm: add (2012-02-23 17:57:04 +0100) are available in the git repository at: git://git.openembedded.org/meta-openembedded-contrib jansa/pull

[oe] [meta-oe][PATCH 3/3] meta-oe: include systemd-serialgetty in SIGGEN_EXCLUDERECIPES_ABISAFE

2012-02-23 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta-oe/conf/layer.conf |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta-oe/conf/layer.conf b/meta-oe/conf/layer.conf index 0a3a9ef..cf13a71 100644 --- a/meta-oe/conf/layer.conf +++ b/meta-oe/conf/layer.conf @@

[oe] [meta-oe] dhcp: follow oe-core's update to 4.2.3-P2

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- ...{dhcp_4.2.0.bbappend = dhcp_4.2.3-P2.bbappend} |0 1 files changed, 0 insertions(+), 0 deletions(-) rename meta-oe/recipes-connectivity/dhcp/{dhcp_4.2.0.bbappend = dhcp_4.2.3-P2.bbappend} (100%) diff --git

Re: [oe] [meta-oe] dhcp: follow oe-core's update to 4.2.3-P2

2012-02-23 Thread Otavio Salvador
On Thu, Feb 23, 2012 at 22:49, Andreas Müller schnitzelt...@googlemail.com wrote: rename from meta-oe/recipes-connectivity/dhcp/dhcp_4.2.0.bbappend rename to meta-oe/recipes-connectivity/dhcp/dhcp_4.2.3-P2.bbappend Change PRINC back to + 1 plz. -- Otavio Salvador                             

[oe] [meta-oe V2] dhcp: follow oe-core's update to 4.2.3-P2

2012-02-23 Thread Andreas Müller
Signed-off-by: Andreas Müller schnitzelt...@googlemail.com --- ...{dhcp_4.2.0.bbappend = dhcp_4.2.3-P2.bbappend} |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) rename meta-oe/recipes-connectivity/dhcp/{dhcp_4.2.0.bbappend = dhcp_4.2.3-P2.bbappend} (91%) diff --git

Re: [oe] [meta-oe][PATCH] udev-173: use tar.gz instead of git checkout

2012-02-23 Thread McClintock Matthew-B29882
On Fri, Sep 9, 2011 at 9:03 AM, Martin Jansa martin.ja...@gmail.com wrote: * today it's easier to find right tar.gz stored somewhere then working git.kernel.org Signed-off-by: Martin Jansa martin.ja...@gmail.com ---  meta-oe/recipes-core/udev/udev_173.bb |    9 -  1 files changed,

Re: [oe] [meta-oe][PATCH] udev-173: use tar.gz instead of git checkout

2012-02-23 Thread Martin Jansa
On Fri, Feb 24, 2012 at 04:27:42AM +, McClintock Matthew-B29882 wrote: On Fri, Sep 9, 2011 at 9:03 AM, Martin Jansa martin.ja...@gmail.com wrote: * today it's easier to find right tar.gz stored somewhere then working git.kernel.org Signed-off-by: Martin Jansa martin.ja...@gmail.com

[oe] [meta-oe][PATCH 0/4] Small updates for sstate, added fix for kmod build

2012-02-23 Thread Martin Jansa
First 3 are the same, not resend Added small fix to disable man in kmod because we don't have working xsltproc The following changes since commit 3c50d83184d58eba36f72c7e2e7116d2a8e92a71: toscoterm: add (2012-02-23 17:57:04 +0100) are available in the git repository at:

[oe] [meta-oe][PATCH 4/4] kmod: disable man pages generation because we don't have working xsltproc

2012-02-23 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- ...-man-page-generation-because-we-don-t-hav.patch | 26 meta-oe/recipes-kernel/kmod/kmod_git.bb|6 +++- 2 files changed, 30 insertions(+), 2 deletions(-) create mode 100644

Re: [oe] [meta-oe][PATCH] libedit: Adds version 20110802 (initial recipe)

2012-02-23 Thread Khem Raj
On (22/02/12 07:15), Ahsan, Noor wrote: Does this block my recipe to be accepted in meta-oe and by your comment below you are suggesting me to upstream that patch to libedit project? Well I am ok since it has something in there may be just change it to 'Pending' so that if someone later