Chris Larson [Wed, 10 Nov 2010 01:42:10 +0000 (18:42 -0700)]
base: start leveraging oe.types
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Chris Larson [Tue, 9 Nov 2010 22:49:33 +0000 (15:49 -0700)]
Add flags for variable typing
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Chris Larson [Tue, 9 Nov 2010 21:48:13 +0000 (14:48 -0700)]
Implement variable typing
This implementation consists of two components:
- oe.types python module, whose job it is to construct objects of the defined
type for a given variable in the metadata
- typecheck.bbclass, which iterates over all configuration variables with a
type defined and uses oe.types to check the validity of the values
This gives us a few benefits:
- Automatic sanity checking of all configuration variables with a defined type
- Avoid duplicating the "how do I make use of the value of this variable"
logic between its users. For variables like PATH, this is simply a split(),
for boolean variables, the duplication can result in confusing, or even
mismatched semantics (is this 0/1, empty/nonempty, what?)
- Make it easier to create a configuration UI, as the type information could
be used to provide a better interface than a text edit box (e.g checkbox for
'boolean', dropdown for 'choice')
This functionality is entirely opt-in right now. To enable the configuration
variable type checking, simply INHERIT += "typecheck". Example of a failing
type check:
BAZ = "foo"
BAZ[type] = "boolean"
$ bitbake -p
FATAL: BAZ: Invalid boolean value 'foo'
$
Examples of leveraging oe.types in a python snippet:
PACKAGES[type] = "list"
python () {
import oe.types
for pkg in oe.types.value("PACKAGES", d):
bb.note("package: %s" % pkg)
}
LIBTOOL_HAS_SYSROOT = "yes"
LIBTOOL_HAS_SYSROOT[type] = "boolean"
python () {
import oe.types
assert(oe.types.value("LIBTOOL_HAS_SYSROOT", d) == True)
}
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Martin Jansa [Mon, 27 Dec 2010 12:13:44 +0000 (13:13 +0100)]
linux_2.6.35: use mmcblk1p1 for rootfs on nokia900
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Martin Jansa [Tue, 28 Dec 2010 14:18:33 +0000 (15:18 +0100)]
xserver-xorg-conf: bump PR after nokia900 changes in
896ea1b88bf1b1c2e3b0080e9dee19b9d9110ad6 and fix EmulateRightButton in om-gta0*
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Michael 'Mickey' Lauer [Tue, 28 Dec 2010 00:16:56 +0000 (01:16 +0100)]
fsodeviced: disable support for libcanberra, which seldomly builds these days.
Koen Kooi [Mon, 27 Dec 2010 18:57:45 +0000 (19:57 +0100)]
python-cheetah: add 2.4.4
Signed-off-by: Koen Kooi <koen@openembedded.org>
Michael 'Mickey' Lauer [Mon, 27 Dec 2010 19:16:00 +0000 (20:16 +0100)]
connman: add 0.65
NOTE: connman needs iptables, namely libXtables.so now
Michael 'Mickey' Lauer [Mon, 27 Dec 2010 14:45:13 +0000 (15:45 +0100)]
ttf-linlibertine: new recipe; TTF from the Linux Libertine project
Koen Kooi [Mon, 27 Dec 2010 13:33:06 +0000 (14:33 +0100)]
ti-c6accel: fixes and cleanups
* this makes c6accel really regenerate the needed files
* doesn't pass -L/lib to the linker anymore
Signed-off-by: Koen Kooi <koen@openembedded.org>
Koen Kooi [Mon, 27 Dec 2010 09:39:17 +0000 (10:39 +0100)]
nautilus-cd-burner: make it work with cdrkit
Signed-off-by: Koen Kooi <koen@openembedded.org>
Martin Jansa [Sat, 25 Dec 2010 19:11:08 +0000 (20:11 +0100)]
freesmartphone: bump cornucopia SRCREV a bit more
* mterm2 and fsogsmd lowlevel_nokia_n900 plugin builds fine now
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Frans Meulenbroeks [Sun, 26 Dec 2010 21:35:39 +0000 (22:35 +0100)]
james-image: update for cwiid split
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Frans Meulenbroeks [Sun, 26 Dec 2010 21:34:53 +0000 (22:34 +0100)]
cwiid_0.6.00: removed
git version is 0.6.00+ and in use for quite a while
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Frans Meulenbroeks [Sun, 26 Dec 2010 21:34:25 +0000 (22:34 +0100)]
cwiid: split deliverables in separate packages (similar to debian)
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Mike Westerhof [Sun, 26 Dec 2010 17:22:40 +0000 (11:22 -0600)]
SlugOS: slugos-packages.bb - demote man and groff, due to groff build failures.
Michael 'Mickey' Lauer [Sun, 26 Dec 2010 12:31:05 +0000 (13:31 +0100)]
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Michael 'Mickey' Lauer [Sun, 26 Dec 2010 12:28:24 +0000 (13:28 +0100)]
vala: 0.11.2.2 -> 0.11.2.3
Frans Meulenbroeks [Sun, 26 Dec 2010 08:47:56 +0000 (09:47 +0100)]
vim:: elimiated applypatch task
by renaming it to do_patch as patch was empty)
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Marc Reilly [Wed, 22 Dec 2010 10:50:54 +0000 (10:50 +0000)]
qextserialport: Add qextserialport recipe.
Signed-off-by: Marc Reilly <marc@cpdesign.com.au>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Frans Meulenbroeks [Sat, 25 Dec 2010 20:35:17 +0000 (21:35 +0100)]
minimal: enable QA (as discussed on irc with Mickey)
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Koen Kooi [Sat, 25 Dec 2010 14:28:18 +0000 (15:28 +0100)]
qmake2: also define OE_QMAKE_AR in the environment files
Signed-off-by: Koen Kooi <koen@openembedded.org>
Koen Kooi [Fri, 24 Dec 2010 18:37:13 +0000 (19:37 +0100)]
sip-native: add 4.12
Signed-off-by: Koen Kooi <koen@openembedded.org>
Mike Westerhof [Sat, 25 Dec 2010 20:23:26 +0000 (14:23 -0600)]
SlugOS: task-slugos-toolchain-target - restructure for eglibc and
fix to avoid package conflicts. (Note that the result is not tested
yet; this change seeks only to make it build and package cleanly.)
Mike Westerhof [Sat, 25 Dec 2010 20:21:31 +0000 (14:21 -0600)]
SlugOS: expand features list to keep pace with changes to recipes,
also bump SlugOS release number.
Martin Panter [Fri, 24 Dec 2010 19:59:02 +0000 (19:59 +0000)]
xmlrpc-c_1.06.41.bb: QA issue with staging (workdir) for .la files in xmlrpc-c package
I think I've solved this problem. Half of my solution is to modify the
xmlrpc-c package's Make file to pass the library file names directly
instead of using the "-L<directory> -l<name>" method. The other half
is to force it to use the newer Libtool version instead of its own.
See patch #1 attached, though I'm not really an expert on Libtool or
Open embedded, so I can't say if it might break something else, and I
haven't even tested out the packages I built yet.
Adds a patch to avoid using -L link flags, and forces the Make files to use a
newer external Libtool.
Fix do_configure to bypass reconfigure but still generate libtool
Fix below messages
NOTE: Multiple libraries (libxmlrpc_server_cgi.so.3,
libxmlrpc_util.so.3, libxmlrpc_client.so.3, libxmlrpc_abyss.so.3,
libxmlrpc_server_abyss.so.3, libxmlrpc_server.so.3, libxmlrpc.so.3)
found and LEAD_SONAME not defined
ERROR: QA Issue with xmlrpc-c: No GNU_HASH in the elf binary:
'/scratch/oe/work/armv7a-oe-linux-gnueabi/xmlrpc-c-1.06.41-r1/packages-split/xmlrpc-c/usr/lib/libxmlrpc_server_cgi.so.3.6.15'
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Panter <vadmium+floss@gmail.com>
Michael 'Mickey' Lauer [Sat, 25 Dec 2010 18:51:11 +0000 (19:51 +0100)]
vala: 0.11.2.1 -> 0.11.2.2
Martin Jansa [Thu, 16 Dec 2010 22:07:25 +0000 (23:07 +0100)]
nokia900: use just linux instead of linux-nokia900 as virtual/kernel provider
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Denis 'GNUtoo' Carikli [Sun, 19 Sep 2010 17:28:25 +0000 (19:28 +0200)]
xserver-xorg-conf: adapt nokia900's xorg.conf to the newer kernel
* add CoreKeyboard option for nokia900
This seems to be needed to make it actually load it...
Otherwise a pc105 model will be there instead of the
needed nokiarx51 one... needs researching.
Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de>
Klaus Kurzmann [Sun, 3 Oct 2010 13:59:58 +0000 (15:59 +0200)]
linux-2.6.35: add meego patches for nokia900
Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de>
Klaus Kurzmann [Sun, 19 Sep 2010 14:33:03 +0000 (16:33 +0200)]
linux-2.6.28: nokia900 defconfig switch governor from userspace to ondemand, enable POWER_SUPPLY and BATTERY_BQ27x00
* should this be merged to OE?
* defconfig change in short
-CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
-# CONFIG_POWER_SUPPLY is not set
+CONFIG_POWER_SUPPLY=y
+CONFIG_BATTERY_BQ27x00=y
* old squashed commit messages:
*crucial boot support(mmc,mmc block devices,and filesystems) are now builtin
*a CMDLINE is now set in the recipe(there is a custom nokia bootloader on the nokia900),
That is also necessary to boot on microsd
*g_ether is now built, which is required for usbnet
*ondemand cpufreq governor is now the default
*the inconsistent-mmc-fix-2.6.28-
20094803.3.diff patch comes from:
https://bugs.maemo.org/show_bug.cgi?id=2747
and is necessary to be able to boot on microsd
*there is also a patch that reports the battery capacity which comes from:
http://my.arava.co.il/~matan/770/n900/bq27x00_battery.c
That patch should be temporary,and be replcaed by somwthing like that:
Sep 24 18:48:06 <DocScrutinizer51> the bq27200 kernel module is rather rudimentary
Sep 24 18:48:09 <DocScrutinizer51> should be easy to adapt FR bq2700 module to provide same szsfs nodes and just use I2C instead of FIQ+HDQ
Sep 24 18:48:11 <DocScrutinizer51> and that's exactly what I'd recommend to do
(from #openmoko-cdevel on Freenode)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Khem Raj [Sat, 25 Dec 2010 17:58:22 +0000 (09:58 -0800)]
monit_4.10.1.bb: Its licensed under GPLv3
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Vitus Jensen [Wed, 22 Dec 2010 22:52:41 +0000 (22:52 +0000)]
monit: enable include from /etc/monit.d
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Andreas Oberritter [Tue, 21 Dec 2010 16:45:14 +0000 (16:45 +0000)]
e2fsprogs: fix symlink creation
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Paul Menzel [Tue, 30 Nov 2010 15:45:26 +0000 (16:45 +0100)]
xbmc_svn: apply upstream patch complete replacement of liblzo with liblzo2, linux was already liblzo2
Task compile fails with /bin/grep: /usr/lib/libz.la: No such file or directory.
| arm-angstrom-linux-gnueabi-g++ -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -mthumb-interwork -mno-thumb -isystem/oe/build/angstrom-dev/sysroots/armv7a
-angstrom-linux-gnueabi/usr/include -fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb2 -fpermissive -fvisibility-inlines-hidden -fPIC -DPIC -D_REENTRANT -
D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -g -D_DEBUG -Wall -O2 -mfloat-abi=softfp -mno-apcs-stack-check -Wa,-march=armv7a -mcpu=cortex-a8 -mfpu=neon -mvectorize-with-neon-quad -
isystem/oe/build/angstrom-dev/sysroots/armv7a-angstrom-linux-gnueabi/usr/include -fexpensive-optimizations -frename-registers -fomit-frame-pointer -O2 -ggdb2 -fpermissive
-fvisibility-inlines-hidden -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -g -D_DEBUG -Wall -O2 -mfloat-abi=softfp -mno-apcs-stack-check -Wa,-march=armv7a
-mcpu=cortex-a8 -mfpu=neon -mvectorize-with-neon-quad -isystem/oe/build/angstrom-dev/sysroots/armv7a-angstrom-linux-gnueabi/usr/include -fexpensive-optimizations -frename
-registers -fomit-frame-pointer -O2 -ggdb2 -fpermissive -fvisibility-inlines-hidden -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -g -D_DEBUG -Wall -O2 -mfl
oat-abi=softfp -mno-apcs-stack-check -Wa,-march=armv7a -mcpu=cortex-a8 -mfpu=neon -mvectorize-with-neon-quad SDL_anigif.o XBTFWriter.o XBMCTex.o ../../guilib/XBTF.o -L/home/pa
ul/oe/build/angstrom-dev/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib -Wl,-rpath-link,/oe/build/angstrom-dev/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib -Wl,-O1 -Wl,
--hash-style=gnu ../../xbmc/lib/libsquish/libsquish-arm.a -lSDL_image -lSDL -llzo2 -o TexturePacker
| XBMCTex.o: In function `main':
| /oe/build/angstrom-dev/work/armv7a-angstrom-linux-gnueabi/xbmc-10.05-r9+gitr0+
e2ab481ebe964321c358ab9d6402088c714adcbe/git/tools/TexturePacker/XBMCTex.cpp:394: undefined reference to `__lzo_init2'
| collect2: ld returned 1 exit status
| make[1]: *** [TexturePacker] Error 1
| make[1]: Leaving directory `/oe/build/angstrom-dev/work/armv7a-angstrom-linux-gnueabi/xbmc-10.05-r9+gitr0+
e2ab481ebe964321c358ab9d6402088c714adcbe/git/tools/TexturePacker'
| make: *** [tools/TexturePacker/TexturePacker] Error 2
| FATAL: oe_runmake failed
| ERROR: Function do_compile failed
NOTE: package xbmc-10.05-r9+gitr0+
e2ab481ebe964321c358ab9d6402088c714adcbe: task do_compile: Failed
ERROR: TaskFailed event exception, aborting
ERROR: Build of /oe/openembedded/recipes/xbmc/xbmc_svn.bb do_compile failed
ERROR: Task 13 (/oe/openembedded/recipes/xbmc/xbmc_svn.bb, do_compile) failed with 256
ERROR: '/oe/openembedded/recipes/xbmc/xbmc_svn.bb' failed
ERROR: '/oe/openembedded/recipes/xbmc/xbmc_svn.bb' failed
ERROR: '/oe/openembedded/recipes/xbmc/xbmc_svn.bb' failed
A fix was provided upstream in changeset 35484 [1][2] and on the list by Eric Colleu [3].
This patch is build tested with `angstrom-2008.1` and `minimal`.
[1] http://trac.xbmc.org/changeset/35484
[2] https://github.com/xbmc/xbmc/commit/
9e765ccae4ef9753c94b793f44931d84f65ca99c
[3] http://lists.linuxtogo.org/pipermail/openembedded-devel/2010-November/027418.html
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Paul Menzel [Wed, 1 Dec 2010 16:27:33 +0000 (17:27 +0100)]
xbmc: add `zlib` to `DEPENDS`
XBMC depends on `zlib` [1] which is indirectly provided by other dependencies like `ffmpeg.inc` [2]. Add `zlib` to `DEPENDS` to avoid possible future breakage.
[1] http://trac.xbmc.org/browser/trunk/README.linux?rev=35279#L54
[2] http://cgit.openembedded.org/cgit.cgi/openembedded/tree/recipes/ffmpeg/ffmpeg.inc?h=org.openembedded.dev&id=
5316c5b1416391f15277ce867489e525b7eccd6e#n12
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Graham Gower [Tue, 21 Dec 2010 12:54:49 +0000 (12:54 +0000)]
acl_2.2.49.bb: Fix build when DISTRO_FEATURES lacks largefile.
Signed-off-by: Graham Gower <graham.gower@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Paul Menzel [Fri, 17 Dec 2010 12:27:02 +0000 (13:27 +0100)]
ffmpeg: replace tabulators with spaces for consistency
`omapfbplay*.bb` recipes use tabulators consistently and therefore they are not changed.
Use
grep -e $'\t' ffmpeg_*bb
to find tabulators in Bash [1].
[1] http://www.claudiokuenzler.com/blog/99/tabulator-in-bash
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Khem Raj [Sat, 25 Dec 2010 11:13:16 +0000 (03:13 -0800)]
gcc-4.5: Fix QT build due to bug in volatile bit fields
This could be fixed in three ways
1. apply http://gcc.gnu.org/ml/gcc-patches/2010-11/msg02245.html to gcc
2. Backout linaro/gcc-4.5-r99425.patch from gcc
3. Apply the workaround to QT 4.7.1 from
http://bazaar.launchpad.net/%7Eubuntu-branches/ubuntu/natty/qt4-x11/natty/revision/136
I chose the first one.
Signed-off-by: Khem Raj <kraj@leto.(none)>
Martin Jansa [Thu, 23 Dec 2010 20:41:37 +0000 (21:41 +0100)]
vala-dbus-binding-tool: bump SRCREV for version supporting --gdbus switch
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Khem Raj [Fri, 24 Dec 2010 16:30:13 +0000 (08:30 -0800)]
linux-efikamx: Use the tars from sources mirror.
* Original source is gone.
* For git recipe use the gitorious repo ( fetch fails from gitorious for now)
Signed-off-by: Khem Raj <kraj@leto.(none)>
Frans Meulenbroeks [Fri, 24 Dec 2010 15:44:31 +0000 (16:44 +0100)]
libmpd_0.17.96.bb: removed old version
(we already removed the nonbuildable gmpc_0.17.96 version
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Frans Meulenbroeks [Fri, 24 Dec 2010 15:41:42 +0000 (16:41 +0100)]
gmpc: removed old versions
- these do not build with libtool 2.4
- are quite old
- are not pinned
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Frans Meulenbroeks [Fri, 24 Dec 2010 07:52:53 +0000 (08:52 +0100)]
libsdl-image: moved task to do_configure_prepend changed rm into rm -f
- less tasks makes it slighly faster
- other recipes also do this in do_configure_prepend or do_configure
- rm -f avoid error of file dues not exist (e.g. because the task is ran twice)
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Frans Meulenbroeks [Fri, 24 Dec 2010 07:50:34 +0000 (08:50 +0100)]
changed rm into rm -f to remove old libtool stuff
this keeps things working even if the files are not there
(e.g. because configure is ran twice)
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Michael 'Mickey' Lauer [Fri, 24 Dec 2010 15:44:13 +0000 (16:44 +0100)]
fso: bump to
ab89284af7607a5b9ded8424f0ac789ef94bc590 and get rid of dbus and dbus-glib dependencies
Michael 'Mickey' Lauer [Fri, 24 Dec 2010 15:40:01 +0000 (16:40 +0100)]
libfso-glib: build from gdbus branch, remove dbus-glib dependency
NOTE: This recipe now needs glib >= 2.26 to build
Koen Kooi [Fri, 24 Dec 2010 11:09:26 +0000 (12:09 +0100)]
opkg: bump SRCREV to 596 to get fixes for long symlink paths
Signed-off-by: Koen Kooi <koen@openembedded.org>
Martin Jansa [Fri, 24 Dec 2010 11:28:40 +0000 (12:28 +0100)]
gdbus-binding-tool: add glib-2.0-utils to RDEPENDS for glib-genmarshal
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Koen Kooi [Fri, 24 Dec 2010 10:53:16 +0000 (11:53 +0100)]
linux-omap-psp 2.6.32: disable PM for am3517-crane
Signed-off-by: Koen Kooi <koen@openembedded.org>
Martin Jansa [Fri, 24 Dec 2010 10:10:21 +0000 (11:10 +0100)]
gdbus-binding-tool: new recipe
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Martin Jansa [Thu, 23 Dec 2010 22:11:05 +0000 (23:11 +0100)]
u-boot: update env for SHR on nokia900 and use better gcc fix
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Koen Kooi [Fri, 24 Dec 2010 09:50:28 +0000 (10:50 +0100)]
gnome-screensaver: disable for angstrom
Signed-off-by: Koen Kooi <koen@openembedded.org>
Frans Meulenbroeks [Fri, 24 Dec 2010 07:34:16 +0000 (08:34 +0100)]
gmpc: rm -f to avoid failure if the files are not there
e.g. if configure is run twice.
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Graham Gower [Fri, 24 Dec 2010 00:09:30 +0000 (10:39 +1030)]
ublibc.inc, micro-uclibc.conf: Avoid gettext in uclibc systems.
Signed-off-by: Graham Gower <graham.gower@gmail.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
Frans Meulenbroeks [Thu, 23 Dec 2010 21:08:34 +0000 (22:08 +0100)]
gmpc: fix libtool issue, used inherit autotools
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Martin Jansa [Thu, 23 Dec 2010 16:10:50 +0000 (16:10 +0000)]
dbus: upgrade 1.4.0 to 1.4.1 and make it new default CVE-2010-4352
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
Martin Jansa [Tue, 7 Dec 2010 12:17:36 +0000 (13:17 +0100)]
u-boot_git: add support for nokia900
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Martin Jansa [Thu, 23 Dec 2010 20:13:54 +0000 (21:13 +0100)]
vala: add version 0.11.2.1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Tom Rini [Thu, 23 Dec 2010 18:25:32 +0000 (11:25 -0700)]
python-pysqlite2: Fix SRC_URI
Signed-off-by: Tom Rini <tom_rini@mentor.com>
Alex Ferguson [Thu, 23 Dec 2010 16:53:30 +0000 (18:53 +0200)]
midpath: Add custom midpath-launcher-j2se script for phoneme.
The default script assumes a jvm other than phoneme. Since we
use phoneme in jlime, we'll need a custom script.
Signed-off-by: Alex Ferguson <thoughtmonster@gmail.com>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Alex Ferguson [Thu, 23 Dec 2010 16:53:29 +0000 (18:53 +0200)]
task-muffinman: Use phoneme instead of jamvm.
PhoneME is slighly faster than jamvm, so we use that instead.
Bumped PR.
Signed-off-by: Alex Ferguson <thoughtmonster@gmail.com>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Alex Ferguson [Thu, 23 Dec 2010 16:53:28 +0000 (18:53 +0200)]
phoneme-advanced.inc: Fix recipe for mips targets.
Fixed recipe for mips targets by implementing oe_phoneme_configmips
which specifies -lm for LINK_ARCH_LIBS.
Signed-off-by: Alex Ferguson <thoughtmonster@gmail.com>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Alex Ferguson [Thu, 23 Dec 2010 16:53:27 +0000 (18:53 +0200)]
echinus: Change rule for jamvm to cvm.
Changed Echinus*rule3 from jamvm to cvm because we use phoneme now.
Signed-off-by: Alex Ferguson <thoughtmonster@gmail.com>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Alex Ferguson [Wed, 22 Dec 2010 11:51:29 +0000 (13:51 +0200)]
task-muffinman: Add jamvm, midpath and xmlpull.
This, along with additions to other packages enables a
working J2ME environment.
Bumped PR.
Signed-off-by: Alex Ferguson <thoughtmonster@gmail.com>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Alex Ferguson [Wed, 22 Dec 2010 11:51:28 +0000 (13:51 +0200)]
jlime-extras: Update jlime-extras recipe to version 1.0.5.
Version 1.0.5 contains some fixes and configuration for jamvm.
Signed-off-by: Alex Ferguson <thoughtmonster@gmail.com>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Alex Ferguson [Wed, 22 Dec 2010 11:51:27 +0000 (13:51 +0200)]
base-files: Add fstab for ben-nanonote.
Added fstab, which among other things enables swap by default.
Signed-off-by: Alex Ferguson <thoughtmonster@gmail.com>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Alex Ferguson [Wed, 22 Dec 2010 11:51:26 +0000 (13:51 +0200)]
echinus: Add rule for jamvm.
Added a rule for mapping jamvm to a fullscreen window by
default.
Bumped PR in echinus-0.4.3.2 recipe.
Signed-off-by: Alex Ferguson <thoughtmonster@gmail.com>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Alex Ferguson [Wed, 22 Dec 2010 11:51:25 +0000 (13:51 +0200)]
midpath: Fix midpath-core and midpath-cldc, add patches.
midpath-core was slightly refactored, and now installs the
configuration files needed which are picked up locally and
can be overriden per-platform. A much more elegant solution,
in my opinion. Two patches were added to midpath-core, one
which changes the default UI colors to a more palatable gray
pallete and one which disables the mouse cursor and enables
key repeating for the SDL backend.
midpath-cldc now builds files libmidpathfile and libmidpathnio
(via --enable-cldc-vm) which are required, at least for a jamvm
+ midpath combo. No harm in installing them anyways.
Configuration files moved around, and two more added, one default
and one for the ben-nanonote.
PR bumbed all around.
Signed-off-by: Alex Ferguson <thoughtmonster@gmail.com>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Denis 'GNUtoo' Carikli [Tue, 4 May 2010 15:19:01 +0000 (17:19 +0200)]
compat-wireless.inc : fix installation
using oe_runmake export LDFLAGS which makes the installation fail,
so we use LDFLAGS="" for the installation
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
Signed-off-by: Eric Bénard <eric@eukrea.com>
Eric BENARD [Mon, 3 May 2010 11:22:35 +0000 (11:22 +0000)]
compat-wireless: Add latest Linux wireless drivers
- provides latest (linux-next) drivers for older kernels
Signed-off-by: Eric Bénard <eric@eukrea.com>
Koen Kooi [Thu, 23 Dec 2010 09:13:23 +0000 (10:13 +0100)]
linux-omap4: add patch to enable DVI
Signed-off-by: Koen Kooi <k-kooi@ti.com>
Koen Kooi [Thu, 23 Dec 2010 09:13:23 +0000 (10:13 +0100)]
linux-omap 2.6.37rc: bump to rc7
Signed-off-by: Koen Kooi <k-kooi@ti.com>
Koen Kooi [Thu, 23 Dec 2010 08:50:11 +0000 (09:50 +0100)]
linux-omap-psp 2.6.32: update defconfig for craneboard to be more usefull and not break udev
Signed-off-by: Koen Kooi <k-kooi@ti.com>
Koen Kooi [Thu, 23 Dec 2010 07:42:34 +0000 (08:42 +0100)]
omapfbplay-dce: bump PR for libdce change
Signed-off-by: Koen Kooi <koen@openembedded.org>
Paul Eggleton [Thu, 23 Dec 2010 01:17:23 +0000 (01:17 +0000)]
libopie2: fix compilation of 1.2.5 version with gcc 4.5
Adds some missing includes in owavrecorder.cpp.
Signed-off-by: Paul Eggleton <bluelightning@bluelightning.org>
Khem Raj [Wed, 22 Dec 2010 06:19:18 +0000 (22:19 -0800)]
sane-toolchain.inc: Use BASE_PACKAGE_ARCH instead of FEED_ARCH and prepend to OVERRIDES
Currently it ends up after local override and hence appears first in FILESPATH
and for buiding uclibc_git.bb on qemuarm it picks wrong uClibc.machine file from
uclibc-git/armv5te where as it should have picked from uclibc-git/qemuarm
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Khem Raj [Tue, 21 Dec 2010 05:53:36 +0000 (21:53 -0800)]
gcc-4.5: Apply patches upto 2010.12 release of linaro gcc
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Martin Jansa [Sat, 18 Dec 2010 16:58:19 +0000 (17:58 +0100)]
linux(-kexecboot): bump SRCREV a bit more to rc7
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Martin Jansa [Wed, 22 Dec 2010 09:07:16 +0000 (10:07 +0100)]
xorg-docs,xorg-sgml-doctools: upgrade from 1.5.99.901 to 1.6
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Cliff Brake [Wed, 22 Dec 2010 16:13:54 +0000 (11:13 -0500)]
README: test commit
Eric BENARD [Wed, 22 Dec 2010 06:03:47 +0000 (06:03 +0000)]
asterisk: fix SRC_URI
* keep the higher version which fetch and patch
* fix SRC_URI for all the asterisk recipes
Signed-off-by: Eric Bénard <eric@eukrea.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
Eric BENARD [Wed, 22 Dec 2010 06:03:46 +0000 (06:03 +0000)]
asterisk: move non working recipes to nonworking directory
Signed-off-by: Eric Bénard <eric@eukrea.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Cliff Brake [Tue, 21 Dec 2010 21:29:29 +0000 (16:29 -0500)]
README: another test commit
Cliff Brake [Tue, 21 Dec 2010 21:25:36 +0000 (16:25 -0500)]
README: dummy commit to test
Cliff Brake [Tue, 21 Dec 2010 21:12:05 +0000 (16:12 -0500)]
MAINTAINERS: test commit
Martin Jansa [Tue, 21 Dec 2010 20:33:36 +0000 (21:33 +0100)]
task-shr-feed: add mokophone, mokopanel
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Daniele Ricci [Tue, 21 Dec 2010 18:32:06 +0000 (18:32 +0000)]
mokosuite2: removed phone and panel from appbunch in favour of dedicated applications
* mokosuite2 SRCREV bump
* mokohome SRCREV BUMP
* libmokosuite2 SRCREV BUMP
* mokopanel: new recipe
* mokophone: new recipe
Signed-off-by: Daniele Ricci <daniele.athome@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Martin Jansa [Tue, 21 Dec 2010 20:37:30 +0000 (21:37 +0100)]
mesa-7.9: bump PR after talloc changes
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Martin Jansa [Tue, 21 Dec 2010 22:09:53 +0000 (22:09 +0000)]
samba: use external talloc instead of building own
* libtalloc now conflicts with libtalloc from talloc recipe
* tested only with samba-3.2.15
Acked-by: Koen Kooi <koen@openembedded.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Martin Jansa [Tue, 21 Dec 2010 22:09:52 +0000 (22:09 +0000)]
talloc: install .so links
* otherwise mesa finds talloc.pc, but doesn't link to libtalloc.so.2 in the end
Acked-by: Koen Kooi <koen@openembedded.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Martin Jansa [Tue, 21 Dec 2010 08:14:01 +0000 (09:14 +0100)]
obsolete: cleanup xorg stuff
* it's still in git history, no need to keep it in recipes/obsolete forever
Martin Jansa [Wed, 15 Dec 2010 08:57:10 +0000 (09:57 +0100)]
obsolete/nonworking: cleanup openmoko stuff as planned in removal.txt
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
chase maupin [Wed, 22 Dec 2010 04:30:06 +0000 (04:30 +0000)]
ti-pru-sw-examples: remove unneeded settings
* Remove unneeded settings in the do_compile function.
Variables were being set to point to non-existent locations
in the ${D} directory. Since the files requires were already
staged by other packages these variables do not need to be set.
* Bump the PR
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
chase maupin [Wed, 22 Dec 2010 04:30:05 +0000 (04:30 +0000)]
ti-pru-sw-edma-library: stage needed header
* Stage the edma.h header which is needed by other example
applications that link with this library.
* Bump the PR
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
chase maupin [Fri, 17 Dec 2010 06:56:32 +0000 (06:56 +0000)]
sourceipk: copy over hidden files and dirs
* Copy hidden files and directories such as eclipse
project files. Currently these files are not copied
for the top-level directory which makes applications with
eclipse project files not usable with eclipse.
* Only need to copy hidden files for the top-level directory
since subdirectories do not experience this problem
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Koen Kooi [Tue, 21 Dec 2010 18:06:06 +0000 (18:06 +0000)]
package ipk bbclass: store build branch and revision in ipkg metadata
The ipkg metadata will look like this now:
koen@dominion:/OE/angstrom-dev/deploy/glibc$ dpkg-deb -I ipk/am3517-evm/matrix-gui_1.3-r19.0.6_am3517-evm.ipk
new debian package, version 2.0.
size 24112 bytes: control archive= 540 bytes.
629 bytes, 13 lines control
Package: matrix-gui
Version: 1.3-r19.0.6
Description: Matrix GUI for Qt X11
Section: multimedia
Priority: optional
Maintainer: Angstrom Developers <angstrom-distro-devel@linuxtogo.org>
License: BSD
Architecture: am3517-evm
OE: matrix-gui
Homepage: https://gforge.ti.com/gf/project/matrix_gui/
Build: org.openembedded.dev/f35ab2d
Depends: matrix-gui-common, libpng12-0, libfreetype6, libz1, libgthread-2.0-0, libqtwebkit4, libphonon4, libqtdbus4, libqtxml4, libqtgui4, libqtnetwork4, libqtcore4, libglib-2.0-0, libc6, libstdc++6, libgcc1
Source: svn://gforge.ti.com/svn/matrix_gui/;module=trunk;proto=https;user=anonymous;pswd=''
koen@dominion:/OE/angstrom-dev/deploy/glibc$
Signed-off-by: Koen Kooi <koen@openembedded.org>
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Chase Maupin <chase.maupin@ti.com>
Koen Kooi [Tue, 21 Dec 2010 16:20:21 +0000 (17:20 +0100)]
libdce: roll back SRCREV again to make omapfbplay work
Signed-off-by: Koen Kooi <koen@openembedded.org>
Koen Kooi [Tue, 21 Dec 2010 16:19:43 +0000 (17:19 +0100)]
linux-omap4: readd some missing patches
Signed-off-by: Koen Kooi <koen@openembedded.org>
Gabbasov, Andrew [Mon, 20 Dec 2010 20:40:14 +0000 (12:40 -0800)]
ust.inc: Rework FILES
libust.so is actually an ld script (grouping libust.so.0 and
libust_initializer.o), so I doubt it has any usefullness on the target. The
note about preloading should concern other libust*.so, that are indeed used in
preloading by 'usttrace' script. And these .so libraries are going to target,
not to -dev. And for libust.so that script preloads libust.so.0.
Signed-off-by: Andrew Gabbasov <andrew_gabbasov@mentor.com>
Signed-off-by: Tom Rini <tom_rini@mentor.com>