summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* js: upgrade to version 1.8.0~rc1Qing He2010-08-063-11/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | from 1.5 use version string 1.7.0+1.8.0rc1 aka. spidermonkey changes: - rebase jsautocfg.h to add JS_HAVE_LONG_LONG, fixing the build failure - document the limitation of jsautocfg.h - jskwgen is a host script, and should be built by BUILD_CC - remove dependency of readline. readline or editline is only used in standalone js command line, which is not shipped in package. Removing the dependency to avoid any concern of GPL3-ization - set BUILD_OPT=1 for optimized build Note on version choice: js is known to have long rc cycles. e.g. the version 1.5: js-1.5-b1: 12/16/1999, js-1.5-rc1: 03/17/2000, js-1.5-rc6a: 06/16/2004, js-1.5 release: 10/22/2005 Current release version is 1.7.0: 10/19/2007, latest version 1.8.0-rc1: 03/09/2009, so 1.8.0-rc1 is used. Note on standalone js vs. xulrunner: xulrunner also includes a js version, that is more updated than standalone spidermonkey. It also uses autotools so jsautocfg.h patch may not be necessary. However the version of xulrunner is different from js, and it's difficult to identify the mapping between them. It needs further investigation on xulrunner's bundled js Signed-off-by: Qing He <qing.he@intel.com>
* pcmanfm: re-update it to 0.9.7Zhai Edwin2010-08-067-574/+88
| | | | | | | | | | | | | | | | Previous update was reverted due to some reason. This commit re-introduce the update after following efforts: * rebase owl-window-menu.patch - Translate the menu of gtk_ui_manager to original gtk menu, to enable owl feature. * fix cross-compile issue - 0.9.7 use a temp binary, built from its own source code, to optimize the data file size. This binary for target can't run on build system. As this size optimization only gain 0.2K improvement for one data file(used for about dialog), disable it to work around this issue. No perf drop found after this fix. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* pseudo: Enable dual 32-bit and 64-bit supportMark Hatle2010-08-061-4/+16
| | | | | | | | | On an x86_64 host, both 32-bit and 64-bit libraries need to be generated. It is fairly common that a user will have at least a few 32-bit programs on their x86_64 host system, so a pseudo wrapper for 32-bit is required to allow those programs to be successfully wrapped. Signed-off-by: Mark Hatle <Mark.Hatle@windriver.com>
* pseudo: Change pseudo integration to better support local DBsMark Hatle2010-08-049-735/+17
| | | | | | | | | Change the pseudo integration: * Uprev to latest open source version * Restructure the patches to allow for many local DBs, as well as pseudo specific lib dirs. Signed-off-by: Mark Hatle <mhatle@windriver.com>
* base.bbclass: Enable fakeroot (pseudo) usage during install and packagingMark Hatle2010-08-041-0/+11
| | | | | | | | Use the virtual fakeroot program when installing a package and also during packaging. This is important as it allows us to track full permissions, owners, groups and special files generated by packages. Signed-off-by: Mark Hatle <mhatle@windriver.com>
* package_ipk.bbclass: Fix variable nameRichard Purdie2010-08-041-1/+1
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* cooker.py: Fix case of -b option with a full filepathRichard Purdie2010-08-041-1/+1
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* *: Fix typo in documentationBernhard Reutner-Fischer2010-08-043-3/+3
| | | | | | | | | s/dictonary/dictionary/ (Bitbake rev: 0cc632761e75f66a8ce5ca2fe370f7551ccbfdf0) Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* gcc: Fix dynamic linker location for x86_64Joshua Lock2010-08-0419-22/+49
| | | | | | | gcc hard codes the linker path to lib64 for x86_64 machines, update our 64bithack patch to change this to lib. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* lib/oe: sync with OE.devJoshua Lock2010-08-043-9/+39
| | | | | | | Most notable change is the move to creating symlinks to patches in the metadata tree rather than copying them. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* icu: Make sure changes apply to Makefile and Makefile.in to fix build failureRichard Purdie2010-08-042-5/+3
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* package_ipk: Clean up initial variablesRichard Purdie2010-08-041-22/+14
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* bitbake/build.py: Add support for pre and postfuncs for tasksRichard Purdie2010-08-041-0/+6
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* kernel.bbclass: Simplify shell syntax so pysh can cope with itRichard Purdie2010-08-041-7/+7
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* packaged-staging: Fix architecture of nativesdk and cross-canadian packages. ↵Richard Purdie2010-08-041-7/+8
| | | | | | Also remove now unneeded path from native packages Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* cross-canadian: Move binaries into a subdirectory of bin to allow ↵Richard Purdie2010-08-036-23/+21
| | | | | | multimachine installs and update users accordingly Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* packaged-staing.bbclass: Make sure python function is marked as suchRichard Purdie2010-08-031-1/+1
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* utils: Fix number of arguments to bb.msg functionsBernhard Reutner-Fischer2010-08-031-2/+2
| | | | | | | | | | | | the 'fn' argument of them is not used, should be removed anytime: sed -i -e '/^def.*fn/s/,[[:space:]]*fn[[:space:]]*=[[:space:]]*None[[:space:]]*)/)/g' lib/bb/msg.py (Bitbake rev: 1cb72e371322c271ee7f2d008c6f7899fb38b4fd) Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* *: cosmetic whitespace removalBernhard Reutner-Fischer2010-08-032-2/+2
| | | | | | | (Bitbake rev: 2ed36a3d57de25e1af31d657a7b0b14857e5056a) Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* Add pysh, ply, and codegen to lib/ to prepare for future workChris Larson2010-08-0313-0/+9046
| | | | | | | (Bitbake rev: d0a6e9c5c1887a885e0e73eba264ca66801f5ed0) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* Let the runqueue find the user selected scheduler dynamicallyChris Larson2010-08-031-5/+15
| | | | | | | | | | | Searches the module (bb.runqueue) for any new style classes which are instances of RunQueueScheduler, and uses the one whose 'name' attribute matches the value of BB_SCHEDULER. (Bitbake rev: 6497cedf9cfc03201250af816995dd2bd85c36ef) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* apt: fix builds with modern GCCJoshua Lock2010-08-025-9/+53
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* scripts: add qemux86-64 support to the qemu scriptsJoshua Lock2010-08-022-9/+53
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* mesa-dri: fix x86-64 target compilationKevin Tian2010-08-022-4/+33
| | | | | | | | | | | | mesa-dri first generates glsl compiler and then use it to compile GL shader sources. Target glsl compiler can't run on build system, and thus port from openembedded by introducing a native recipe dedicated to creating a native glsl-compiler. This has to be an explicit -native recipe since its un-native sibling is already part of mesa-dri Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* hal: PR needs to be bumped for change to take effectSaul Wold2010-07-312-2/+2
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* opkg: take out the bad patch on crackNitin A Kamble2010-07-312-16/+3
| | | | | | | opkg_unarchive.patch: This patch was trunkating the filenames silently for no reason. took it out. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* libgcrypt: upgrade from 1.4.5 to 1.4.6Nitin A Kamble2010-07-311-0/+0
| | | | | | This resolves the build issue on mips while compiling with gcc-4.5.0 Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* libmad: fix for building on mips with gcc-4.5.0Nitin A Kamble2010-07-312-3/+35
| | | | | | | added a patch: fix_for_mips_with_gcc-4.5.0.patch Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* enchant: fix a dependancy issue affecting the buildNitin A Kamble2010-07-311-1/+1
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* emenlow: Add BASE_PACKAGE_ARCH and modification to hal.inc for emenlowSaul Wold2010-07-302-1/+4
| | | | | | [BUGID #171] [Netbook] Xserver version mismatch makes mouse/keyboard not work Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* site/x86_64: Add entries to allow various programs to compileRichard Purdie2010-07-302-1/+6
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* local.conf.sample: Use ?= when setting SDKMACHINEScott Garman2010-07-301-3/+3
| | | | | | | | | | | | This is a more sensible default which is also needed when using our autobuilder configuration, which changes SDKMACHINE between builds by setting an environment variable. Also made spacing around = more consistent for a couple of other variables. Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* xserver-xf86-config: netbook - merge the two ServerFlags sectionsJeff Dike2010-07-301-4/+1
| | | | | | | | | | A previous commit added AutoAddDevices as a separate ServerFlags section. This is apparently overridden by the one at the end of the file, so they need to be merged. [BUGID #141] Signed-off-by: Jeff Dike <jdike@linux.intel.com>
* distro tracking field: iputils, mktemp, xinetd, cracklibYu Ke2010-07-301-0/+16
| | | | | | these four are new packges. so add basic tracking filed first. Signed-off-by: Yu Ke <ke.yu@intel.com>
* distro-tracking: for new packagesKevin Tian2010-07-301-0/+61
| | | | | | | | | | | | | | | | | | gzip iptables ethtool net-tools shadow coreutils libuser bc ed pax quota which watchdog Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* iptables: new package 1.4.8Kevin Tian2010-07-301-0/+31
| | | | | | | | | | Create a new recipe based on openembedded 1.4.7 with cleanup suitable for poky acceptance. The tricky thing is to figure out which set of kernel modules are recommended for a basic iptable functions Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* pam: use volatile to avoid /var/run population in do_rootfsKevin Tian2010-07-302-3/+19
| | | | | | also disable doc rebuild to reuse existing man pages. Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* tcf-agent: fix the init script: remove the "-s SSL:" optionDexuan Cui2010-07-301-1/+1
| | | | | | | | | | | | | | | | [BUGFIX#158] tcf-agent launched with misleading options In the commit 90e80aafbd244b00c2ced995feb73af4a739279b, with the image built by poky-image-sdk(MACHINE=qemux86), tcf-agent is launched automatically with the option "-s SSL:" in script /etc/init.d/tcf-agent, which is misleading to users. This option tells the agent to use SSL instead of TCP for communication. Because tcf-agent is not built with the SSL option enabled (libssl is not installed in the target), the agent will fall back to TCP. This could be misleading to users, so we may as well remove it. Thanks Lianhao Lu for reporting the bug and clarifying it. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* distro tracking: add distro_sdk_tools.inc, add lttng-ustDexuan Cui2010-07-303-39/+43
| | | | | | | | Add conf/distro/include/private/distro_sdk_tools.inc; Move some sdk tools from distro_x11_libs.inc to the new .inc file; Add tracking info for lttng-ust. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* dhcp: fix $PATH environment for dhclient-scriptQing He2010-07-302-2/+24
| | | | | | | CLIENT_PATH is the only environment variable of dhclient-script, change it to include major run path, [BUGFIX#132] Signed-off-by: Qing He <qing.he@intel.com>
* libmusicbrainz: fix a build issue with gcc 4.5.0Nitin A Kamble2010-07-302-2/+40
| | | | | | | Added a new patch fix_build_issue_for_gcc_4.5.0.patch Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* gcc-4.5.0: import an arm fix patch from OENitin A Kamble2010-07-3011-9/+127
| | | | | | And bump PRs of affected recipes Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* gcc-4.5.0: apply the lib64 path 64bithack.patchNitin A Kamble2010-07-3011-9/+33
| | | | | | Bump the PR for all the affected recipes Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* distro tracking: add tracking for libmpcNitin A Kamble2010-07-301-0/+3
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* rootfs_ipk.bbclass: add keyword "Collected errors" for log error checkYu Ke2010-07-301-1/+1
| | | | | | | Once ipk meet errors, the log will show "Collected errors:\n xxxx ". so keyword "Collected errors" is more general to catch errors. Signed-off-by: Yu Ke <ke.yu@intel.com>
* avahi: fix the /var/run conflict with other packageYu Ke2010-07-302-1/+10
| | | | | | | avahi will create an empty /var/run dir, which will conflict with base-files package. This patch fix this by using populate-volatiles.sh approach recommended by OE handbook. Signed-off-by: Yu Ke <ke.yu@intel.com>
* emenlow - boot to a GUIJeff Dike2010-07-303-4/+19
| | | | | | | | | | | | | Here are a couple of small fixes that allow an emenlow image to boot to a GUI. The X server now RDEPENDS on the packages that need to be in the image. xserver-xorg-video-psb needed a name change to depend on libdrm_poulsbo. Signed-off-by: Jeff Dike <jdike@linux.intel.com>
* binutils: Fixed cross-compile issue for 64b build + arm targetZhai Edwin2010-07-302-0/+68
| | | | | | Incoportate RP's patch, which seems to be lost when update. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* bonono/orbit2: Move to meta-extrasRichard Purdie2010-07-3014-252/+201
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* libjana: Drop duplicate copy from meta-openmokoRichard Purdie2010-07-302-58/+0
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>