summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFiles
2010-08-04initscripts: functions machine id xilinx virtex5 platformsAdrian Alonso2
* Add machine_id support for xilinx virtex platforms used in xserver-common for args settings. * On Xilinx platforms there is no line `Hardware`. Instead it is stored in the line starting with `platform`. * Bump PR * v2 nicer machine_id function for handling xilinx virtex platforms Signed-off-by: Adrian Alonso <aalonso00@gmail.com> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-08-04xilinx-virtex5: Add machine config for Xilinx Virtex5 platformsAdrian Alonso1
* Config machine for virtex5 platforms ml507, ml510 * Hardware reference design at http://github.com/aalonso/xilinx-ml507 * v2 more descriptive subject Signed-off-by: Adrian Alonso <aalonso00@gmail.com> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-08-04xilinx-virtex4: Add machine config for Xilinx Virtex4 platformsAdrian Alonso1
* New config machine, generic support for Xilinx Virtex4 platforms ml401, ml403, ml405, ml410 * Tested on ml405 target board, powerpc based ref project design at http://github.com/aalonso/xilinx-ml405 * Target configuration handled in xilinx-bsp.bbclass * v2 more descriptive subject Signed-off-by: Adrian Alonso <aalonso00@gmail.com> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-08-04u-boot-xilinx: uboot for xilinx virtex4 virtex5 targetsAdrian Alonso1
* u-boot for xilinx platforms virtex4, virtex5 based * Inherits xilinx-bsp.bbclass for passing xparameters header file from hardware reference design project to match hardware/software model * v2 reorder patch set Signed-off-by: Adrian Alonso <aalonso00@gmail.com> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-08-04linux-xilinx: kernel recipe for xilinx virtex platformsAdrian Alonso1
* Kernel recipe for generic xilinx platforms * Inherits xilinx-bsp.bbclass to pass device tree for the final target * v2 reorder patch set Signed-off-by: Adrian Alonso <aalonso00@gmail.com> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-08-04linux-xilinx: kernel configs for virtex4 virtex5 targetsAdrian Alonso3
* kernel defconfig for xilinx-virtex4 platform * kernel defconfig for xilinx-virtex5 platform * xilinx frame buffer patch * v2 fix trailing whitespace Signed-off-by: Adrian Alonso <aalonso00@gmail.com> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2010-08-04xilinx-bsp: Rewrite to handle xilinx virtex4 virtex5 targetsAdrian Alonso1
* Rewrite for handling most xilinx target virtex4 and virtex5 based * Add helper functions for configuring the target board * User must add in local.conf: XILINX_BOARD = "ml401" | "ml403" | "ml405" | "ml410" | "ml507" | "ml510" XILINX_BSP_PATH = "Xilinx XPS hardware project dir" with this variables u-boot and the linux kernel gets configured for a selected board. * xilinx-bsp exits when there is no hardware project or when parameters header or the linux kernel device tree haven't been generated in Xilinx XPS [1] in order to match hardware/software model * Only tested for powerpc based hardware projects * [1] Xilinx XPS -> Xilinx Platform Studio * v2 add additional comments Signed-off-by: Adrian Alonso <aalonso00@gmail.com>
2010-08-0437x-evm: remove USE_VT from am37x-evm and dm37x-evm confChase Maupin2
* Removed the USE_VT = 0 setting from am37x-evm and dm37x-evm configuration files. With matrix-gui-e using chvt 4 it is OK for these consoles to be created. * The console is used for the beagleboard validation software as well so it should be available to allow running the validation software on these boards. Signed-off-by: Chase Maupin <chase.maupin@ti.com> Signed-off-by: Denys Dmytriyenko <denis@denix.org>
2010-08-04matrix-gui-e: added chvt to init scriptsChase Maupin2
* Added chvt 4 to init scripts to allow the matrix-guiE application to run in its own virtual terminal. This prevents the console being respawned over the running matrix-guiE process during times of inactivity. Signed-off-by: Chase Maupin <chase.maupin@ti.com> Signed-off-by: Denys Dmytriyenko <denis@denix.org>
2010-08-04bitbake.conf: Don't export 'LIBC' to the environmentTom Rini1
perl makes use of this variable and it doesn't match how we use it. Since it doesn't need to be exposed like this, don't. No acks, but "sounds good" to Koen and "don't see why not" from Roman Signed-off-by: Tom Rini <tom_rini@mentor.com>
2010-08-04perl: use only one method all_perl_packagesBernhard Reutner-Fischer3
.. to avoid ERROR: Error Method already seen: all_perl_packages in' perl_5.8.8.bb' now in 'perl_5.10.1.bb' TODO: error() already prints "ERROR:" so the "Error" in above msg is redundant Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Acked-by: Roman I Khimov <khimov@altell.ru> Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-08-04cpuburn-neon: add NEON burn appKoen Kooi1
2010-08-04netbase: add custom interfaces file for beagleboardKoen Kooi2
* changes usb0 to dhcp
2010-08-04beagleboard-test-image: added ramdiskjkridner@beagleboard.org1
Simply adding 'ext2.gz' to the IMAGE_FSTYPES to produce a default sized ramdisk image whenever this image is built. Uses 'IMAGE_FSTYPES +=' syntax to add a compressed ext2 image to use as a ramdisk for BeagleBoard validation. No space is required in the string per link provided by Paul Menzel. [1] [1] http://docs.openembedded.org/usermanual/usermanual.html Signed-off-by: Koen Kooi <koen@openembedded.org>
2010-08-04linux-omap-psp 2.6.32: remove duplicate patchKoen Kooi2
2010-08-04base.bbclass: add support for SOC_FAMILY in COMPATIBLE_MACHINESChase Maupin1
* Add support for using SOC_FAMILY in the COMPATIBLE_MACHINES setting for a recipe. * This will allow recipes to work for entire families of devices without having to maintain/update the compatible devices as new devices are added into a family Signed-off-by: Chase Maupin <chase.maupin@ti.com> Acked-by: Denys Dmytriyenko <denys@ti.com> Acked-by: Koen Kooi <k-kooi@ti.com> Signed-off-by: Koen Kooi <koen@openembedded.org>
2010-08-04linux-openmoko-2.6.32: remove CONFIG_DEBUG_FS from defconfigMartin Jansa1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-08-04linux-openmoko-2.6.34: move to 2.6.34.2, modularize defconfig as 2.6.32 is nowMartin Jansa3
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-08-04davinci.inc, omap3.inc: bump MACHINE_KERNEL_PRKoen Kooi2
2010-08-04xscrensaverh: convert to new style stagingKoen Kooi1
* Is this recipe still needed with the current Xorg in OE?
2010-08-04samba.inc: remove legacy stagingKoen Kooi1
2010-08-04samba: enable mmap for *glibc build and aio (thru -lrt) for everyoneKoen Kooi2
2010-08-04classpath: Unified remaining recipes.Robert Schuster3
2010-08-04* outdated classpath recipe removal spree:Robert Schuster3
classpath-minimal 0.96.1: Removed. classpath 0.95: Dito. classpath 0.96.1: Dito.
2010-08-04inetlib: Fixed monkeywork typo.Robert Schuster1
2010-08-04xalan-j-native: Deleted.Robert Schuster2
xalan-j: BBCLASSEXTEND="native"-ified.
2010-08-04xerces-j-native: Deleted.Robert Schuster2
xerces-j: BBCLASSEXTEND="native"-ified.
2010-08-04inetlib-native: Removed.Robert Schuster2
inetlib: BBCLASSEXTEND="native"-ified.
2010-08-04commons-logging: Use += instead of append.Robert Schuster1
2010-08-04commons-net: Added missing BBCLASSEXTEND="native"-ification.Robert Schuster1
2010-08-04gnujaf-native: Deleted.Robert Schuster4
gnumail-native: Deleted. gnujaf: BBCLASEXTEND="native"-ified. gnumail: Dito.
2010-08-04jaxp1.3-native: Deleted.Robert Schuster4
xml-commons-resolver1.1-native: Deleted. xml-commons-resolver1.1: BBCLASSEXTEND="native"-ified. jaxp1.3: Dito.
2010-08-04jsch-native: Deleted.Robert Schuster4
jzlib-native: Deleted. jsch: BBCLASSEXTEND="native"-ified. jzlib: Dito.
2010-08-04jacl-native: Deleted.Robert Schuster2
jacl: BBCLASSEXTEND="native"-ified.
2010-08-04commons-logging-native: Deleted.Robert Schuster4
commons-net-native: Deleted. commons-logging: BBCLASSEXTEND="native"-ified. commons-net: BBCLASSEXTEND="native"-ified.
2010-08-04avalon-framework-api-native: RemoveRobert Schuster12
bsf-native: Dito. log4j1.2-native: Dito. oro-native: Dito. regexp-native: Dito. avalon-framework-api: BBCLASSEXTEND="native"-ified. bsf-native: Dito. log4j1.2-native: Dito. oro-native: Dito. regexp-native: Dito.
2010-08-04jamvm-native 1.5.4: New version.Robert Schuster1
2010-08-04libunwind: --enable-debug-frame is needed for armSteffen Sledz1
Signed-off-by: Steffen Sledz <sledz@dresearch.de>
2010-08-04libxi: move to 1.3.2 with fixed ASCIIDOC testMartin Jansa3
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-08-03Recipe fixups for package_dbg usageChris Larson3
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-08-03rootfs_ipk.bbclass: add support for PACKAGE_INSTALL_ATTEMPTONLYChris Larson1
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-08-03rootfs_ipk.bbclass: install the package manager in a separate pass from the ↵Chris Larson1
other packages It seems that installing opkg/opkg-collateral blows away the configuration we need to install more packages, so lets make that explicit by installing those things last. Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-08-03xcb-proto: Get rid of legacy staging.Khem Raj8
* Convert to using INC_PR Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-08-03opkg: first stab at restoring upgrade pathsKoen Kooi2
2010-08-03opkg recipe overhaul - removal of opkg-nogpg and opkg-nogpg-nocurl.Graham Gower27
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-04byacc: kill -native recipe, replace with BBCLASSEXTENDRoman I Khimov2
Signed-off-by: Roman I Khimov <khimov@altell.ru>
2010-08-03mesa_7.2.bb: Tinker DEBUG_OPTIMIZATION to avoid gcc ICEKhem Raj1
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-08-03uclibc_git.bb: move to latest git tip.Khem Raj1
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-08-03mpfr_3.0.0.bb: Override needs to be thumb instead of armv4tKhem Raj1
* This covers the case when compiling with thumb mode Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-08-03recipes: Fix the PATHs for toolchains.Khem Raj33
* Look into the new multi-machine friendly installation. Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Koen Kooi <k-kooi@ti.com> Acked-by: Martin Jansa <Martin.Jansa@gmail.com>