summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFiles
2009-03-23Angstrom feed sorter: add sheevaplugKoen Kooi1
2009-03-23kirkwood: clean up kernel and machine file a bitKoen Kooi2
2009-03-22c7x0.conf: fix typo (rootfs is 53 MB)Andrea Adami1
2009-03-22opie-multikey.inc: add ru.keymap using SR_URI_appendAndrea Adami1
2009-03-22sheevaplug: Add machine config for Sheevaplug and a generic include for ↵Tim 'timtim' Ellis2
Kirkwood platforms
2009-03-22linux-kirkwood: Add kernel recipe for Marvell Kirkwood platforms including ↵Tim 'timtim' Ellis3
the Sheevaplug
2009-03-22alsa-state: ${PN} is not always 'all' - some devices have own asound.confMarcin Juszkiewicz1
2009-03-22alsa-state: fix for a780 additional statesMarcin Juszkiewicz1
2009-03-22alsa-state: revert wrong fix, do that betterMarcin Juszkiewicz1
2009-03-22bitbake.conf: --no-check-certificate was added to the wrong place for ↵Denys Dmytriyenko1
RESUMECOMMAND_wget
2009-03-22alsa-state: Wildcard removed and all *.state put back in the recipesPhilip Balister1
Bump PR From: Matthieu Poullet (matthieu.poullet@gmail.com) Acked-by: Philip Balister (philip@balister.org) Acked-by: Andrea Adami (andrea.adami@gmail.com)
2009-03-22keymaps: wildcard in SRC_URI doesn't work anymore, specify filesAndrea Adami1
- skip linux-2.4 keymaps - bump PR
2009-03-22qemu_svn: fix FILESPATH after base.bbclass changesAndrea Adami1
2009-03-22checksums.ini : Add checksums for libconfig-1.3.1.tar.gz and qwo-0.4.tar.gz.Philip Balister1
2009-03-22qwo : Add new recipe for qwo.Philip Balister2
* qwo is an input method for text on hand-held devices.
2009-03-22libconfig : Add new recipe for libconfig-1.3.1.Philip Balister1
Libconfig is a library for managing structured config files.
2009-03-21libgsm, bogofilter, man: fix misuse of FILESDIRMike Westerhof3
(Required to make these build again after some earlier changes)
2009-03-21SlugOS: remove preferred_version restrictions for more packages.Mike Westerhof1
2009-03-21slugos-packages: demote irrsi - won't build with newer libtool.Mike Westerhof1
2009-03-21SlugOS: preferred_slugos_versions.inc - bump up libtoolMike Westerhof1
and remove restrictions caused by the older libtool.
2009-03-21base.bbclass: Fix typo.Chris Larson1
Signed-off-by: Chris Larson <clarson@kergoth.com>
2009-03-21base.bbclass: revert removal of base_set_filespath until the refs can be ↵Chris Larson1
removed. Also added a deprecation message to it. Signed-off-by: Chris Larson <clarson@kergoth.com>
2009-03-21bitbake.conf: make cvs and wget fetching obey PATH from the metadata.Chris Larson1
This is a workaround. The cvs and wget fetchers should be modified to use the runfetchcmd method, which lets certain metadata variables through when executing the fetch commands. Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21base.bbclass: Add base_path_relative.Chris Larson1
base_path_relative returns a relative path from src to dest. Examples: >>> base_path_relative("/usr/bin", "/tmp/foo/bar") ../../tmp/foo/bar >>> base_path_relative("/usr/bin", "/usr/lib") ../lib >>> base_path_relative("/tmp", "/tmp/foo/bar") foo/bar Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21bitbake.conf: Make FILESPATH only contain directories that actually exist.Chris Larson1
Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21insane.bbclass: Silence the annoying GNU_HASH QA checks when --hash-style ↵Chris Larson1
isn't set. Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21bitbake.conf: Move the list of vars shown in the pre-build config display to ↵Chris Larson2
here. Now a distro or machine can add their own variables to display. Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21cross.bbclass: set autoconf's program prefix to keep TARGET_SYS and ↵Chris Larson1
TARGET_PREFIX decoupled Currently, we rely on autoconf's implicit prefixing of outputted binaries for -cross, but that names them based on TARGET_SYS, not TARGET_PREFIX, which keeps the two tightly coupled. By explicitly setting the prefix to the latter, we get around that. Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21base.bbclass: make oe_unpack_file of dirs use FILESPATH, not FILESDIR.Chris Larson1
Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21classes/base.bbclass: Locate the scm base path via BBPATH.Chris Larson1
Currently, if the first item in BBFILES isn't in the main OE repository, the build fails entirely due to a ValueError. This isn't optimal. Rather than searching through BBFILES to find it, which could be slow when BBFILES contains thousands of files, let's just find base.bbclass and use that repository. Also, use better methods to find the git revision and branch, and identify the scm based on the existance of .svn/.git/_MTN to avoid calling out subprocesses unnecessarily. Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21base.bbclass: Kill the 'Pkg' messages in the event handler.Chris Larson1
Now that bitbake operates at a task level, not a package level, the package messages are, at best, useless, and at worst, confusing for the user. Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21bitbake.conf: rework FILESPATH generation.Chris Larson2
Rework FILESPATH generation to be done in bitbake.conf, avoiding the confusion about it being in multiple places. Adds FILESPATHBASE and FILESPATHPKG which can be manipulated rather than manipulating FILESPATH directly. One usage possibility: FILESPATHBASE =. "${TOPDIR}/files:" Which would let me provide a custom busybox config for this build by copying the defconfig from the openembedded metadata into my build/files/busybox-1.0/ directory, for example. Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21console-tools: clean up the way it handles its .m4 filesChris Larson1
Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21bzip2-full-native: Kill the manual copy of install-sh, autoreconf will ↵Chris Larson1
handle that. Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21omext: Unbork the S variable.Chris Larson1
Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21automake-native: use require, not include.Chris Larson1
Signed-off-by: Chris Larson <clarson@mvista.com>
2009-03-21ffmpeg: don't forget to stage pixfmt.h, and bump PRs of affected recipes.Mike Westerhof4
2009-03-21linux-msm7xxx: enable NFS and CIFS for htcraphaelMichael 'Mickey' Lauer2
2009-03-21minimal.conf: override OVERRIDES to include the MACHINE_CLASSMichael 'Mickey' Lauer1
2009-03-21libeflvala: new recipe; Vala bindings for the Enlightenment Foundation LibrariesMichael 'Mickey' Lauer2
2009-03-21frameworkd: bump to current HEAD; add configuration for htc-msm7 ↵Michael 'Mickey' Lauer5
MACHINE_CLASS and motorola-ezx MACHINE_CLAS
2009-03-21motorola-ezx-base.inc: set MACHINE_CLASS for overridesMichael 'Mickey' Lauer1
2009-03-21libproxy: add libxmu to dependsKoen Kooi1
2009-03-20rpm_4.4.2.3.bb: Define EXTRA_OECONF inside do_configure_prepend()Khem Raj1
* We use some python vars inside EXTRA_OECONF. So we move The evaluation to execute time from parse time.
2009-03-20SlugOS: bump automake-native to 1.10.2Mike Westerhof1
2009-03-20Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded ↵Khem Raj17
into org.openembedded.dev
2009-03-20binutils_cvs: Various fixes to get it building.Khem Raj7
* Port patched needed from binutils 2.19. * Refresh the old patches. * Cover for bitbake fetcher lameness where it checks out the while src tree when we only asked for binutils module. So we have to build selective targets.
2009-03-20package_rpm.bbclass: files needs to start from /Marcin Juszkiewicz1
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5116 311d38ba-8fff-0310-9ca6-ca027cbcb966
2009-03-20Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded ↵Koen Kooi6
into org.openembedded.dev
2009-03-20angstrom 2009.X: bump gtk+ and glib-2.0, runtime tests don't show obvious ↵Koen Kooi1
regressions