aboutsummaryrefslogtreecommitdiffstats
path: root/conf/distro/include
AgeCommit message (Collapse)Author
2010-08-11eglibc: build with -ggdb3 as workaround for alignment trapsMartin Jansa
* I've seen it only with eglibc-2.12 built with gcc-4.5 that's why I bumped PR only in 2.12 * can be removed as soon as gcc bug is fixed Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-08-10Revert "angstrom: jpeg 8b doesn't build, prefer 6b for the time being"Koen Kooi
it seems to build again and Martin has sorted out the upgrade path issues on other commits This reverts commit 6b099fc3110b76c260c3adafe6f8960e27e42d8b.
2010-08-10angstrom-2007-for-openmoko.inc: removedFrans Meulenbroeks
was not used any more. XorA said on #oe that this was created for him, and that it could go Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-08-10openmoko: removed distroFrans Meulenbroeks
As discussed on #oe on Aug 10, 2010. Removed because this is not used or maintained any more. A message * * * Sorry, The Openmoko distribution has been removed on Aug 10, 2010. * It is recommended to use the DISTRO = "shr" instead. \ * \ * If you really need Openmoko you can still find it in git. * * will be given if someone is still using it. Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Michael 'Mickey' Lauer <mlauer@vanille-media.de> Acked-by: Martin Jansa <martin.jansa@gmail.com> Acked-by: Graeme Gregory <dp@xora.org.uk>
2010-08-09preferred-om-2008-versions.inc: Update PREFERRED_VERSION for libftdi confuse ↵Khem Raj
and ftdi_eeprom Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-08-06angstrom: jpeg 8b doesn't build, prefer 6b for the time beingKoen Kooi
2010-08-06shr: prefer ncurses 5.7 also for nativeMartin Jansa
2010-08-06shr: prefer ncurses 5.7Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-08-05openldap: remove versions 2.2.29 and 2.3.11Roman I Khimov
Both are almost 5 years old and seem to be unmaintained, also not supported by upstream authors and probably containing tons of known vulnerabilities. Signed-off-by: Roman I Khimov <khimov@altell.ru>
2010-08-04libxi: move to 1.3.2 with fixed ASCIIDOC testMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-08-03opkg recipe overhaul - removal of opkg-nogpg and opkg-nogpg-nocurl.Graham Gower
None of the distros in OE appear to want/need gpg or curl support in opkg; so have opkg.inc remove them by default. This diff makes things more consistent across all distros/tasks/images. The slugos recipe is kept intact and further divided from the more modern recipes. The opkg-native recipe is the sane-srcrev version even when building slugos, which should allow for changes to opkg related bbclasses without breaking the slugos build. Build tested for qemumipsel/minimal-image and nslu2/slugos-image. minimal-image builds 10% quicker in my setup and is 1mb smaller. Signed-off-by: Graham Gower <graham.gower@gmail.com> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-08-03xorg: bump latest versions from 2010-08-02Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-07-30angstrom: switch to qt 4.6.3Koen Kooi
2010-07-26Siteinfo cleanup v2Chris Larson
- Don't supply site files for native. - Split up the site information, so we don't need to add every single combination of os and architecture to the siteinfo.bbclass. - Drop the ${FILE_DIRNAME}/site-<bits> stuff, there are other ways to do it. - SITEINFO_ENDIANESS -> SITEINFO_ENDIANNESS. Signed-off-by: Chris Larson <clarson@kergoth.com>
2010-07-26Revert "Siteinfo cleanup"Chris Larson
Will revisit. This reverts commit 87dc166bade8722af4076c8644cac6a0a437826f.
2010-07-26Siteinfo cleanupChris Larson
- Don't supply site files for native - Split up the site information, so we don't need to add every single combination of os and architecture to the siteinfo.bbclass - Instead of specifically looking for '${FILE_DIRNAME}/site-${PV}/<sitefile>', leverage FILESPATH. Now it searches the paths in both BBPATH and FILESPATH for "site/<sitefile>". - SITEINFO_ENDIANESS -> SITEINFO_ENDIANNESS Signed-off-by: Chris Larson <clarson@kergoth.com>
2010-07-24angstrom-2008-preferred-versions.inc: Remove spitz and akita specific udev ↵Stanislav Brabec
version, opkg upgrade would break the system. Reverts 48dd1c1. Signed-off-by: Stanislav Brabec <utx@penguin.cz>
2010-07-24distro: Add new feature to indicate thumb-interworking.Khem Raj
* This would be used to decide if we can use BX in return instructions in uclibc. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-07-23EFL: bump SRCREVMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-07-21arm-thumb.inc: Make OVERRIDE TARGET_CC_ARCH TARGET_CC_KERNEL_ARCH ↵Khem Raj
conditionally apply for arm only. * Thumb is only relevant for ARM architecture so dont override if architecture is not arm. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-07-21arm-thumb.inc: Don't modify TARGET_CC_*ARCH on non-arm/armebTom Rini
Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-07-21distro: Move thumb into distro featuresKhem Raj
* Currenlty we define the thumb specific overrides in machine tune files and as machine conf files are included before the distro conf files the overrides dont get right values and set incorrectly. * This patch moves the tune-thumb.inc from machine/include into distro/include and lets distro decide on thumb and thumb-interworking features based on the machine selected. If a machine which does not support thumb like all armv4 based machines is selected then distro makes correct decision now to disable thumb and thumb-interworking based upon the machine seletected. Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-07-20sane-toolchain.inc: Check for architectures which dont support EABIKhem Raj
* This patch reverses the check for EABI support. This would mean that future processors will not have to be added everytime they come out. Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Stefan Schmidt <stefan@datenfreihafen.org>
2010-07-19Revert "distro: Move thumb into distro features"Khem Raj
This reverts commit e9fe87a13cf4e0453ff601c422ecbe6a98bc8f76. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-07-19sane-toolchain.inc: Add armv4 to ARM EABI supporting architectures.Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-07-19distro: Move thumb into distro featuresKhem Raj
* Currenlty we define the thumb specific overrides in machine tune files and as machine conf files are included before the distro conf files the overrides dont get right values and set incorrectly. * This patch moves the tune-thumb.inc from machine/include into distro/include and lets distro decide on thumb and thumb-interworking features based on the machine selected. If a machine which does not support thumb like all armv4 based machines is selected then distro makes correct decision now to disable thumb and thumb-interworking based upon the machine seletected. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-07-19opkg: bump SRCREV to 543Koen Kooi
2010-07-19angstrom-jalimo: fix openjdk-6-jre preferred versionMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <k-kooi@ti.com>
2010-07-17angstrom: don't use -ggdb3 for -native and -crossKoen Kooi
* As Phil points out, not enough people are debugging -native stuff * The actual bug in the git -native recipe not using links still isn't solved, though
2010-07-15libgee: move to known-good revisionMichael 'Mickey' Lauer
2010-07-15xserver-xorg: move from 1.8.99.904 to 1.8.99.905Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-07-14shr: include sane-toolchain-java.inc and angstrom-jalimo.conf, add largefile ↵Martin Jansa
to DISTRO_FEATURES Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-07-13angstrom: fix another regression with DISTRO_FEATURESKoen Kooi
*sigh*
2010-07-12shr: switch to a newer glib/gtk combo as Angsrom doesMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-07-10angstrom: fix busybox regression by adding 'ipv4 ipv6' to DISTRO_FEATURESKoen Kooi
kudos to SHR for spotting that
2010-07-10angstrom: switch to a newer glib/gtk comboKoen Kooi
2010-07-08uclibc: add 0.9.31Bernhard Reutner-Fischer
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-07-08uClibc: redo configurationBernhard Reutner-Fischer
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-07-08angstrom: include jalimo bits now that openjdk is in OEKoen Kooi
2010-07-07shr: prefer dbus 1.3.1Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-07-05angstrom-2008-preferred-versions.inc: Go back to udev-141 for Zaurus ↵Stanislav Brabec
clamshells. udev-151 requires kernel >= 2.6.27.
2010-07-03kaeilos-2009-preferred-versions.inc: updated packages versionMarco Cavallini
2010-07-01sane-toolchain.inc: use 4.4.4 as PREFERRED_GCC_VERSION for armv7Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Lukas-David Gorris <lukas@htc-linux.org>
2010-07-01xserver-xorg: upgrade 1.9 RC3 to RC4Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-07-01angstrom-jalimo: add config file tailored to building jalimo stuff for angstromKoen Kooi
2010-06-30EFL: bump SRCREV a bit more for tasn's fix for Arabic shapingMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-29angstrom: prefert python-pycairo 1.8.0Koen Kooi
2010-06-29efl: bump SRCREV to 49934Koen Kooi
2010-06-28shr: remove P_V for boost 1.40.0 -> prefer newer boost 1.41.0Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-28xorg: bump versions xorg-sgml-doctools xf86-video-intel libxfont util-macrosMartin Jansa
* adjust bumping script to handle -native versions better with BBCLASSEXTEND Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>