Paul Menzel | 10 Feb 00:04
Picon

Re: [oe] Board support package (BSP) layers/distributions for Geode LX800

Dear Chris and OE folks,

I am sorry for forwarding this message to the list that late.

Am Mittwoch, den 01.02.2012, 08:14 +0000 schrieb Chris Tapp:

> On 31 Jan 2012, at 15:15, Paul Menzel wrote:

> > searching for a suited build configuration for a Geode LX800 based
> > system I could only find the discussion about creating a BSP layer for
> > it [1]. Was this layer created? I could not find it anywhere.
> >
> > Additionally could you give recommendations which build  
> > configuration is
> > suited for a Geode system? Especially with OE-Core as the base. Did
> > someone test the latest OE stuff with a Geode LX800 system recently?
> 
> I've got a rough meta layer that I use with Yocto for the ALIX 3D3  
> (and similar). The aim (when I get a moment) is to make this in to a  
> full BSP...
> 
> I've got a modified kernel (linux-wrs 2.6.34.7) so that the ethernet,  
> audio and Geode frame buffer are available and USB works.

These are great news!

> Works fine with Poky 4. I had a quick go with 5, but I ended up with  
> an image that failed to boot. I've not looked to find out why, but I  
> don't expect it to be anything major.
> 
(Continue reading)

Nathan Samson | 9 Feb 21:52
Picon
Gravatar

[oe] First time user: suggestions

Hi,

I've talked to someone on FOSDEM about OE, and wanted to try it (I also
just started to use OpenWrt for a university project)

These are my first time user notes (and suggestion for improvements).

Starting with: http://www.openembedded.org/wiki/Main_Page and especially
the "Getting Started" Page. This seems to be outdated (using the classic
repos and not the "layered" core. Building the classic branch did not work
out for me. Not a very good first user experience. I suggest that the the
Getting Started page is replaced with the contents from
wiki.yoctoproject.org/wiki/OpenEmbedded-Core (and slighly enhanced).

Building the -core was also problematic. Two packages caused troubles:
zlib and another package (don't know the name anymore). Both problems were
caused because it could not download some files.

It seems zlib.org removed all downloads prior to 1.2.6, and OE uses 1.2.5.
Applying the patch from http://patches.openembedded.org/patch/20641/ fixed
the problem.
The other package could not be downloaded because it was hosted on
kernel.org and the content seemed to have been removed.
http://permalink.gmane.org/gmane.comp.handhelds.openembedded.core/14810helped
me fix the issue.

Suggestion 2: These download problems seems not be fixed very rapidly
(although they should be quite easy to fix). I wonder why. My theory (but
prove me wrong), is that developers won't see this because they have the
download cached in their download directory So only new users will discover
(Continue reading)

ulf | 9 Feb 21:20
Favicon
Gravatar

[oe] [PATCH 1/3] bluez4: Add version to 4.98

From: Ulf Samuelsson <ulf <at> emagii.com>

Signed-off-by: Ulf Samuelsson <ulf <at> emagii.com>
---
 recipes/bluez/bluez4_4.98.bb |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)
 create mode 100644 recipes/bluez/bluez4_4.98.bb

diff --git a/recipes/bluez/bluez4_4.98.bb b/recipes/bluez/bluez4_4.98.bb
new file mode 100644
index 0000000..e1f371e
--- /dev/null
+++ b/recipes/bluez/bluez4_4.98.bb
@@ -0,0 +1,30 @@
+require bluez4.inc
+
+SRC_URI = "\
+  ${KERNELORG_MIRROR}/pub/linux/bluetooth/bluez-${PV}.tar.gz \
+  file://bluetooth.conf \
+"
+SRC_URI[md5sum] = "362864b716950baa04797de735fc237b"
+SRC_URI[sha256sum] = "9a5b655bada7c7a1921cb3bac83b8a32bbe49893e4c7a1377cdc1b0d35f7d233"
+
+DEFAULT_PREFERENCE = "-1"
+DEFAULT_PREFERENCE_angstrom = "1"
+
+DEPENDS += "libsndfile1"
+
+PR = "${INC_PR}.0"
+
(Continue reading)

Koen Kooi | 9 Feb 20:00
Gravatar

[oe] [meta-oe] Patch delays coming up


Hi,

It's conference season again which means I'll be travelling a lot these 2
months so there will be a delay in getting patches into meta-openembedded.
Normally I'd nominate Khem to keep an eye on it, but he'll be at ELC as well :)
If you have patches you want in quickly, have them ready for monday/tuesday
which are still largely free of meetings.

Don't hesitate to ping your patches on this ml if they seem to get left
behind. And don't forget to use the [meta-oe] tag to get patchwork attention.

regards,

Koen
Rich Pixley | 9 Feb 00:26
Picon
Gravatar

[oe] bitbake versions

I'm having trouble even parsing using bitbake > 1.12.

Am I right in thinking that the openembedded tree isn't ready to be 
built with bitbake > 1.12?

If so, then the getting started document should probably include this info.

--rich
Koen Kooi | 8 Feb 13:50
Gravatar

[oe] [meta-oe] systemd: split out libraries from ${PN}

Signed-off-by: Koen Kooi <koen <at> dominion.thruhere.net>
---
 meta-oe/recipes-core/systemd/systemd_git.bb |   14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
index c1a0117..4c458bd 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
 PKGV = "v${GITPKGVTAG}"

 PV = "git"
-PR = "r15"
+PR = "r16"

 inherit useradd pkgconfig autotools vala perlnative

@@ -59,6 +59,11 @@ do_install() {
 	ln -s ${base_bindir}/systemd ${D}/init
 }

+python populate_packages_prepend (){
+	systemdlibdir = d.getVar("base_libdir", True)
+	do_split_packages(d, systemdlibdir, '^lib(.*)\.so\.*', 'lib%s', 'Systemd %s library',
extra_depends='', allow_links=True)
+}
+
 PACKAGES =+ "${PN}-gui ${PN}-vconsole-setup ${PN}-initramfs ${PN}-analyze"

(Continue reading)

Andreas Müller | 8 Feb 11:40
Gravatar

[oe] IMAGE_FEATURES questions (was [meta-oe][RFC 00/27] systemd / initmanager rework)

On Tue, Feb 7, 2012 at 5:39 PM, Otavio Salvador <otavio <at> ossystems.com.br> wrote:
> On Tue, Feb 7, 2012 at 14:35, Andreas Müller
> <schnitzeltony <at> googlemail.com>wrote:
>
>> On Tue, Feb 7, 2012 at 4:12 PM, Andreas Müller
>> <schnitzeltony <at> googlemail.com> wrote:
>> >  What I have already
>> >  detected after a build from scatch is that /var/lib/opkg is missing in
>> the
>> >  image (although it can be found in libopkg.ipk).
>> Hmm Last night I had a build from scratch without these patches and
>> have the same - this seems a different issue...
>
>
> You need to add package-management onto IMAGE_FEATURES or it will be
> dropped if all postinst has runned fine in rootfs generation.
>
I added into my image

IMAGE_FEATURES += "package-management"

and after rebuild find the missing directories in my image. Looking
around in my environment gives:

* angstrom sets
meta-angstrom/conf/distro/include/angstrom-core-tweaks.inc:EXTRA_IMAGE_FEATURES
??= "package-management"
* in my local.conf I have (taken from OE-core local.conf.sample - long
time ago) EXTRA_IMAGE_FEATURES = "debug-tweaks"
* EXTRA_IMAGE_FEATURES is added to IMAGE_FEATURES in bitbake.conf.
(Continue reading)

Tom King | 8 Feb 05:25
Picon
Gravatar

[oe] git, wiki planned outage.

0000-0200UTC 09Feb2012

Replacement of HD controller bits and defective HD's

Thanks,

tom
(for the OE infra team)
Khem Raj | 8 Feb 03:04
Picon
Gravatar

Re: [oe] Java: meta-java, meta-oracle-java

On Tue, Feb 7, 2012 at 3:51 PM, Kamble, Nitin A
<nitin.a.kamble <at> intel.com> wrote:
> Ivan,
>  So is adding "virtual/java" in provider is enough to get the two versions of java recipes to work
interchangeably ?

look at meta-java

virtual/java-native
virtual/javac-native
virtual/javac

and work with Henning (woglinge) to sort out any other layer APIs you need these
layers to live amicably

>
> Nitin
>
>
>> -----Original Message-----
>> From: Kamble, Nitin A
>> Sent: Monday, February 06, 2012 10:00 AM
>> To: Khem Raj; openembedded-devel <at> lists.openembedded.org
>> Subject: RE: [oe] Java: meta-java, meta-oracle-java
>>
>> > On Sat, Feb 4, 2012 at 10:23 AM, Ivan Kuten <ivan.kuten <at> promwad.com>
>> > wrote:
>> > > I meant isn't it going to be something like that in local.conf :
>> > > PREFERRED_PROVIDER_virtual/java = "oracle-jre"
>> > > PREFERRED_PROVIDER_virtual/java = "openjdk"
(Continue reading)

Rich Pixley | 8 Feb 02:22
Picon
Gravatar

[oe] bitbake confusion

I've just started working with current OE, (Palm has been branched for 
several years).  And I'm a bit confused about how bitbake is supposed to 
work these days.

In the output below, how do I tell where the file with the erroneous 
line might be?  I mean, I can grep, but that won't necessarily tell me 
which file bitbake thought led to the failing include.

What am I missing?

--rich

-*- mode: compilation; default-directory: "/home/rich/projects/webos/" -*-
Compilation started at Tue Feb  7 17:17:22

time make
BBPATH=`pwd`/build:`pwd`/openembedded `pwd`/bitbake/bin/bitbake -v -D 
bootstrap-image
DEBUG: Removed the following variables from the environment: HISTFILE, 
LESS, SSH_CLIENT, CVS_RSH, EMACS, MAKEFLAGS, LANGUAGE, SFDIR, SHLVL, 
HISTSIZE, TMPDIR, EMACSCLIENT, MFLAGS, CVSROOT, NETHACKOPTIONS, EDITOR, 
INSIDE_EMACS, ignoreeof, XENVIRONMENT, ENV, COLUMNS, TERMCAP, SSH_TTY, 
MAKELEVEL, TAPE, GWMPATH, RNINIT, MAIL, SSH_CONNECTION, PAGER, MORE
DEBUG: Clearing SRCREV cache due to cache policy of: clear
DEBUG: Using cache in 
'/home/rich/projects/webos/tmp/cache/bb_codeparser.dat' for codeparser cache
DEBUG: collecting .bb files
DEBUG: Using cache in 
'/home/rich/projects/webos/tmp/cache/eglibc/beagleboard'
Loading cache: 100% || ETA:  00:00:00
(Continue reading)

Otavio Salvador | 7 Feb 21:58
Picon
Gravatar

[oe] [PATCH][meta-oe 0/3] O.S. Systems' systemd related changes

The following changes since commit 724ec1ea4ff52b88bf1f6970557e44768214fd7b:

  systemd: move to v40 and don't kill user processes on exit (2012-02-07 16:06:19 +0100)

are available in the git repository at:
  git://github.com/OSSystems/meta-oe master
  https://github.com/OSSystems/meta-oe/tree/master

Otavio Salvador (3):
  Revert "systemd.bbclass: depends on systemd"
  udisks: explicitly depends on systemd
  polkit: depends on systemd

 meta-oe/classes/systemd.bbclass                    |    2 +-
 .../recipes-extended/polkit/polkit_0.104.bbappend  |    3 +++
 meta-oe/recipes-support/udisks/udisks_1.0.4.bb     |    4 ++--
 3 files changed, 6 insertions(+), 3 deletions(-)
 create mode 100644 meta-oe/recipes-extended/polkit/polkit_0.104.bbappend

--

-- 
1.7.2.5

Gmane