Re: [oe] How to modify /etc/network/interfaces file in a OE recipe

2010-10-08 Thread Petr Štetiar
Khem Raj [2010-10-07 20:26:58]: > On Thu, Oct 7, 2010 at 3:54 PM, Gary Thomas wrote: > > or use bblayers and bbappend. Nice bblayers/bbappend howto http://sakrah.dontexist.org/node/2 -- ynezz ___ Openembedded-devel mailing list Openembedded-devel@l

Re: [oe] [PATCH 1/4] RDEPENDS -> RDEPENDS_${PN}

2010-10-08 Thread Frans Meulenbroeks
2010/10/8 Frans Meulenbroeks : > 2010/10/6 Frans Meulenbroeks : >> Signed-off-by: Frans Meulenbroeks >> --- >>  classes/cpan-base.bbclass |    2 +- >>  1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/classes/cpan-base.bbclass b/classes/cpan-base.bbclass >> index 379defa..a04f61

[oe] [PATCH 1/2] libdvdread: add recipe for version 4.1.3-10 from debian

2010-10-08 Thread Andreas Oberritter
Signed-off-by: Andreas Oberritter --- recipes/libdvdread/libdvdread_4.1.3-10.bb |3 +++ recipes/libdvdread/libdvdread_git.inc | 15 +++ 2 files changed, 18 insertions(+), 0 deletions(-) create mode 100644 recipes/libdvdread/libdvdread_4.1.3-10.bb create mode 100644 recipes

[oe] [PATCH 2/2] libdvdnav: add recipe for version 4.1.3-7 from debian

2010-10-08 Thread Andreas Oberritter
Signed-off-by: Andreas Oberritter --- ...-dvdnavmini.pc-link-against-libdvdnavmini.patch | 25 recipes/libdvdnav/libdvdnav_4.1.3-7.bb |5 recipes/libdvdnav/libdvdnav_git.inc| 24 +++ 3 files changed, 54 insertions(+), 0

Re: [oe] [PATCH 7/7] binutils_2.20.1.bb: Updates to use libtool 2.4 macros

2010-10-08 Thread Henning Heinold
Hi, hm why is binutils not copy over this file? Bye Henning ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

Re: [oe] RDEPENDS/RRECOMMENDS/RSUGGESTS/RPROVIDES/RCONFLICTS/RREPLACES

2010-10-08 Thread Frans Meulenbroeks
2010/10/7 Frans Meulenbroeks : > Dear all, > > It is my understanding that all of > RDEPENDS/RRECOMMENDS/RSUGGESTS/RPROVIDES/RCONFLICTS/RREPLACES should > have an _ suffix (most often _${PN} ) > > I did a quick grep for these and came up with the following > non-compliant recipes: > > fr...@frans-d

[oe] [RFC] split kernel_do_compile into kernel_do_compile_image and kernel_compile_modules

2010-10-08 Thread Koen Kooi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, For a long time now I have been thinking of this and today at work I found a case where I really need it: ti816x fbdev driver (internal to the kernel) depends on ti-syslink module (external), ti-syslink module requires a configured kernel tree.

[oe] [PATCH] syslog-ng: increase u-a priority to 200

2010-10-08 Thread Steffen Sledz
Priority for update-alternatives was 50 before which was the same like the one for busybox-syslog. Resulting order now is: * 300 rsyslogd * 200 syslog-ng * 100 sysklogd * 50 busybox-syslog Signed-off-by: Steffen Sledz --- recipes/syslog-ng/syslog-ng.inc |2 +- 1 files changed, 1 insertions(

Re: [oe] [PATCH] syslog-ng: increase u-a priority to 200

2010-10-08 Thread Martin Jansa
On Fri, Oct 08, 2010 at 02:07:20PM +0200, Steffen Sledz wrote: > Priority for update-alternatives was 50 before which was the > same like the one for busybox-syslog. Resulting order now is: > > * 300 rsyslogd > * 200 syslog-ng > * 100 sysklogd > * 50 busybox-syslog > > Signed-off-by: Steffen Sled

Re: [oe] [RFC] split kernel_do_compile into kernel_do_compile_image and kernel_compile_modules

2010-10-08 Thread Frans Meulenbroeks
2010/10/8 Koen Kooi : > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi, > > For a long time now I have been thinking of this and today at work I > found a case where I really need it: > > ti816x fbdev driver (internal to the kernel) depends on ti-syslink > module (external), ti-syslink modu

Re: [oe] [PATCH] syslog-ng: increase u-a priority to 200

2010-10-08 Thread Steffen Sledz
Am 08.10.2010 14:21, schrieb Martin Jansa: > On Fri, Oct 08, 2010 at 02:07:20PM +0200, Steffen Sledz wrote: >> Priority for update-alternatives was 50 before which was the >> same like the one for busybox-syslog. Resulting order now is: >> >> * 300 rsyslogd >> * 200 syslog-ng >> * 100 sysklogd >> *

[oe] [PATCH v2] package.bbclass: copy dotfiles in root D to PKGD

2010-10-08 Thread Michael Smith
Use shutil.copytree() to copy D ("image") to PKGD ("package"). The previous system("cp %s/* ...") missed dotfiles/dirs at the top-level. Signed-off-by: Michael Smith --- I sent an earlier version of this a couple of weeks back, but it relied on shutil.copytree() functionality only available in P

[oe] [PATCH resend 3/4] glibc, glibc-initial: depend on make-native

2010-10-08 Thread Michael Smith
In case the version of make installed on the build host is incompatible, we'll use make-native. Signed-off-by: Michael Smith --- recipes/glibc/glibc-initial.inc |2 +- recipes/glibc/glibc.inc |4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes/glibc/gl

[oe] [PATCH resend 2/4] base.bbclass: add make-native to default dependencies

2010-10-08 Thread Michael Smith
This should work around package incompatibilities with whatever version of make is installed on the build system. Signed-off-by: Michael Smith --- classes/base.bbclass |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/classes/base.bbclass b/classes/base.bbclass index 964

[oe] [PATCH resend 4/4] eglibc, eglibc-initial: depend on make-native

2010-10-08 Thread Michael Smith
In case the version of make installed on the build host is incompatible, we'll use make-native. Signed-off-by: Michael Smith --- recipes/eglibc/eglibc-initial.inc |2 +- recipes/eglibc/eglibc.inc |4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes/egli

[oe] [PATCH resend 1/4] make 3.82: set DEFAULT_PREFERENCE = "-1"

2010-10-08 Thread Michael Smith
This version has introduced several backwards incompatibilities and some packages are known not to build with 3.82. In particular: - glibc-initial fails in do_install when prefix="". - eglibc manual/Makefile has not yet been patched (see 3a06f50f) Signed-off-by: Michael Smith --- recipes/make/m

Re: [oe] [PATCH 7/7] binutils_2.20.1.bb: Updates to use libtool 2.4 macros

2010-10-08 Thread Khem Raj
On Fri, Oct 8, 2010 at 4:05 AM, Henning Heinold wrote: > Hi, > > hm why is binutils not copy over this file? > because we dont autoreconf it. I tried to autoreconf it but it needs autoconf 2.65 then I overrode it but resulting configure would not run. So we have to do manually once what autorecon

Re: [oe] [oe-commits] Khem Raj : gcc-4.5: Fix asm out of range errors seen on thumb when using -O1

2010-10-08 Thread Martin Jansa
On Thu, Oct 7, 2010 at 9:46 PM, git version control wrote: > Module: openembedded.git > Branch: master > Commit: 8e1eef82a09c14668a125c720cfcd354bbeb42cf > URL:     > http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=8e1eef82a09c14668a125c720cfcd354bbeb42cf > > Author: Khem Raj > Date

Re: [oe] [oe-commits] Khem Raj : gcc-4.5: Fix asm out of range errors seen on thumb when using -O1

2010-10-08 Thread Khem Raj
I have reverted it for now. On Fri, Oct 8, 2010 at 9:37 AM, Martin Jansa wrote: > On Thu, Oct 7, 2010 at 9:46 PM, git version control > wrote: >> Module: openembedded.git >> Branch: master >> Commit: 8e1eef82a09c14668a125c720cfcd354bbeb42cf >> URL:     >> http://gitweb.openembedded.net/?p=openem

[oe] [PATCH] fix gdb-cross-sdk on older build systems

2010-10-08 Thread Tim Harvey
run autoreconf to lessen dependency on host autotools version Signed-off-by: Tim Harvey --- recipes/gdb/gdb-cross-sdk.inc |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/recipes/gdb/gdb-cross-sdk.inc b/recipes/gdb/gdb-cross-sdk.inc index d7bc2ab..4c58612 100644 --- a/r

[oe] [PATCH] angstrom.inc: set TARGET_VENDOR ?= "-angstrom"

2010-10-08 Thread Víctor Manuel Jáquez Leal
By doing this we could use external toolchains for build angstrom based images. Signed-off-by: Víctor Manuel Jáquez Leal --- conf/distro/include/angstrom.inc |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/conf/distro/include/angstrom.inc b/conf/distro/include/angstrom.

[oe] recipy_sanity experiment

2010-10-08 Thread Frans Meulenbroeks
Dear all, as a test I decided to run recipe_sanity on our tree, and here are the results There are 1801 warnings: 954 candidate for removal of S 373 LICENSE should be defined to something other than default (unknown) 181 RDEPENDS should be RDEPENDS_${PN} 91 candidate for removal

[oe] [PATCH] module.bbclass: RDEPENDS -> RDEPENDS_${PN}

2010-10-08 Thread Frans Meulenbroeks
Signed-off-by: Frans Meulenbroeks --- one more place in classes where there is an RDEPENDS i.s.o. RDEPENDS_${PN} classes/module.bbclass |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/classes/module.bbclass b/classes/module.bbclass index 83463ac..0e0018e 100644 --- a/cl

[oe] Add extra include headers for kernel

2010-10-08 Thread J. L.
What is the proper way for me to be able to get more headers to be built into the kernel that the current ones that are compling in? When I look in tmp/sysroots/overo-angstrom-linux-gnueabi/kernel/include there are some .h that I would like to have in there that are not currently in. Thanks for a

Re: [oe] recipy_sanity experiment

2010-10-08 Thread Frans Meulenbroeks
>     11 RRECOMMENDS should be RRECOMMENDS_${PN} Did some further analys on these. They are all from ttf and the rationale for it is given in ttf.inc. Also fixed the one wrt DESCRIPTION Frans ___ Openembedded-devel mailing list Openembedded-devel@list

Re: [oe] [PATCH,V2 0/6] libtool 2.4 upgrade

2010-10-08 Thread Frans Meulenbroeks
2010/10/7 Khem Raj : > On Thu, Oct 7, 2010 at 12:56 AM, Koen Kooi wrote: >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> On 07-10-10 03:46, Khem Raj wrote: >>> Hi >>> >>> Following set of patches is v2 of the patches adding support for getting >>> libtool 2.4 into >>> openemebedded. I h

[oe] zsafe

2010-10-08 Thread Frans Meulenbroeks
By incident bumped into zsafe. No idea what it is, but something in the recipe drew my attention: FILES_zsafe = "zsafe" do_install() { install -d ${D}${palmtopdir}/pics/${APPNAME}/ install -m 0644 ${WORKDIR}/pics/${APPNAME}/*.xpm ${D}${palmtopdir}/pics/${APPNAME}/ install

[oe] testing branch 2010-10-08

2010-10-08 Thread Cliff Brake
master branch has been merged to testing-next and is ready for clean builds. Last week, we ran into quite a few problems, so I'm not tagging or moving the testing branch forward. Note, we have moved the testing cycle from Fri to Fri instead of Mon to Mon. This is because people more likely have

Re: [oe] [PATCH,V2 0/6] libtool 2.4 upgrade

2010-10-08 Thread Chris Larson
On Fri, Oct 8, 2010 at 1:48 PM, Frans Meulenbroeks < fransmeulenbro...@gmail.com> wrote: > 2010/10/7 Khem Raj : > > On Thu, Oct 7, 2010 at 12:56 AM, Koen Kooi > wrote: > >> -BEGIN PGP SIGNED MESSAGE- > >> Hash: SHA1 > >> > >> On 07-10-10 03:46, Khem Raj wrote: > >>> Hi > >>> > >>> Followi

Re: [oe] recipy_sanity experiment

2010-10-08 Thread Khem Raj
On Fri, Oct 8, 2010 at 1:23 PM, Frans Meulenbroeks wrote: > Dear all, > > as a test I decided to run recipe_sanity on our tree, and here are the results > There are 1801 warnings: interesting data > >    954 candidate for removal of S >    373 LICENSE should be defined to something other than d

[oe] OT: `git am --scissors` (was: [PATCH] gtk+_2.20.1: add `pango-native` to `DEPENDS`)

2010-10-08 Thread Paul Menzel
Am Freitag, den 08.10.2010, 08:24 +0200 schrieb Frans Meulenbroeks: > 2010/10/8 Paul Menzel : > > Dear OE folks, […] > > 8<>8 > > Date: Thu, 7 Oct 2010 13:43:58 +0200 > > > > Since two or three days I am not able to build `gtk+_2

Re: [oe] [PATCH] gtk+_2.20.1: add `pango-native` to `DEPENDS`

2010-10-08 Thread Paul Menzel
Am Freitag, den 08.10.2010, 08:24 +0200 schrieb Frans Meulenbroeks: > 2010/10/8 Paul Menzel : […] > > Since two or three days I am not able to build `gtk+_2.20.1.bb` anymore. I > > tried to revert to `gtk+.inc` 9730a2 [1] with > > > >git checkout 9730a28e669931fee601756e949bb210999b4b81 > >

Re: [oe] [PATCH v2] package.bbclass: copy dotfiles in root D to PKGD

2010-10-08 Thread Chris Larson
On Fri, Oct 8, 2010 at 6:34 AM, Michael Smith wrote: > Use shutil.copytree() to copy D ("image") to PKGD ("package"). The > previous system("cp %s/* ...") missed dotfiles/dirs at the top-level. > > Signed-off-by: Michael Smith > Acked-by: Chris Larson -- Christopher Larson clarson at kergoth

[oe] Prefer wget 1.12 by default

2010-10-08 Thread Khem Raj
Hi Right now we use wget_1.9.1.bb if someone did not pin wget to other versions. We have recipes from later versions like 1.12 but they have DEFAULT_PREFERENCE="-1" 1.9.1 has problems building with -j > 1 as many times build break with Text File busy errors. I would like to propose that we upgrad