summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* x11-common: Fix unusable serial consolelaverneWolfgang Denk2011-03-182-2/+2
| | | | | | | | | | | | | | | | | | The serial console port is basicly unusable in images containing X. Login works fine, but at the shell prompt only one out of N input characters (N usually between 2 and 10) gets through to the shell. dbus-launch (running as "dbus-launch --sh-syntax --exit-with-session") is also reading from /dev/console and "eating" the missing characters. As soon as I stop the Xserver ("sh /etc/init.d/xserver-nodm stop") the serial console starts wroking fine (because dbus-launch is not running any more). This patch addresses the problem. Signed-off-by: Wolfgang Denk <wd@denx.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tslib: 32bit big endian supportJ. Aaron Gamble2011-02-222-1/+55
| | | | | | | | | | | Fixes [BUGID #394] patch added from: https://launchpad.net/ubuntu/+source/tslib/1.0-7 Enables wacom tablet/touchscreen support on qemumips Signed-off-by: J. Aaron Gamble <john.gamble@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* mpc8315e-rdb: set UBOOT_ENTRYPOINTBruce Ashfield2011-02-221-0/+2
| | | | | | | | | | Fixes [BUGID #685] Although not used if the in kernel uImage is booted, it is a good idea to set the UBOOT_ENTRYPOINT just as the other uImage based boards do. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* connman-gnome: Remove the applet and properties desktop iconsDongxiao Xu2011-02-223-17/+44
| | | | | | | | | | | Remove the applet and properties desktop icons, since the connman-properties program should be invoked by tool bar, while connman-applet is launched by autostart. This fixes [BUGID #683] for laverne build, which is similar as Bug 506. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* formafactor: Fix qemumips machconfig to reflect update kernel fixes [BUGID #682]Saul Wold2011-02-101-2/+2
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* init-live.sh: add 'coldplug' udev triggerTom Zanussi2011-02-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | Fixes [BUGID #693] The init-live.sh script starts udevd in init-live.sh:early_setup(), but doesn't account for the possibility that the root device may have already been registered by the kernel before udevd starts up. If the device is detected after udevd starts up, everything's fine - udevd gets the 'add' uevent for the device, the root image shows up at e.g. /media/sda/rootfs.img, and the boot continues. If however the device is detected before udevd starts up, udevd misses the 'add' uevent and the root image never shows up, causing it to stay in the 'waiting for removable media' loop forever. The 'udevadm trigger' command is meant to be used to avoid this situation, but init-live.sh doesn't use it. Furthermore, since the default was changed in udev 152 from 'add' to 'change', the command needs to explicity name 'add' as the action. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
* Set release to correct version: poky.conflaverne-4.0.1Beth Flanagan2011-02-041-1/+1
| | | | | | Correcting release version in poky.conf Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
* Setting Yocto rev number to 4.1: poky.confBeth Flanagan2011-02-031-1/+1
| | | | | | | Found just prior to mirror push. Modified poky.conf to use the correct version. Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
* Laverne 4.1 release: NOTES and CHANGELOGBeth Flanagan2011-02-032-0/+290
| | | | | | | | | | | | Name: Laverne Version: 4.0.1 Built from Revision: fd7a07b3a2153826bedda2ef76b9a33ab2791680 Build Date: Jan 26 2011 Builder: autobuilder.pokylinux.org Commit of final release notes and changelog for Laverne 4.1 Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
* poky-extract-sdk: allow relative paths for extract-dirScott Garman2011-01-251-0/+5
| | | | | | | | | | | | | psuedo needs a full path to its pid file, so convert relative extract-dir paths to full ones. The symptom of this bug is receiving the following error: pseudo: Couldn't open relative/path/to/var/pseudo/pseudo.pid: No such file or directory This fixes [BUGID #670] Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* quilt: Fixed configure test for patch --version.Beth Flanagan2011-01-142-1/+21
| | | | | | | OpenSuSE 11.3 uses GNU patch 2.6.1.81-5b68 which breaks quilt's configure test for patch version. Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
* image.bbclass: Use the dedicated BB_WORKERCONTEXT, not bitbake internals to ↵Richard Purdie2011-01-141-1/+1
| | | | | | detect context Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* scripts/poky-qemu: Improve tmp layout assumptionRichard Purdie2011-01-141-1/+1
| | | | | | | | | | | If someone has changed TMPDIR in local.conf to a non-standard location, the poky-qemu script currently doesn't handle this and assumes if BUILDDIR is set, $BUILDDIR/tmp will exist. Its simple to check if this exists and if not, to ask bitbake where the directory is so this patch changes the code to do that. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* Make poky-qemu and related scripts work with arbitrary SDK locationsScott Garman2011-01-145-48/+26
| | | | | | | | | | * No longer assume SDK toolchains are installed in /opt/poky * [BUGFIX #568] where specifying paths to both the kernel and fs image caused an error due to POKY_NATIVE_SYSROOT never being set, triggering failure of poky-qemu-ifup/ifdown * Cosmetic improvements to usage() functions by using basename Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* poky-qemu: Fix issues when running Yocto 0.9 release imagesScott Garman2011-01-141-28/+36
| | | | | | | | | This fixes two bugs with poky-qemu when it is run from a standalone meta-toolchain setup. [BUGFIX #535] and [BUGFIX #536] Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* openssl: restore -Wall flagPaul Eggleton2010-12-162-2/+2
| | | | | | | | The -Wall flag was unintentionally removed from the end of the CFLAG var in 089612794d4d8d9c79bd2a4365d6df78371f7f40 by me. This patch puts it back in. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* web-webkit: fix for make 3.82Joshua Lock2010-12-152-2/+18
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* contacts: fix for make 3.82Joshua Lock2010-12-152-2/+17
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* dates: fix for Make 3.82Joshua Lock2010-12-152-2/+19
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* owl-video-widget: fix Makefile for super strict make 3.82Joshua Lock2010-12-152-1/+17
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* libowl-av: fix for Make 3.82Joshua Lock2010-12-142-2/+14
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* gst-plugins: fix for make 3.82Joshua Lock2010-12-146-5/+33
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* gstreamer: fix to comply with make 3.82's stricter parserJoshua Lock2010-12-142-3/+36
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* linux-libc-headers: fix for Make 3.82Joshua Lock2010-12-143-5/+42
| | | | | | | Fix the kernel Makefile for use with Make 3.82 by splitting mixed implicit and normal rules into separate rules. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* busybox: additional fixes for Make 3.82Joshua Lock2010-12-141-6/+37
| | | | | | | There where still some mixed implicit and normal rules in the Busybox Makefile, Update our existing make-382.patch to split these into separate rules. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* procps: fix for build against make 3.82Joshua Lock2010-12-102-1/+19
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* busybox: import upstream patch for make 3.82Joshua Lock2010-12-102-1/+27
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* eglibc: fix build of eglibc-initial for make 3.82Joshua Lock2010-12-102-2/+28
| | | | | | | Make 3.82, as shipped with Fedora 14, fixes some holes in the parser which in turn breaks behaviour of some Makefiles. Most notably eglibc's. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* qemu: fix failure to find zlib header files during configurePaul Eggleton2010-12-102-1/+22
| | | | | | | | | Corrects problems during configure of qemu-native due to the BUILD_CFLAGS not being included when attempting to compile the test program for zlib within the configure script. Signed-off-by: Paul Eggleton <paul.eggleton@intel.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* openssl-native: disable execstack flag to prevent problems with SELinuxPaul Eggleton2010-12-102-2/+6
| | | | | | | | | The execstack flag gets set on libcrypto.so by default which causes SELinux to prevent it from being loaded on systems using SELinux, which includes Fedora. This patch disables the execstack flag. (Note: Red Hat do this in their openssl packaging.) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* documentation/bsp: update to reference FILESEXTRAPATHSlaverne-4.0Joshua Lock2010-10-241-4/+4
| | | | | | | It's no longer neccesarry to define THISDIR and FILESPATH in each bbappend recipe. Should you need to reference extra files you should use FILESEXTRAPATHS Signed-off-by: Joshua Lock <josh@linux.intel.com>
* documentation: Update copyright to the Linux FoundationRichard Purdie2010-10-242-2/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* documentation/yocto-qs: Fix references to a poky-qemu package and replace ↵Richard Purdie2010-10-241-6/+9
| | | | | | with the yocto toolchain tarball Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* Removed text from section 5.1.2.1.1.Scott Rifenbark2010-10-241-30/+0
| | | | | | Removed several blocks of text from section 5.1.2.1.1 "Installing and Setting up the Eclipse IDE". This text according to Jessica was no longer needed.
* Corrected the package command for Debian-based hosts.Scott Rifenbark2010-10-241-2/+2
| | | | | | | Corrected a typo listing the package libsdl1.2-dev as libsdll.2-dev. Also added the package mercurial. Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
* Added package installation requirements.Scott Rifenbark2010-10-241-3/+22
| | | | | | | Added commands to support package installation of RPM-based host systems to the example. Input based on feedback from Dirk. Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
* Re-inserted Poky Image as part of the front matter.Scott Rifenbark2010-10-241-3/+3
| | | | | | | I have inserted the Poky image in the front matter again because the book is a Poky Guide. Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
* documentation/poky-ref-manual: Fix image makefile to reference the imageRichard Purdie2010-10-241-1/+1
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* Moved the Poky image file to the "Figures" folder.Scott Rifenbark2010-10-241-0/+0
| | | | | | | | The image file was in the same directory as the main reference manual files. So I moved the file into subdirectory "Figures" with other figures. Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
* Re-installed the Poky Handbook image at the top of the manualScott Rifenbark2010-10-241-6/+12
| | | | | | | | | I could not get the Yocto Project logo to appear correctly in the book after the title. I also decided that since Poky is by no means going away that this book should have that image associated with it as it is the Poky Reference Manual. Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
* Updated the yocto-environment picture and added example command edits.Scott Rifenbark2010-10-242-37/+45
| | | | | | | | | | | | When scaled to fit the page the picture had a black vertical line artifact to the right. I snipped out the image a little tigher to eliminate this line. I also incorporated Dirk's comments tightening up the sequence of example commands to do the build. I incorporated Fedora 14 note and addition of the BB_NUMBER_THREADS and PARALLEL_MAKE variables. Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
* rm_work.bbclass: Handle case where pseudo directory doesn't existRichard Purdie2010-10-221-1/+3
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* bitbake/fetch: When fetchers return errors, ensure any partial download is ↵Richard Purdie2010-10-221-0/+9
| | | | | | cleared Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* package_deb: The packaging command itself is run under fakeroot so these ↵Richard Purdie2010-10-221-2/+0
| | | | | | lines are totally unneeded Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* classes: Only enable fakeroot on setscene tasks with packagingRichard Purdie2010-10-225-5/+4
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* bitbake/fetch: Make URL checking slightly less verbose (distracting with the ↵Richard Purdie2010-10-221-1/+1
| | | | | | sstate code) Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* sstate: Fix mirror handling for file:// urlsRichard Purdie2010-10-221-4/+11
| | | | | | | | | | The fetcher has special handling for file:// mirror urls, being efficient and just providing an updated path. Unfortunately the sstate fetching code wasn't able to handle this. This patch detects this and injects a symlink to ensure everything works. It also fixes some datastore references to be correct and ensures the sstate download directory exists if it doesn't already. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* pseudo/fakeroot: Move the pseudo directory creation into bitbakeRichard Purdie2010-10-227-1/+10
| | | | | | | | | | | | | | If sstate was used to accelerate a build, the pseudo directory might not have been created leading to subsequent task failures. Also, sstate packages were not being installed under pseudo context meaning file permissions could have been lost. Fix these problems by creating a FAKEROOTDIRS variable which bitbake ensures exists before running tasks and running the appropriate setscene tasks under fakeroot context. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* package_deb: Fix a typo meaning the debian packaging was not running in the ↵Richard Purdie2010-10-221-1/+1
| | | | | | fakeroot evnironment Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* package_rpm: Don't check for the existence of dvar as its never usedRichard Purdie2010-10-221-6/+1
| | | | | | | | | | | If a sstate package exists for the package task but not for the rpm packaging task, the output from the package task will be used. The directory pointed to by dvar will not exist under this scenario. Since the directory is never used by the packaging process remove the check, substituting the pkgd variable which is always present and used. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>