aboutsummaryrefslogtreecommitdiffstats
path: root/conf
AgeCommit message (Collapse)Author
2010-06-10bitbake.conf: Drop some unnecessary getVar usage in python snippetsChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-06-10bitbake.conf: make the EXTENDPE bits slightly less disturbingChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-06-10bitbake.conf: don't filter out nonexisting paths from FILESPATHChris Larson
It's unnecessary, and can cause problems with amend.bbclass. Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-06-10bitbake.conf: use := for BUILD_OS and BUILD_ARCHChris Larson
These don't change, so their initial values should be just fine. Apparently, in a typical build, those os.uname() snippets are called around 46k times, which seems a tad excessive :) Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-06-09minimal-uclibc.conf: Add pam to DISTRO_FEATURESKhem Raj
* if pam is not in the DISTRO_FEATURES then pam modules dont end up in th root file system but when using shadow pam is used for authentication and uclibc needs these modules otherwise login fails. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-09kaeilos-2009-preferred-versions.inc: some distro version updates and mainly ↵Marco Cavallini
automake-native 1.11
2010-06-08opkg: bump SRCREV for fix preventing overeager removing of files which were ↵Martin Jansa
after opkg upgrade owned by different package Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-08EFL: bump SRCREV to new snapshotsMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-08shr: prefer postgresql 8.4.4Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-06-07linux-omap-psp 2.6.32: rebase patches onto new baselineKoen Kooi
2010-06-06linux-omap-psp 2.6.32: disable CDC_EEM for beagleboardKoen Kooi
2010-06-05efl: revert SRCREV bump, needs more testingKoen Kooi
2010-06-05angstrom: automake 1.11 doesn't exist, 1.11.1 doesKoen Kooi
2010-06-05sane-toolchain-uclibc.inc: Dont force USE_NLS for glib-2.0 here.Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-05angstrom-2008-preferred-versions.inc: Set 1.11 PREFERRED_VERSION for ↵Khem Raj
automake-native Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Koen Kooi <koen@openembedded.org>
2010-06-04motorola-ezx-base.inc: Add support for ubifsIlya Petrov
Signed-off-by: Ilya Petrov <ilya.muromec@gmail.com> Signed-off-by: Antonio Ospite <ospite@studenti.unina.it> Acked-by: Koen Kooi <koen@openembedded.org>
2010-06-04motorola-ezx-base.inc: refresh machine definitionAntonio Ospite
Reorder sections to a more logic scheme, following magician.conf, other cleanups: * sort MACHINE_FEATURES alphabetically * add ezx-gen-blob to EXTRA_IMAGEDEPENDS * use MODUTILS=26 * Add needed kernel modules for BP Signed-off-by: Antonio Ospite <ospite@studenti.unina.it> Acked-by: Koen Kooi <koen@openembedded.org>
2010-06-04motorola-ezx-base.inc: use PREFERRED_PROVIDER_virtual/xserverAntonio Ospite
This fixes a "multiple recipes provide xserver" warning. Signed-off-by: Antonio Ospite <ospite@studenti.unina.it> Acked-by: Koen Kooi <koen@openembedded.org>
2010-06-02Revert "qemu.inc: zap_root_password for qemu images."Khem Raj
Its better not to put this was here but in the images if needed. This reverts commit 39a7a0152d5d9a38ab202e11eb2eaab163dc35fa.
2010-06-02qemu.inc: zap_root_password for qemu images.Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-06-02opkg: bump SRCREV to 530Koen Kooi
The commits since 527 are: * Don't try to print cmd_name before its initialised. From Amanous, Issue #48 * Add a message for the case that no installation candidate can be found. * Bump maximum message length from 256 to 4096.
2010-05-31bug20.conf: Sync with Bug Labs repoStefan Schmidt
This brings the bug20 machine file in sync with the Bug Labs internal version. The difference was only ubi as FSTYPE and some jffs2 tweaking.
2010-05-31beagleboard: remove u-boot preferred versionKoen Kooi
2010-05-29qemux86.conf: Set PREFERRED_PROVIDER_virtual/kernel to linux instead of ↵Khem Raj
linux-rp. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-05-26linux-openmoko: partial revert of rename to PN_PV shemeMartin Jansa
* details in http://thread.gmane.org/gmane.comp.handhelds.openembedded/32950 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-05-26SHR: use eglibc-2.12 instead 2.11Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-05-26linux-openmoko: rename recipes to common PN_PV scheme, cleanup versioningMartin Jansa
* move DESCRIPTION to .inc * remove OEV, KERNEL_RELEASE and KERNEL_VERSION, keep KERNEL_* from kernel.bbclass * update distro/machine configs where needed Acked-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-05-26imote2.conf: Switch kernel to linux-zigbeeStefan Schmidt
2010-05-25imote2.conf: Only define the eraseblock size onceStefan Schmidt
The second definition overlayed the first one. It was consistent, but we still want to only have the correct one.
2010-05-24distro/minimal.conf: Dont keep CACHE as weak assignment.Khem Raj
* As this is a weak assignment and bitbake.conf has a proper assignment and bitbake.conf is included before distro conf file it leaves this weak assignment as no-op. The problem happens when using minimal but changing libc from eglibc to uclibc then it will use same cache directory and then its infact wrong. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-05-24xilinx-ml507: Add screen option and don't disable tty1Adrian Alonso
Signed-off-by: Adrian Alonso <aalonso00@gmail.com> Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
2010-05-23bitbake.conf: add ${datadir}/gdb/autoload to the default paths included in ↵Chris Larson
${PN}-dbg Some libraries provide gdb autoload script as a debugging aid. Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-05-22SlugOS: preferred-slugos-versions.inc - use older version of tclMike Westerhof
Avoids total mess-up of build env caused by the newer tcl recipe which has a bug, apparently, that overwites the regex.h file. This should be temporary, and this workaround should be removed once this problem is resolved.
2010-05-21linux-omap-psp 2.6.32: tweak reported powervalue for MUSB on beagleboardKoen Kooi
2010-05-20angstrom: fix java buildsKoen Kooi
2010-05-20sane-toolchain.inc: Don't hold ppc405 back to gcc 4.4.1Tom Rini
Given the other powerpc issues that are now fixed in 4.4.4, this leads to ppc405 being broken. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-05-19shr: add tk to DISTRO_FEATURES for python-idle->python-tkinter fixMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-05-19linux-davinci: Update to latest kernel for DA8xx/OMAPL1xxRoger Monk
* Update to latest kernel patches PSP 3.20.00.12 * Still 2.6.33rc4 * Update defconfigs to match updated kernel configs * Bump Kernel PR Signed-off-by: Roger Monk <r-monk@ti.com> Signed-off-by: Koen Kooi <k-kooi@ti.com>
2010-05-18linux-ixp4xx: Add a patch to avoid a name clash with the C library onMike Westerhof
recent buildhosts. This will not change the generated binary; it merely facilitates building the kernel and modules.
2010-05-18dm3730-am3715-evm: disable virtual console, set JFFS2 erase blockDenys Dmytriyenko
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
2010-05-17EFL: bump SRCREV a bit more for batget module fixMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-05-17htcleo: use uncompressed kernel iamgeLukas Gorris
2010-05-16shr: drop PREFERRED_VERSIONs for toolchain, now in sync with ↵Martin Jansa
sane-toolchain.inc again Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-05-15machine/qemush4: Add new machine for SH4 on qemuKhem Raj
* Make improvements to run-qemu script. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-05-15qemuppc: Add new machine qemuppc running ppc on QEMU.Khem Raj
* Tested with DISTRO=minimal image=minimal-image * Adjust run-qemu.sh to use native-qemu and fix variables needed for powerpc run. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-05-14machine/qemu.inc: Build and install qemu-native for qemu based targets.Khem Raj
* Some distributions like ubuntu dont ship roms which are needed to boot ppc targets therefore we need to use qemu-native to run the images, therefore always build qemu-native for qemu based targets Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-05-13sane-toolchain.inc: Bump preferred versions for binutils, gcc and eglibcKhem Raj
* Move gcc to 4.4.4, binutils to 2.20.1 and eglibc to 2.11 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-05-13machine/qemuarm: Move kernel version to 2.6.33Khem Raj
* Tested using gcc 4.4.4 DISTRO=minimal Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-05-13conf/machine/bug20.conf, add xf86-input-tslib for BUG2.0 touchscreenJohn Connolly
*BUG20 is using tslib for xorg touchscreen. *would like this to get into stable *tested on BUG2.0
2010-05-13imote2.conf: Restore old kernel provider.Stefan Schmidt
Thanks Koen for spotting.