summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2010-11-12Merge branch 'master' into testing-nexttested_2010-11-12testingCliff Brake
2010-11-11bind 9.3.6: Drop nslookupTom Rini
All other versions have been removing this, so sync up. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-11ifupdown: Add update-alternativesTom Rini
Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-11realpath: Add update-alternativesTom Rini
Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-11start-stop-daemon: Add update-alternativesTom Rini
Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-11unzip: Add update-alternatives to unzipTom Rini
Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-11console-tools: Add fgconsole to u-aTom Rini
Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-11bc: Use u-a on 'dc'Tom Rini
Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-11task-proper-tools: Switch from netkit-telnet to inetutilsTom Rini
netkit-telnet is very old and doesn't compile for PowerPC to boot. Switch to inetutils here as that's still maintained upstream. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-11linux 2.6.33: Add mpc831[35]e-rdb supportTom Rini
Bring these boards up to a slightly more modern version. In the case of 8313, grab upstream defconfig and in the case of 8315 just confirm against upstream defconfig for nothing too strange. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-11libsdl-mixer 1.2.11: fix libvorbis's search pathDenis 'GNUtoo' Carikli
without that patch configure outputed something like this: checking tremor/ivorbisfile.h usability... yes checking tremor/ivorbisfile.h presence... yes checking for tremor/ivorbisfile.h... yes checking for ov_open_callbacks in -lvorbisidec... no configure: WARNING: *** Unable to find Ogg Vorbis Tremor library (http://www.xiph.org/) configure: WARNING: Ogg Vorbis support disabled Then digging into the configure script made me found that: LIBS="-lvorbisfile $LIBS" just before the compilation of the test(the following output comes from config.log): configure:11947: arm-oe-linux-gnueabi-gcc [...] -o conftest [...] conftest.c -lvorbisfile -L/usr/lib -lmikmod -ldl -lm >&5 /usr/lib/libvorbisfile.so: file not recognized: File format not recognized collect2: ld returned 1 exit status configure:11947: $? = 1 we clearly see -lvorbisfile -L/usr/lib ./configure --help says: LIBS libraries to pass to the linker, e.g. -l<library> so I simply overwritten LIBS in the recipe in EXTRA_OECONF The result was tested on nokia900 with wesnoth-wvga: Before it couldn't play its ogg vorbis music, and now it can. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
2010-11-11Revert "autoconf: don't choke on m4-native in ASSUME_PROVIDED"Chris Larson
Drop this for now, to avoid risk of introduction of another problem. Will revisit and verify both. This reverts commit 173540c96aac632de5ff1a78b25cdc49201ee27e.
2010-11-11autoconf: don't choke on m4-native in ASSUME_PROVIDEDChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-11-11inetutils: Use fakeroot in do_installTom Rini
rsh/related and traceroute will otherwise be usuable. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-11preferred-xorg-versions: use git release of xf86-input-mutouchMichael Smith
The latest source release, 1.2.1, fails to build with X11R7.5. Signed-off-by: Michael Smith <msmith@cbnco.com>
2010-11-11xf86-input-mutouch: add latest git releaseMichael Smith
Fixes build with XINPUT ABI 7. Signed-off-by: Michael Smith <msmith@cbnco.com>
2010-11-11smpeg: configure with --disable-rpathMichael Smith
Otherwise libtool and ld try to link against ${libdir}/libdl.so.2 on the host system. Signed-off-by: Michael Smith <msmith@cbnco.com>
2010-11-11libsdl-x11: configure with --disable-rpathMichael Smith
Otherwise libtool and ld try to link against ${libdir}/libdl.so.2 on the host system. Signed-off-by: Michael Smith <msmith@cbnco.com>
2010-11-10freerdp (git): update revisionOtavio Salvador
2010-11-10freerdp (inc): fix depends and drop .a and .la files from pluginsOtavio Salvador
2010-11-10vala-terminal_git.bb: bump SRCREV to get fix for segfault when adding a new tabKlaus Kurzmann
Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de>
2010-11-10mx25-3-stack: add machine's configuration fileEric Bénard
this file was forgotten in commit : 50ea5378c92557b609324a962fea56c076783edf Signed-off-by: Eric Bénard <eric@eukrea.com>
2010-11-09distro-version, kaeilos-version: don't export METADATA_BRANCH and ↵Graham Gower
METADATA_REVISION Causes infinite recursion, which may look like this: NOTE: <type 'exceptions.RuntimeError'>:maximum recursion depth exceeded while calling a Python object while evaluating: ${@base_get_scm_branch(d)} Or this: Traceback (most recent call last): File "/home/grg/oe2/bitbake/lib/bb/server/none.py", line 128, in idle_commands retval = function(self, data, False) File "/home/grg/oe2/bitbake/lib/bb/cooker.py", line 716, in buildTargetsIdle retval = rq.execute_runqueue() File "/home/grg/oe2/bitbake/lib/bb/runqueue.py", line 877, in execute_runqueue self.execute_runqueue_internal() File "/home/grg/oe2/bitbake/lib/bb/runqueue.py", line 992, in execute_runqueue_internal self.build_pipes[pipe].read() File "/home/grg/oe2/bitbake/lib/bb/runqueue.py", line 1227, in read bb.event.fire_from_worker(self.queue[:index+8], self.d) File "/home/grg/oe2/bitbake/lib/bb/event.py", line 137, in fire_from_worker event = pickle.loads(event[7:-8]) File "/usr/lib64/python2.6/pickle.py", line 1374, in loads return Unpickler(file).load() File "/usr/lib64/python2.6/pickle.py", line 858, in load dispatch[key](self) File "/usr/lib64/python2.6/pickle.py", line 966, in load_string raise ValueError, "insecure string pickle" ValueError: insecure string pickle Signed-off-by: Graham Gower <graham.gower@gmail.com> Acked-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-11-09fbpanel: add 6.1Michael Smith
Signed-off-by: Michael Smith <msmith@cbnco.com>
2010-11-09metacity: patch configure to add --disable-canberraMichael Smith
Canberra is still enabled by default, but amenders can add --disable-canberra to EXTRA_OECONF. Signed-off-by: Michael Smith <msmith@cbnco.com>
2010-11-09metacity: upgrade to 2.30.3 from 2.30.0Michael Smith
Signed-off-by: Michael Smith <msmith@cbnco.com>
2010-11-09webkit-gtk: fix packaging of error.html for svn releaseMichael Smith
The resources under ${datadir} have moved around between versions. Use a wildcard in case they move again. No PR bump for v1.2.3. It already packages the correct file. Signed-off-by: Michael Smith <msmith@cbnco.com>
2010-11-09gcc-configure-common.inc: sed <sysroot>/usr/include hardcodes paths to use ↵Khem Raj
target_includedir This fixes the problem where gcc fails to detect presence of libssp and does not detect powerpc long double 128 bit support correctly on systems which do not use common <sysroot>/usr/include paths like we have in micro distro Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Tom Rini <tom_rini@mentor.com>
2010-11-09gzip: Fix postrm section, bump PRTom Rini
We don't want to un-rename files here since they're packaged up as renamed Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-11-08image: don't include glibc-localedata-i18n when IMAGE_LINGUAS is emptyChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-11-08srctree: ensure setscene is still runChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-11-08jack-0.118.0: fix SRCREVChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-11-08autoconf: don't build the documentationChris Larson
This kills one of the dependencies upon help2man. In the future, will switch this to be driven by a documentation feature in DISTRO_FEATURES. Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-11-08oe.patch: for 'patch', always use -fChris Larson
Apparently quilt always ignores hunks that seem already applied, so let's do the same via -f. -t would probably be better, but isn't safe to use from a portability standpoint. Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-11-08jack: use the svn repository to fetchChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-11-08murrine: update to 0.98.1Koen Kooi
2010-11-07iproute2: nuke /var/lib/arpdMichael Smith
It belongs in volatiles, if we build arpd - but we don't. Signed-off-by: Michael Smith <msmith@cbnco.com>
2010-11-07libprelude: workaround build failures with libtool 2.4Roman Khimov
Like: In file included from prelude-plugin.c:56:0: /include/prelude-plugin.h:66:20: error: conflicting types for 'lt__PROGRAM__LTX_preloaded_symbols' /oe/build-angstrom-next/angstrom-dev/sysroots/armv7a-angstrom-linux-gnueabi/usr/include/ltdl.h:106:36: note: previous declaration of 'lt__PROGRAM__LTX_preloaded_symbols' was here make[4]: *** [prelude-plugin.lo] Error 1 Originally reported by Paul Menzel <paulepanter@users.sourceforge.net>. Forwarded upstream as https://dev.prelude-technologies.com/issues/386 Signed-off-by: Roman I Khimov <khimov@altell.ru> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>
2010-11-07linux-palmpre: add kbd-native to DEPENDSSimon Busch
Signed-off-by: Simon Busch <morphis@gravedo.de>
2010-11-07xserver-xorg-conf: om-gta0* enable right-click emulation and disable ↵Martin Jansa
AutoAddDevices Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-11-06Add Freescale i.MX25 3stack supportMickaël CHAZAUX
This patch adds support for the i.MX25 3Stack platform. It is based on the patches released by Freescale as part of LTIB. EB: linux & u-boot patches are the same as for babbage so use the same name and same checksums. Author: Mickaël CHAZAUX <mchazaux@adeneo-embedded.com> Signed-off-by: Eric Bénard <eric@eukrea.com>
2010-11-06topas910: linux_2.6.26 fix line breakMatthias Günther
Author: Matthias Günther <matgnt@gmail.com> Signed-off-by: Eric Bénard <eric@eukrea.com>
2010-11-06topas910: Add u-boot support.Matthias Günther
Author: Matthias Günther <matgnt@gmail.com> Signed-off-by: Eric Bénard <eric@eukrea.com>
2010-11-06topas910: Add BSP patch against 2.6.32.9 and make it default.Matthias Günther
Signed-off-by: Eric Bénard <eric@eukrea.com>
2010-11-06cgreen: new recipejoao freitas
cgreen is a library to do unit test for C language EB: squashed 4 patches into one Author: joao freitas <joaohf@gmail.com> Signed-off-by: Eric Bénard <eric@eukrea.com>
2010-11-06lksctp: rename libsctp packagejoao freitas
Author: joao freitas <joaohf@gmail.com> Signed-off-by: Eric Bénard <eric@eukrea.com>
2010-11-06lksctp: fix missing packagesjoao freitas
Author: joao freitas <joaohf@gmail.com> Signed-off-by: Eric Bénard <eric@eukrea.com>
2010-11-06linux_2.6.32: add bluepro supportVitus Jensen
[PATCH 3/4] linux_2.6.32: add bluepro support Signed-off-by: Vitus Jensen <vjensen@gmx.de> Signed-off-by: Eric Bénard <eric@eukrea.com>
2010-11-06netbase: add bluepro specific /etc/network/interfacesVitus Jensen
* eth0, usb for host connectivity * can0, can1 to control CAN devices Signed-off-by: Vitus Jensen <vjensen@gmx.de> Signed-off-by: Eric Bénard <eric@eukrea.com>
2010-11-06bluepro: add machine configuration for TQ BlueProVitus Jensen
Signed-off-by: Vitus Jensen <vjensen@gmx.de> Signed-off-by: Eric Bénard <eric@eukrea.com>