openembedded.git
15 years agosrc_distribute: force do_fetch execution in do_distribute_sources.
Chris Larson [Thu, 7 May 2009 20:37:09 +0000 (13:37 -0700)]
src_distribute: force do_fetch execution in do_distribute_sources.

Works around src_distribute failures with the use of packaged staging.

Signed-off-by: Chris Larson <clarson@mvista.com>
15 years agosrc_distribute*.bbclass: cleanup, revamp parts, distribute all sources.
Chris Larson [Thu, 28 May 2009 22:27:31 +0000 (15:27 -0700)]
src_distribute*.bbclass: cleanup, revamp parts, distribute all sources.

- Kill the big shell function with the case statement used in _local in
  favor of a set of bitbake variables, with the appropriate one selected
  as SRC_DISTRIBUTECOMMAND.
- Add and use SRC_DISTRIBUTE_DLONLY to toggle distribution of all sources
  versus just those downloaded to DL_DIR.  This variable expects to be set
  to an integer, anything but 0 will enable dlonly operation.  This is
  disabled by default.
- Add a more sanely named distribute_sources_all, and make distsrcall
  depend on it, for compatibility.
- By default, distributes the sources into
  ${SRC_DISTRIBUTEDIR}/${LIC}/${PN}/.
- Move some _local specific bits, like use of SRC_DISTRIBUTEDIR, out of
  the main class.
- Set a "LIC" var along with the "SRC" when running SRC_DISTRIBUTECOMMAND,
  to facilitate the above.

Signed-off-by: Chris Larson <clarson@mvista.com>
15 years agoncurses: don't use libtool.
Chris Larson [Thu, 30 Apr 2009 17:42:07 +0000 (10:42 -0700)]
ncurses: don't use libtool.

Signed-off-by: Chris Larson <clarson@mvista.com>
15 years agodevshell.bbclass: set a default for XAUTHORITY and export DBUS_SESSION_BUS_ADDRESS.
Chris Larson [Wed, 15 Jul 2009 18:00:27 +0000 (11:00 -0700)]
devshell.bbclass: set a default for XAUTHORITY and export DBUS_SESSION_BUS_ADDRESS.

Signed-off-by: Chris Larson <clarson@mvista.com>
15 years agopackage_rpm: don't run against native/cross recipes, explicitly
Chris Larson [Thu, 18 Jun 2009 19:41:50 +0000 (12:41 -0700)]
package_rpm: don't run against native/cross recipes, explicitly

In the past, it only avoided adding the rpm-native/fakeroot-native deps if
PACKAGES is empty, but unfortunately some native recipes have PACKAGES set to
non-empty, so let's explicitly check for native/cross.

Signed-off-by: Chris Larson <clarson@mvista.com>
15 years agodistro-version: new general recipe, based on angstrom-version.
Chris Larson [Wed, 19 Aug 2009 21:24:19 +0000 (14:24 -0700)]
distro-version: new general recipe, based on angstrom-version.

Signed-off-by: Chris Larson <clarson@mvista.com>
15 years agocollections.inc: sync with MVL6.
Chris Larson [Wed, 19 Aug 2009 21:49:02 +0000 (14:49 -0700)]
collections.inc: sync with MVL6.

- Gather info on the collections into COLLECTIONSINFO.
- Store the collection info for the current file in COLLECTIONINFO.
- Add has_collection() and get_collection() utility functions.
- Make collection_unpack pass back the collection name.
- Just use != rather than symmetric_difference on the set comparision.
- Set PYTHONPATH for the bitbake re-execution.
- Make the 'Using existing' message use bb.debug.

Signed-off-by: Chris Larson <clarson@mvista.com>
15 years agosyslinux: upgrade to 3.82 and split into a few packages
Michael Smith [Mon, 17 Aug 2009 00:21:10 +0000 (20:21 -0400)]
syslinux: upgrade to 3.82 and split into a few packages

3.63 is no longer available.

Signed-off-by: Michael Smith <msmith@cbnco.com>
15 years agosite/common-linux: centralize bash configure vars
Michael Smith [Mon, 17 Aug 2009 22:18:39 +0000 (18:18 -0400)]
site/common-linux: centralize bash configure vars

If the other site files are accurate, almost all of the bash vars
are universal across Linux.

Did this to fix bash on x86_64. Also bump bash PRs to help track
breakage later.

Signed-off-by: Michael Smith <msmith@cbnco.com>
Acked-by: Tom Rini <trini@embeddedalley.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
15 years agosite/x86_64-linux: Add some vars from ix86-common
Michael Smith [Fri, 7 Aug 2009 21:17:42 +0000 (17:17 -0400)]
site/x86_64-linux: Add some vars from ix86-common

ix86-common had a few updates in the past couple of years; bring
them to x86_64.

Some of these could probably be moved to common-glibc.

Signed-off-by: Michael Smith <msmith@cbnco.com>
15 years agoMerge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into...
Stanislav Brabec [Wed, 19 Aug 2009 20:56:07 +0000 (20:56 +0000)]
Merge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into org.openembedded.dev

15 years agoswfdec: Fixed dependencies and package splitting. Disabled static. Packaged stable...
Stanislav Brabec [Wed, 19 Aug 2009 20:52:28 +0000 (20:52 +0000)]
swfdec: Fixed dependencies and package splitting. Disabled static. Packaged stable 0.8.2.

15 years agobase.bbclass: catch bb.MalformedUrl in do_fetch.
Chris Larson [Tue, 7 Jul 2009 22:19:07 +0000 (15:19 -0700)]
base.bbclass: catch bb.MalformedUrl in do_fetch.

Signed-off-by: Chris Larson <clarson@mvista.com>
15 years agoLet the distro control whether we include hostap or madwifi.
Chris Larson [Fri, 10 Jul 2009 18:27:31 +0000 (11:27 -0700)]
Let the distro control whether we include hostap or madwifi.

- Add base_ifelse convenience function to base.bbclass.
- Replace all conditionals in the recipes relating to hostap and madwifi to
  look for their name in COMBINED_FEATURES rather than looking for specific buses (pci, pcmcia).
- Change the default COMBINED_FEATURES to enable:
  - madwifi, when:
    - distro has pci, wifi, and madwifi in its features
    - machine has pci in its features
  - hostap, when:
    - 'wifi' and 'hostap' are in distro features
    - either 'pci' or 'pcmcia' are in both distro and machine features

Signed-off-by: Chris Larson <clarson@mvista.com>
15 years agolinux-2.6.30: calamari/defconfig CONFIG_WIRELESS_EXT=y for madwifi.
Leon Woestenberg [Wed, 19 Aug 2009 19:53:18 +0000 (21:53 +0200)]
linux-2.6.30: calamari/defconfig CONFIG_WIRELESS_EXT=y for madwifi.

Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
15 years agoangstrom-2008.1.conf: Prefer util-linux-ng over util-linux.
Stanislav Brabec [Wed, 19 Aug 2009 19:52:24 +0000 (19:52 +0000)]
angstrom-2008.1.conf: Prefer util-linux-ng over util-linux.

15 years agoutil-linux-ng: Fixed empty packages. Provide util-linux.
Stanislav Brabec [Wed, 19 Aug 2009 19:47:54 +0000 (19:47 +0000)]
util-linux-ng: Fixed empty packages. Provide util-linux.

15 years agoopenssl: Add linux-gnuspe-powerpc to openssl.inc target list.
Leon Woestenberg [Wed, 19 Aug 2009 18:42:21 +0000 (20:42 +0200)]
openssl: Add linux-gnuspe-powerpc to openssl.inc target list.

15 years agoangstrom-eglibc: TARGET_OS = linux-gnuspe for specific powerpc machines.
Leon Woestenberg [Wed, 19 Aug 2009 14:16:25 +0000 (16:16 +0200)]
angstrom-eglibc: TARGET_OS = linux-gnuspe for specific powerpc machines.

Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
15 years agoopenssh 5.2p1: remove DEFAULT_PREFERENCE = "-1"
Michael Smith [Tue, 4 Aug 2009 14:28:14 +0000 (10:28 -0400)]
openssh 5.2p1: remove DEFAULT_PREFERENCE = "-1"

This version has been working well on x86.

Signed-off-by: Michael Smith <msmith@cbnco.com>
15 years agoopenssh.inc: cleanup
Michael Smith [Wed, 8 Jul 2009 22:31:35 +0000 (18:31 -0400)]
openssh.inc: cleanup

Because of leading slashes in FILES_*, some files were being installed
twice: e.g. /etc/ssh/moduli was in both openssh and openssh-sshd. Now
openssh is an empty metapackage, which I think was the plan.

Other cleanups:
* switch to INC_PR
* remove dangling slogin symlink to ssh to fix warning
* remove FILES_openssh-dbg line, which had a syntax error and doesn't
  appear necessary to keep debug out of the openssh-misc package anymore.
* rename package ssh-keygen to openssh-keygen for consistency
* use ${PN} in variable names

Tested with 5.2p1.

Signed-off-by: Michael Smith <msmith@cbnco.com>
15 years agogpsd: Disabled parallel build as it sometimes fail.
Stanislav Brabec [Wed, 19 Aug 2009 14:13:13 +0000 (14:13 +0000)]
gpsd: Disabled parallel build as it sometimes fail.

15 years agooe-checksums-sorter.py: speed up about 4X using a hash
Michael Smith [Sat, 27 Jun 2009 21:23:33 +0000 (17:23 -0400)]
oe-checksums-sorter.py: speed up about 4X using a hash

OK, this saves a grand total of one second a few times a week, but it
was bugging me...

Signed-off-by: Michael Smith <msmith@cbnco.com>
15 years agosource-checker: usability tweaks
Michael Smith [Sat, 27 Jun 2009 21:12:01 +0000 (17:12 -0400)]
source-checker: usability tweaks

checksum sorter, source checker:
* exit(1) on failure;
* send errors to stderr;
* make executable

checksum sorter:
* read from stdin if no arg;
* accept --inplace option to read and write from the same file;
* check that input file exists as ConfigParser.read() doesn't treat
  missing files as an error.

Signed-off-by: Michael Smith <msmith@cbnco.com>
15 years agobase.bbclass: introduce OE source mirror network as last resort for do_fetch
Rolf Leggewie [Fri, 14 Aug 2009 14:01:10 +0000 (16:01 +0200)]
base.bbclass: introduce OE source mirror network as last resort for do_fetch

Updating recipes and checksums.ini for vanishing upstream hosts or simple
restructuring can quickly become a chore for OE devs if taken seriously.
The OE user experience suffers severely when at any given point in time
4 to 5 recipes on average fail do_fetch for a simple image.

The solution is for OE to provide its own caching of upstream sources.
mirrors.openembedded.org is a swarm of possibly incomplete source mirrors
provided by the community and load-balanced via DNS round robin.  They
act as a first line of defense and lower bandwidth load on melo which
hosts sources.openembedded.org.  The melo mirror aims to have a complete
copy of free-to-publish sources used by the current org.oe.dev branch.

More information at http://wiki.openembedded.net/index.php/Sources_mirror

Acked-by: Holger Freyther <zecke@selfish.org>
Acked-by: Chris Larson <clarson@kergoth.com>
15 years agominimal.conf: build opie 1.2.4
Rolf Leggewie [Sun, 16 Aug 2009 17:34:18 +0000 (19:34 +0200)]
minimal.conf: build opie 1.2.4

15 years agoatk: add 1.27.90
Steve Sakoman [Wed, 19 Aug 2009 05:31:33 +0000 (22:31 -0700)]
atk: add 1.27.90

15 years agognome-desktop: fix path to python binary in the gnome-about script
Steve Sakoman [Wed, 19 Aug 2009 05:27:44 +0000 (22:27 -0700)]
gnome-desktop: fix path to python binary in the gnome-about script

15 years agoiozone3: fix GNU_HASH related build failure
Steve Sakoman [Wed, 19 Aug 2009 04:47:29 +0000 (21:47 -0700)]
iozone3: fix GNU_HASH related build failure

15 years agoxcalibrate: Removed old recipe replaced by libxcalibrate.
Stanislav Brabec [Tue, 18 Aug 2009 20:01:11 +0000 (20:01 +0000)]
xcalibrate: Removed old recipe replaced by libxcalibrate.

15 years agoxcalibrateext: Removed old recipe replaced by calibrateproto.
Stanislav Brabec [Tue, 18 Aug 2009 19:59:27 +0000 (19:59 +0000)]
xcalibrateext: Removed old recipe replaced by calibrateproto.

15 years agotask-mamona.bb, xtscal.inc: DEPEND on libxcalibrate instead of xcalibrate.
Stanislav Brabec [Tue, 18 Aug 2009 19:56:49 +0000 (19:56 +0000)]
task-mamona.bb, xtscal.inc: DEPEND on libxcalibrate instead of xcalibrate.

15 years agocalibrateproto: Added symlink to provide old package pkgconfig name.
Stanislav Brabec [Tue, 18 Aug 2009 19:55:00 +0000 (19:55 +0000)]
calibrateproto: Added symlink to provide old package pkgconfig name.

15 years agocalibrateproto: Use increment-able PV format as other git version recipes do.
Stanislav Brabec [Tue, 18 Aug 2009 18:42:43 +0000 (18:42 +0000)]
calibrateproto: Use increment-able PV format as other git version recipes do.

15 years agolibxcalibrate: Use increment-able PV format as other git version recipes do.
Stanislav Brabec [Tue, 18 Aug 2009 18:40:27 +0000 (18:40 +0000)]
libxcalibrate: Use increment-able PV format as other git version recipes do.

15 years agomtools: don't install-info; fixes build on non-Debian hosts
Michael Smith [Mon, 17 Aug 2009 03:29:02 +0000 (03:29 +0000)]
mtools: don't install-info; fixes build on non-Debian hosts

The install-info installed into staging by dpkg-native looks for
/var/backups/infodir.bak and /usr/share/base-files/info.dir on
the build system. On Debian/Ubuntu this is benign, but on other
distros these files don't exist and the install fails.

The info file is still installed, we just don't try to rebuild the
nonexistent directory.

There are cleaner ways to solve this in the long run:

http://dev.openbossa.org/trac/mamona/ticket/139

Signed-off-by: Michael Smith <msmith@cbnco.com>
Signed-off-by: Holger Freyther <zecke@selfish.org>
15 years agonasm: fix COMPATIBLE_HOST to match any vendor
Michael Smith [Mon, 17 Aug 2009 03:29:01 +0000 (03:29 +0000)]
nasm: fix COMPATIBLE_HOST to match any vendor

On x86_64, it was looking for x86_64-linux, not x86_64-blah-linux;
it broke the build for syslinux if a BUILD_VENDOR was set.

Signed-off-by: Michael Smith <msmith@cbnco.com>
Signed-off-by: Holger Hans Peter Freyther <zecke@selfish.org>
15 years agopackage_tar.bbclass: Do not set IMAGE_PKGTYPE to unbreak parsing
Holger Hans Peter Freyther [Mon, 17 Aug 2009 13:41:48 +0000 (15:41 +0200)]
package_tar.bbclass: Do not set IMAGE_PKGTYPE to unbreak parsing

image.bbclass is trying to inherit package_${IMAGE_PKGTYPE} and
this will fail because a rootfs_tar.bbclass doesn't exist. When
planning to build images one needs to inherit package_ipk,
package_rpm or package_deb in addition to INHERIT += "package_tar".

Signed-off-by: Holger Hans Peter Freyther <zecke@selfish.org>
Acked-by: Philip Balister <philip@balister.org>
15 years agoglibc 2.7 and 2.9 (arm): Remove unnecessary asm/page.h include
Jonathan Cameron [Mon, 17 Aug 2009 03:53:00 +0000 (03:53 +0000)]
glibc 2.7 and 2.9 (arm): Remove unnecessary asm/page.h include

Fix compile bug for arm with recent kernel headers
../ports/sysdeps/unix/sysv/linux/arm/ioperm.c:48:22: error: asm/page.h: No such file or directory

Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk>
Signed-off-by: Holger Hans Peter Freyther <zecke@selfish.org>
15 years agoMerge branch 'org.openembedded.dev' of git+ssh://git@git.openembedded.org/openembedde...
Graeme Gregory [Tue, 18 Aug 2009 13:52:32 +0000 (14:52 +0100)]
Merge branch 'org.openembedded.dev' of git+ssh://git@git.openembedded.org/openembedded into org.openembedded.dev

15 years agofirefox_3.5.2.bb : add newest version of firefox
Graeme Gregory [Tue, 18 Aug 2009 13:52:06 +0000 (14:52 +0100)]
firefox_3.5.2.bb : add newest version of firefox

15 years agolinux-davinci: update defconfigs for dm355, dm365, dm6446 and dm6467
Denys Dmytriyenko [Tue, 18 Aug 2009 04:11:58 +0000 (00:11 -0400)]
linux-davinci: update defconfigs for dm355, dm365, dm6446 and dm6467

15 years agoda830-omapl137-evm: add DA830/OMAPL137 machine
Denys Dmytriyenko [Tue, 18 Aug 2009 04:08:02 +0000 (00:08 -0400)]
da830-omapl137-evm: add DA830/OMAPL137 machine

Uses default linux-davinci kernel from Arago Project for now

Signed-off-by: Denys Dmytriyenko <denis@denix.org>
15 years agodm6467t-evm: add "new" 1GHz DaVinci DM6467 machine
Denys Dmytriyenko [Tue, 18 Aug 2009 04:02:48 +0000 (00:02 -0400)]
dm6467t-evm: add "new" 1GHz DaVinci DM6467 machine

Signed-off-by: Denys Dmytriyenko <denis@denix.org>
15 years agopython-sip_4.8.2.bb: set DEFAULT_PREFERENCE = -1
Khem Raj [Mon, 17 Aug 2009 16:44:20 +0000 (09:44 -0700)]
python-sip_4.8.2.bb: set DEFAULT_PREFERENCE = -1

Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 years agolinux-omap* 2.6.29: add patch that should solve the memhole problem
Koen Kooi [Mon, 17 Aug 2009 16:15:45 +0000 (18:15 +0200)]
linux-omap* 2.6.29: add patch that should solve the memhole problem

15 years agogamin-0.1.8: Fix build issue with recent GCC/GLibC combos.
John Willis [Tue, 14 Jul 2009 05:46:31 +0000 (05:46 +0000)]
gamin-0.1.8: Fix build issue with recent GCC/GLibC combos.

Update gamin_0.1.8.bb to build with recent GCC and GLibC 2.8 > via addition
of configure.in patch (use AC_USE_SYSTEM_EXTENSIONS instead of
AC_ISC_POSIX).

Signed-off-by: David-John Willis <John.Willis@Distant-earth.com>
Signed-off-by: Holger Freyther <zecke@selfish.org>
15 years agosite: Add ac value for mipsel-linux and mipsel-linux-uclibc
Holger Hans Peter Freyther [Thu, 13 Aug 2009 04:55:59 +0000 (06:55 +0200)]
site: Add ac value for mipsel-linux and mipsel-linux-uclibc

The results were found using google and applying
common sense.

15 years agosite/ix86-common: fix grave bug in ac_cv_sizeof_unsigned_char
Roman I Khimov [Mon, 17 Aug 2009 10:10:06 +0000 (14:10 +0400)]
site/ix86-common: fix grave bug in ac_cv_sizeof_unsigned_char

ac_cv_sizeof_unsigned_char definition accidentally redefines
ac_cv_sizeof_unsigned_int to 1. Luckily, not many packages are using that
but for example it completely breakes gnutls.

Fix that.

Acked-by: Holger Freyther <zecke@selfish.org>
15 years agoangstrom: add preferred provider for qt4
Koen Kooi [Sun, 16 Aug 2009 14:12:14 +0000 (16:12 +0200)]
angstrom: add preferred provider for qt4

* bitbake had the following to say:

  NOTE: multiple providers are available for qt4x11 (qt4-x11-free-gles, qt4-x11-free);
  NOTE: consider defining PREFERRED_PROVIDER_qt4x11

  Which seems to give a fairly obvious way to fix it, so let's actually do so.

* I wish OE had something like PROVIDER_PREFERENCE = "1" to do this sort of stuff globally, but OTOH it really is a distro decision

15 years agolinux-omap-pm 2.6.29: update to latest git HEAD, sync patches and defconfig with...
Koen Kooi [Sun, 16 Aug 2009 09:34:38 +0000 (11:34 +0200)]
linux-omap-pm 2.6.29: update to latest git HEAD, sync patches and defconfig with regular linux-omap 2.6.29

15 years agoeglibc: Use FILESPATHPKG, move SRCREV to svn recipe
Khem Raj [Sun, 16 Aug 2009 07:52:25 +0000 (00:52 -0700)]
eglibc: Use FILESPATHPKG, move SRCREV to svn recipe

Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 years agojpeg_6b.bb: Use alternate SRC_URI current one does not have this version
Khem Raj [Sun, 16 Aug 2009 07:44:52 +0000 (00:44 -0700)]
jpeg_6b.bb: Use alternate SRC_URI current one does not have this version

Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 years agochecksums: add gcc4.3.4, fuse 2.7.4 and lightttp 1.4.23
Dirk Opfer [Sun, 16 Aug 2009 06:36:28 +0000 (08:36 +0200)]
checksums: add gcc4.3.4, fuse 2.7.4 and lightttp 1.4.23

15 years agoffmpeg: but presets in their own package
Koen Kooi [Sat, 15 Aug 2009 17:25:57 +0000 (19:25 +0200)]
ffmpeg: but presets in their own package
* people, adding subpackages is easy, doing rm in do_install* is pretty much always wrong

15 years agoffmpeg: remove libx264 presets files
Henning Heinold [Sat, 1 Aug 2009 22:22:17 +0000 (00:22 +0200)]
ffmpeg: remove libx264 presets files
* bump PR

15 years agoffmpeg: fix --prefix for minimal(-uclibc) distribution
Henning Heinold [Sat, 1 Aug 2009 22:11:36 +0000 (00:11 +0200)]
ffmpeg: fix --prefix for minimal(-uclibc) distribution
* bump PR

15 years agolibgsm: fix install, don't use hardcoded include path
Henning Heinold [Sat, 1 Aug 2009 20:43:16 +0000 (22:43 +0200)]
libgsm: fix install, don't use hardcoded include path
* bump PR

15 years agotransmission_1.73.bb : fix a couple of typos to do with localstatedir and
Graeme Gregory [Sat, 15 Aug 2009 15:52:47 +0000 (16:52 +0100)]
transmission_1.73.bb : fix a couple of typos to do with localstatedir and
make /etc/default/transmission-daemon a conffile

15 years agotransmission_1.73.bb : makes this LSB compliant and stop messing with /home
Graeme Gregory [Sat, 15 Aug 2009 13:56:26 +0000 (14:56 +0100)]
transmission_1.73.bb : makes this LSB compliant and stop messing with /home
added a /etc/default/transmission-daemon to contain paths and values used
by the daemon. Moved the homedir and config to /var/lib/transmission-daemon

15 years agocommon-uclibc: Unset guile_cv_use_csqrt for guile
Khem Raj [Fri, 14 Aug 2009 22:42:21 +0000 (15:42 -0700)]
common-uclibc: Unset guile_cv_use_csqrt for guile

guile's configure is not smart to guess if csqrt works
in a cross compile environment so it ends up assuming
that it works and fails to link. Anyways for uclibc
complex functions are unimplemented so we help configure
by unsetting here in site file for uclibc.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 years agoMerge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into...
Khem Raj [Fri, 14 Aug 2009 21:21:43 +0000 (14:21 -0700)]
Merge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into org.openembedded.dev

15 years agolibproxy: Define __USE_BSD before its needed.
Khem Raj [Fri, 14 Aug 2009 21:18:40 +0000 (14:18 -0700)]
libproxy: Define __USE_BSD before its needed.

This fixed a build break on uclibc where
it complained

armv5te-oe-linux-uclibcgnueabi/usr/include/stdlib.h:215:
error: expected '=', ',', ';', 'asm' or '__attribute__' before 'strtouq'

The reason is
u_quad_t is only defined if __USE_BSD is defined

Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 years agobluez4: make it generally provide bluez-libs and bluez-utils
Rolf Leggewie [Tue, 23 Jun 2009 12:55:33 +0000 (21:55 +0900)]
bluez4: make it generally provide bluez-libs and bluez-utils

* reorder fields according to Style Guide

15 years agoMerge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into...
Khem Raj [Fri, 14 Aug 2009 18:52:15 +0000 (11:52 -0700)]
Merge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into org.openembedded.dev

15 years agolibtool: Remove FILESDIR, use INC_PR and FILESPATHPKG
Khem Raj [Thu, 13 Aug 2009 18:03:06 +0000 (11:03 -0700)]
libtool: Remove FILESDIR, use INC_PR and FILESPATHPKG

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Denys Dmytriyenko <denis@denix.org>
15 years agozaurus-2.6.inc: add zaurusd to collie RDEPENDS
Rolf Leggewie [Tue, 9 Jun 2009 02:57:24 +0000 (11:57 +0900)]
zaurus-2.6.inc: add zaurusd to collie RDEPENDS

* there is no need to deviate from the other Zaurus machines here
  http://svn.o-hand.com/repos/misc/trunk/zaurusd/config/machines
* regroup some fields while we're at it

15 years agochecksums.ini: remove obsolete and duplicate entry for sazanami tarball
Rolf Leggewie [Fri, 14 Aug 2009 15:21:21 +0000 (17:21 +0200)]
checksums.ini: remove obsolete and duplicate entry for sazanami tarball

15 years agobase.bbclass: ftp.matrix.com.br no longer exists
Rolf Leggewie [Wed, 12 Aug 2009 21:43:02 +0000 (23:43 +0200)]
base.bbclass: ftp.matrix.com.br no longer exists

* Acked-By: Holger Freyther <zecke@selfish.org>
* Acked-by: Phil Blundell <philb@gnu.org>

15 years agoMerge branch 'org.openembedded.dev' of git+ssh://git@git.openembedded.org/openembedde...
Graeme Gregory [Fri, 14 Aug 2009 11:35:32 +0000 (12:35 +0100)]
Merge branch 'org.openembedded.dev' of git+ssh://git@git.openembedded.org/openembedded into org.openembedded.dev

15 years agolinux-omap-2.6.31/beagleboard/defconfig : add defconfig for beagle to this
Graeme Gregory [Fri, 14 Aug 2009 11:34:44 +0000 (12:34 +0100)]
linux-omap-2.6.31/beagleboard/defconfig : add defconfig for beagle to this
kernel

15 years agolinux-omap_git.bb : increase the revision and fix PV accordingly, this
Graeme Gregory [Fri, 14 Aug 2009 11:33:59 +0000 (12:33 +0100)]
linux-omap_git.bb : increase the revision and fix PV accordingly, this
version boots on beagle once more

15 years agolibgweather: fix packaging regression
Koen Kooi [Fri, 14 Aug 2009 10:32:22 +0000 (12:32 +0200)]
libgweather: fix packaging regression

15 years agolibgweather: add 2.26.2.1
Steve Sakoman [Fri, 14 Aug 2009 05:35:00 +0000 (22:35 -0700)]
libgweather: add 2.26.2.1

15 years agolibgnomeui: add 2.24.1 and restructure to use libgnomeui.inc
Steve Sakoman [Fri, 14 Aug 2009 05:08:21 +0000 (22:08 -0700)]
libgnomeui: add 2.24.1 and restructure to use libgnomeui.inc

15 years agolibbonoboui: add 2.24.1
Steve Sakoman [Fri, 14 Aug 2009 04:47:24 +0000 (21:47 -0700)]
libbonoboui: add 2.24.1

15 years agokernel.bbclass: introduce MODULES_IMAGE_BASE_NAME
Denys Dmytriyenko [Wed, 5 Aug 2009 17:06:32 +0000 (13:06 -0400)]
kernel.bbclass: introduce MODULES_IMAGE_BASE_NAME

Similar to KERNEL_IMAGE_BASE_NAME, allow overwriting from a recipe

Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Henning Heinold <heinold@inf.fu-berlin.de>
15 years agou-boot: bump the SRCREV's for DaVinci boards
Denys Dmytriyenko [Fri, 14 Aug 2009 07:02:30 +0000 (03:02 -0400)]
u-boot: bump the SRCREV's for DaVinci boards

15 years agoMerge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into...
Khem Raj [Thu, 13 Aug 2009 15:14:34 +0000 (08:14 -0700)]
Merge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into org.openembedded.dev

15 years agopciutils: fix generation of pci.ids.gz
Michael Smith [Wed, 12 Aug 2009 13:17:31 +0000 (09:17 -0400)]
pciutils: fix generation of pci.ids.gz

Set ZLIB=yes to prevent auto-detection by the lib/configure script,
which only looks in /usr/include.

Ship pci.ids in pci-ids-uncompressed for users of old hal versions.

Pass PREFIX to Make and use the install-lib target to save work.

Signed-off-by: Michael Smith <msmith@cbnco.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 years agoclutter-0.9: move SRCREV a bit forward so that GLES builds again
Koen Kooi [Thu, 13 Aug 2009 15:11:51 +0000 (17:11 +0200)]
clutter-0.9: move SRCREV a bit forward so that GLES builds again

15 years agognome-games: fix paths to host SDL, bump PR
Roger Monk [Fri, 7 Aug 2009 08:45:57 +0000 (09:45 +0100)]
gnome-games: fix paths to host SDL, bump PR

15 years agolinux-omap*: evm and beagle updates
Koen Kooi [Thu, 13 Aug 2009 11:25:51 +0000 (13:25 +0200)]
linux-omap*: evm and beagle updates
* the 'zippy' daughtercard now has working mmc, rtc and ethernet

15 years agogdm 2.26.1: add missing dep on xinput
Koen Kooi [Thu, 13 Aug 2009 09:00:34 +0000 (11:00 +0200)]
gdm 2.26.1: add missing dep on xinput

15 years agou-boot git: update beagleboard pinmux file
Koen Kooi [Thu, 13 Aug 2009 07:51:49 +0000 (09:51 +0200)]
u-boot git: update beagleboard pinmux file

15 years agolibgnomecanvas: add 2.26.0
Steve Sakoman [Thu, 13 Aug 2009 05:05:34 +0000 (22:05 -0700)]
libgnomecanvas: add 2.26.0

15 years agoangstrom: prefer a version of python that actually builds
Koen Kooi [Thu, 13 Aug 2009 07:42:34 +0000 (09:42 +0200)]
angstrom: prefer a version of python that actually builds

15 years agolibxklavier: add 4.0
Steve Sakoman [Wed, 12 Aug 2009 19:38:24 +0000 (12:38 -0700)]
libxklavier: add 4.0

15 years agogdm: add 2.6.21
Steve Sakoman [Wed, 12 Aug 2009 19:28:51 +0000 (12:28 -0700)]
gdm: add 2.6.21

15 years agobalsa: Updated to version 2.4.1. Disabled broken touchscreen mode.
Stanislav Brabec [Wed, 12 Aug 2009 19:43:27 +0000 (19:43 +0000)]
balsa: Updated to version 2.4.1. Disabled broken touchscreen mode.

15 years agotask-self-hosting: use task-native-sdk, req python
Marcin Juszkiewicz [Tue, 11 Aug 2009 14:54:46 +0000 (16:54 +0200)]
task-self-hosting: use task-native-sdk, req python

15 years agotask-self-hosting: do not use Monotone, OE switched to GIT
Marcin Juszkiewicz [Tue, 11 Aug 2009 14:49:06 +0000 (16:49 +0200)]
task-self-hosting: do not use Monotone, OE switched to GIT

15 years agopython-phoneutils: new recipe; python bindings for libphoneutils
Michael 'Mickey' Lauer [Wed, 12 Aug 2009 09:48:08 +0000 (11:48 +0200)]
python-phoneutils: new recipe; python bindings for libphoneutils

15 years agopython: merge some improvements done in various oe.dev-boycott branches back into...
Michael 'Mickey' Lauer [Wed, 12 Aug 2009 09:24:23 +0000 (11:24 +0200)]
python: merge some improvements done in various oe.dev-boycott branches back into oe.dev

15 years agordesktop-1.6.0: Fix build issue
John Willis [Mon, 13 Jul 2009 22:02:46 +0000 (22:02 +0000)]
rdesktop-1.6.0: Fix build issue

Remove duplicate audio-2008.patch patch line from recipe (fixes build issue
introduced with 013c006d11a59269b9d3adc6cbb6fb8091144965).

Signed-off-by: David-John Willis <John.Willis@Distant-earth.com>
Signed-off-by: Holger Freyther <zecke@selfish.org>
15 years agolinknx: Fix crash on startup
Dirk Opfer [Wed, 12 Aug 2009 08:06:44 +0000 (10:06 +0200)]
linknx: Fix crash on startup
- restructure recipe and add .inc
- Add patch to fix a crash on startup during static initialization of a map
- Add startup script
- Enable curl and smtp
- Add recipe for cvs version

15 years agoowfs: update to 2.7p24
Dirk Opfer [Tue, 11 Aug 2009 05:40:31 +0000 (07:40 +0200)]
owfs: update to 2.7p24

15 years agofuse: update to 2.7.4
Dirk Opfer [Tue, 11 Aug 2009 05:57:07 +0000 (07:57 +0200)]
fuse: update to 2.7.4

15 years agogcc: add new gcc version 4.3.4
Dirk Opfer [Tue, 11 Aug 2009 09:54:41 +0000 (11:54 +0200)]
gcc: add new gcc version 4.3.4
Tested on a armv5te platform using thumb instruction set

15 years agopython: add missing dependencies
Thomas Zimmermann [Wed, 12 Aug 2009 08:31:58 +0000 (10:31 +0200)]
python: add missing dependencies
* Added mimetools.py and rfc822.py to python-netclient
* Added python-json package
* Let python-email depend on python-netclient, because email/utils.py depends on base64.py
NOTE: Fixes http://trac.shr-project.org/trac/ticket/549