Richard Purdie [Thu, 30 Sep 2010 19:15:40 +0000 (20:15 +0100)]
Make invalid LICENSE fields fatal
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 19:40:57 +0000 (20:40 +0100)]
libopensync: Fixup a couple of LICENSE fields
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 19:32:01 +0000 (20:32 +0100)]
external-toolchain: Set LICENSE
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 19:08:29 +0000 (20:08 +0100)]
moblin-proto: Move to meta-extras
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Zhai Edwin [Thu, 30 Sep 2010 17:43:14 +0000 (01:43 +0800)]
qemu: introduce vmware vga FIFO rewind patch to fix qemu hang
In some circumstance guest driver got interrupted before inserting all args
for one command, so that qemu get an invalid args and hang. GL patch
doesn't consume these missing args, which further cause FIFO disorder.
This commit reverts wrong behavior of GL patch, and introduces a qemu
upstream patch to rewind FIFO unpon detecting incomplete command.
[BUGID #111] fixed by this.
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Zhai Edwin [Thu, 30 Sep 2010 13:54:38 +0000 (21:54 +0800)]
linux-libc-header: Sync CONNECTOR_MAX_MSG_SIZE with wrs kernel
Currently default header is linux-libc-header, which leads the dismatch
with wrs kernel.
The different headers for same file cause trouble between kerenl module and
user level binary. E.g. segfault in v86d due to different
CONNECTOR_MAX_MSG_SIZE in connector.h from the one used by uvesafb.
This fix is work around to sync with wrs kernel headers, and should be removed
after switching to linux-libc-headers-wrs.
[BUGID #279] fixed by this.
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Saul Wold [Thu, 30 Sep 2010 19:02:15 +0000 (12:02 -0700)]
gdb: add EXPAT to resolve gdbserver comm issues
[BUGID #346]
Added EXPAT = "--with-expat" to allow gdb to correctly
communicate with the gdbserver
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Thu, 30 Sep 2010 19:01:35 +0000 (12:01 -0700)]
gst-openmax: Add LICENSE field
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Richard Purdie [Thu, 30 Sep 2010 18:58:10 +0000 (19:58 +0100)]
gobject-introspection: Add LICENSE
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 18:55:26 +0000 (19:55 +0100)]
spectrum-fw: Set LICENSE
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 18:00:19 +0000 (19:00 +0100)]
puzzles: Set LICENSE
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Saul Wold [Thu, 30 Sep 2010 17:22:27 +0000 (10:22 -0700)]
libfribidi: added LICENSE field
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Thu, 30 Sep 2010 17:22:11 +0000 (10:22 -0700)]
beeycrypt: added LICENSE field
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Thu, 30 Sep 2010 17:21:46 +0000 (10:21 -0700)]
libffi: added LICENSE field
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Thu, 30 Sep 2010 17:21:30 +0000 (10:21 -0700)]
tzcode-native: added LICENSE field
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Thu, 30 Sep 2010 17:21:12 +0000 (10:21 -0700)]
polkit-gnome: added LICENSE field
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Thu, 30 Sep 2010 17:20:14 +0000 (10:20 -0700)]
diffstat: Added LICENSE field
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Thu, 30 Sep 2010 17:19:56 +0000 (10:19 -0700)]
libopensync: Added LICNESE fields to plugins
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Thu, 30 Sep 2010 17:19:20 +0000 (10:19 -0700)]
farsight: Added LICENSE field
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Dexuan Cui [Thu, 30 Sep 2010 10:00:52 +0000 (18:00 +0800)]
elfutils: add zlib into DEPENDS
This patch fixes the build failure I met with.
Thanks a lot to Qing He and Kevin Tian for pointing this out!
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Kevin Tian [Wed, 29 Sep 2010 00:54:33 +0000 (08:54 +0800)]
gcc: fix check for target libc ssp support
gcc uses hardcoded path "${with-build-sysroot}/usr/include" to check target
libc ssp support. Based on GLIBC version strings in features.h in that search
path, gcc knows whether target (e)glibc implements stack protector itself.
However this breaks meta-toolchain, which actually has target libc headers
installed under {with-build-sysroot}/opt/... This way features.h is not found
and thus gcc-crosssdk-intermediate thinks that target (e)glibc doesn't support ssp.
Later when building eglibc-nativesdk, undefined reference to "__stack_chk_guard"
occurs which was caused by:
o eglibc do_configure found that gcc-crosssdk-intermediate supports ssp,
and thus enable -fstack-protector for nscd
o eglibc itself supports stack smash proctection for some architectures such
as i386, x86-64, etc. It's expected to use its own method to provide stack
protection, instead of relying on gcc. So eglibc rtld.os doesn't export
__stack_chk_guard to other modules
o then when installing nscd objects, gcc-crosssdk-intermediate sees the
flag "-fstack-protector", while it thought this eglibc doesn't implement
ssp itself, so gcc turns to the alternative to find a valid
__stack_chk_guard exported. eglibc doesn'g export it, while
gcc-crosssdk-intermediate itself disables libssp.
Then the undefined reference happens. If enabling libssp for gcc-crosssdk-
intermediate, it may also work-around this issue. But the ideal fix is still
to replace hard coded path with the actual one where target libc gets installed.
glibc-nativesdk doesn't encounter this issue because it thinks gcc doesn't
support ssp, and thus doesn't enable "-fstack-protector" for nscd. Don't know
the reason yet
This fix [BUGID #366]
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Yu Ke [Thu, 30 Sep 2010 12:54:49 +0000 (20:54 +0800)]
initrdscripts: remove the incorrect moblin message (Bug 368)
When install the live image into netbook/emenlow, the install tool prompt:
# Found drive at /dev/sda. Do you want to install moblin there ? [y/n]
The "moblin" here should be replaced by "poky".
Fix [BUGID #368]
Signed-off-by: Yu Ke <ke.yu@intel.com>
Yu Ke [Thu, 30 Sep 2010 08:58:10 +0000 (16:58 +0800)]
qmmp: add qmmp into image (Bug 301)
qmmp is not included any image before, because it depends on one moblin recipe taglib. Since now the taglib is included into meta/recipes-support, it is safely to add qmmp into the task-poky-qt.
This commit also add an build time dependency for qmmp, because qmmp use some head files from taglib. Without this, qmmp build failure is occationally observed.
Fix [BUGID #301]
Signed-off-by: Yu Ke <ke.yu@intel.com>
Bruce Ashfield [Sat, 25 Sep 2010 05:47:53 +0000 (01:47 -0400)]
kern-tools: add BSP bootstrap support
Part of [BUGID #373]
Update the default revisions for kern_tools to pull in the updates
required to support BSP bootstrapping.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Bruce Ashfield [Sat, 25 Sep 2010 05:41:56 +0000 (01:41 -0400)]
linux-wrs: pass ARCH to updateme
Part of [BUGID #373]
In order to generate BSP definitions for new boards, we need
to know the architecture. So we'll arrange to pass it to
updateme.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Bruce Ashfield [Sat, 25 Sep 2010 05:39:02 +0000 (01:39 -0400)]
linux-wrs: validate commits when forcing branches
Fixes [BUGID #372]
If for some unknown reason, the kernel git repository hasn't been properly
updated and is *older* than the revisions listed in default-revisions the
branch sanity checking kicks in and tries to force branches to the right
revs. The problem is, the revisions it is looking for don't exist in the
tree. As a result, error messages are thrown about invalid commit IDs.
These aren't helpful, and are simply confusing for the user.
Instead we can test for the commit ID, and if it isn't valid, indicate
that the commit ID isn't valid and that the tree is potentially out
of sync.
This situation is not common, but it is an easy test and the extra
sanity checking is useful.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Saul Wold [Thu, 30 Sep 2010 03:45:41 +0000 (20:45 -0700)]
mc: add to extended, but not part of any image
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Wed, 29 Sep 2010 18:26:48 +0000 (11:26 -0700)]
Distro tracking: Add info for lighttpd
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Mark Hatle [Wed, 29 Sep 2010 17:28:25 +0000 (12:28 -0500)]
rpm_5.1.10.bb: The upstream location has changed
rpm_5.1.10.bb: bump PR
[BUGID #357]
The upstream distribution location for the Poky 5.1.10 version of RPM
has changed. Correct it to the new location.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Mark Hatle [Wed, 29 Sep 2010 17:40:36 +0000 (12:40 -0500)]
rpm_5.1.10: Disable dependency loop message
[BUGID #332]
Disable the dependency loop message that looked like an error had
occured. This is really a debug message.
Also remove the "remove: " debug message about which side of the
dep loop it is removing to resolve the circular dependency.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Mark Hatle [Wed, 29 Sep 2010 17:17:36 +0000 (12:17 -0500)]
rootfs_rpm.bbclass: Add Dirnames configuration
[BUGID #327]
RPM attempts to validate all of the directories on the system are
owned by a package. While the root "/" directory was not owned, so
in some cases an error could be thrown. Resolve this by informing
RPM that yes, "/" is in fact a directory on the system that was
properly constructed and is "owned".
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Saul Wold [Tue, 28 Sep 2010 22:32:19 +0000 (15:32 -0700)]
distro_tracking_fields: Updated with distro alias information
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Richard Purdie [Thu, 30 Sep 2010 17:02:08 +0000 (18:02 +0100)]
pointercal: Add LICENSE field
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 17:01:51 +0000 (18:01 +0100)]
udev-extraconf: Fix LICENSE field
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 16:59:19 +0000 (17:59 +0100)]
pong-clock: Fix LICENSE field
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 16:57:50 +0000 (17:57 +0100)]
signgp: Add licence info from OE.dev
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 16:55:56 +0000 (17:55 +0100)]
task-poky-lsb/basic: Add LICENSE fields
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 15:55:32 +0000 (16:55 +0100)]
run-postinsts: Add LICENSE
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 08:35:23 +0000 (09:35 +0100)]
bitbake/bitbake-sigdiff: Extend to handle dumping single state siginfo files
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 08:34:54 +0000 (09:34 +0100)]
bitbake/siggen: Fix issue where excluded dependencies caused exceptions
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Thu, 30 Sep 2010 08:33:56 +0000 (09:33 +0100)]
poky.conf: Add BB_HASHBASE_WHITELIST to ignore variables which don't influence sstate packages (Initial Population)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Joshua Lock [Wed, 29 Sep 2010 11:18:34 +0000 (12:18 +0100)]
Revert "Drop vm_mmap_min_addr checks from scripts and sanity class"
This reverts commit
138df217efe850528f88d340acf864c38780c2b0.
We still need the vm_mmap_min_addr set to 0 to run locale generation for
qemu-arm
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Joshua Lock [Wed, 29 Sep 2010 11:10:57 +0000 (12:10 +0100)]
sstate: list directories in child first order in the manifest file
The directory list in the manifest file needs to be sorted such that child
directories are deleted first. Fortunately as the list is generated by walking
the directory tree achieving this is as simple as reversing the directory list.
Fixes [BUGID #269]
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Kevin Tian [Mon, 27 Sep 2010 04:42:55 +0000 (12:42 +0800)]
procps: use new batch update-alternatives feature
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Kevin Tian [Mon, 27 Sep 2010 04:42:16 +0000 (12:42 +0800)]
diffutils: use new batch update-alternatives feature
Signed-off-by Kevin Tian <kevin.tian@intel.com>
Kevin Tian [Mon, 27 Sep 2010 04:41:44 +0000 (12:41 +0800)]
bzip2: use new batch update-alternatives feature
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Kevin Tian [Sat, 25 Sep 2010 06:54:44 +0000 (14:54 +0800)]
update-alternative.bbclass: add batch alternatives support
With new batch ability, we can use below simple 2 lines for multiple alternatives
updates:
ALTERNATIVE_LINKS = "${bindir}/cmd1 {sbindir}/cmd2 ..."
ALTERNATIVE_PRIORITY = "100"
Then for each command "/path/cmd" listed in ALTERNATIVE_LINKS, below is done
automatically:
${D}/path/cmd is renamed to ${D}/path/cmd.{PN}
a new alternative named 'cmd' is created which:
links /path/cmd to /path/cmd.{PN} with priority specified in ALTERNATIVE_PRIORITY
This way the recipe with multiple alternatives could be simplified a lot. There
are still some cases where above assumptions may break, but I expect more recipes
should benefit from this simple enhancement
Fix [BUGID #257]
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Gary Thomas [Wed, 29 Sep 2010 15:25:47 +0000 (16:25 +0100)]
e2fsprogs: Don't change ownership of the patches directory
Patches can be symlinks and changing their ownership may not be possible.
Therefore stop doing this.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Gary Thomas [Wed, 29 Sep 2010 15:22:40 +0000 (16:22 +0100)]
gstreamer: Ensure correct orcc version is used
Taken from a patch from the OE list posted by Michael Smith, submitted
to Poky by Gary Thomas.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Wed, 29 Sep 2010 14:29:32 +0000 (15:29 +0100)]
handbook/bsp-guide: Fix typo
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Wed, 29 Sep 2010 14:26:29 +0000 (15:26 +0100)]
poky-doc-tools: Remove unnecessary autotools usage and simplfy structure
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Wed, 29 Sep 2010 11:11:51 +0000 (12:11 +0100)]
sstate.bbclass: Add signature hash to sstate package names
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Wed, 29 Sep 2010 10:25:10 +0000 (11:25 +0100)]
bitbake/bitbake-runtask: Signatures are needed in task context and have little overhead so enable in worker context
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Wed, 29 Sep 2010 10:19:22 +0000 (11:19 +0100)]
sstate.bbclass: Update to use SSTATE variables everywhere and remove the now unneeded complicated paths from the sstate files
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Wed, 29 Sep 2010 10:02:07 +0000 (11:02 +0100)]
sstate.bbclass: pstage -> sstate name changes (no global implications)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Wed, 29 Sep 2010 09:57:16 +0000 (10:57 +0100)]
sstate.bbclass: Rename PSTAGE2 -> SSTATE
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie [Tue, 28 Sep 2010 21:24:13 +0000 (22:24 +0100)]
bitbake/siggen: Ensure full signature data is not held unless needed, reducing memory consumption
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Dongxiao Xu [Tue, 28 Sep 2010 01:47:18 +0000 (09:47 +0800)]
connman: fix the issue that connman could not disconnect from shutdown AP
Upstream has a fix for MeeGo/Carrick which has the same
phenomenon as our side, therefore port the patch into poky.
This fixes [BUGID #266] and [BUGID #267].
Remove the option "--enable-fake" since it sometimes causes
offline mode failure.
Launch connmand in initlevel 3.
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Saul Wold [Tue, 28 Sep 2010 22:25:18 +0000 (15:25 -0700)]
task-poky-basic.bb: fix lighttpd typo
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Tue, 28 Sep 2010 15:45:07 +0000 (08:45 -0700)]
task-poky-basic.bb: add lighttp to basic image type for webserver
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Tue, 28 Sep 2010 15:44:37 +0000 (08:44 -0700)]
local.conf.sample: set RPM as default package and rootfs image creation
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Zhai Edwin [Tue, 28 Sep 2010 08:00:25 +0000 (16:00 +0800)]
lighttpd: Add 1.4.28 as new recipe.
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Richard Purdie [Mon, 27 Sep 2010 14:57:13 +0000 (15:57 +0100)]
bitbake: Pass task hash information to subprocesses
Pass task has informaiton to work processes, allowing full manipulation of
the hash data in the task context allowing checksums to be usable.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Joshua Lock [Tue, 28 Sep 2010 13:01:33 +0000 (14:01 +0100)]
bitbake/fetch: fix logic to prevent fetches when the file already exists
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Richard Purdie [Sun, 26 Sep 2010 07:33:19 +0000 (15:33 +0800)]
codeparser.py: Fix storing of hash values as object references can be corrupted
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Saul Wold [Mon, 27 Sep 2010 16:19:58 +0000 (09:19 -0700)]
iproute2: Disable PARALLEL_MAKE
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Dexuan Cui [Sun, 26 Sep 2010 12:53:30 +0000 (20:53 +0800)]
eglibc: add FILESPATH to avoid failure on unpack
Actually Kevin identified the issue:
without this fix, "bitbake eglibc-initial-nativesdk" would fail on unpack.
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Dexuan Cui [Sun, 26 Sep 2010 08:39:43 +0000 (16:39 +0800)]
poky-default.inc: change the hardcoded glibc-initial to ${POKYLIBC}-initial
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Scott Garman [Sun, 26 Sep 2010 03:42:35 +0000 (20:42 -0700)]
distro_tracking_fields.inc: update cpio info
Reflects current status of cpio recipes.
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Scott Garman [Sun, 26 Sep 2010 03:37:20 +0000 (20:37 -0700)]
cpio: add version 2.11 (GPLv3)
This is the most recent version of cpio. Recipe derived from
OpenEmbedded's recipe for cpio v2.5.
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Saul Wold [Mon, 27 Sep 2010 16:08:16 +0000 (09:08 -0700)]
trace-cmd_git.bb: remove DEPENDS of glibc since there is a system default for
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Scott Garman [Sat, 25 Sep 2010 01:31:13 +0000 (18:31 -0700)]
distro_tracking_fields.inc: update grep info
Reflects current status of grep, including new recent release
information.
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Scott Garman [Sat, 25 Sep 2010 01:26:24 +0000 (18:26 -0700)]
grep: add version 2.7 (GPLv3)
This is the most recent version of grep. Recipe derived from
OpenEmbedded's recipe for grep v2.6.3.
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Saul Wold [Mon, 27 Sep 2010 15:43:07 +0000 (08:43 -0700)]
task-poky-clutter.bb: removed examples
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Sun, 26 Sep 2010 19:40:52 +0000 (12:40 -0700)]
distro_tracking: Update tracking info
Add additional aliases and tracking fields for missing packages
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Mon, 27 Sep 2010 15:41:06 +0000 (08:41 -0700)]
distro_check.py: Added additional support for distro checking
Now tells which section a macth occurs (main vs contrib)
Keywords for Poky, OpenedHand, ...
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Yu Ke [Wed, 15 Sep 2010 06:42:05 +0000 (14:42 +0800)]
QEMU: Fix the mouse shadow issue (bug 170)
the root cause is that the qemu cursor array is hardcoded to 256 bytes, while the sato use cursor of the size 64*64=4096, thus lead buffer overflow and abnormal mouse.
A qemu patch is introduced to dynamically allocate qemu cursor array to fix this issue. BTW, qemu upstream already redesign the cursor interface and implementation, and this issue does not occur in upstream, so no need to push this patch to upstream. and when upgrade the qemu, this patch can be safely removed.
Fix [BUGID #170]
Signed-off-by: Yu Ke <ke.yu@intel.com>
Qing He [Sun, 26 Sep 2010 08:16:04 +0000 (16:16 +0800)]
qemux86-64: remove -march for 64bit common pc
Fixes [BUGID #347].
Signed-off-by: Qing He <qing.he@intel.com>
Qing He [Sat, 25 Sep 2010 08:28:19 +0000 (16:28 +0800)]
task-poky-tools: add rsync in target image
rsync is needed by debugging using SDK, add it as dependency
of task-poky-tools-debug, this fixes [BUGID #345]
Signed-off-by: Qing He <qing.he@intel.com>
Qing He [Sat, 25 Sep 2010 07:19:45 +0000 (15:19 +0800)]
glibc & eglibc: fix mips DT_MIPS_RLD_MAP checking
On mips target, binutils currently sets DT_MIPS_RLD_MAP to 0 in dynamic
section if a --version-script sets _RLD_MAP to local. This is apparently
a binutils bug, but libc shouldn't segfault in this case.
Add sanity check on the entry to avoid segfault, fixes [BUGID #287].
Signed-off-by: Qing He <qing.he@intel.com>
Dongxiao Xu [Sat, 25 Sep 2010 03:22:23 +0000 (11:22 +0800)]
poky-qemu-internal: Add userspace nfs support for mips and ppc
Add userspace nfs support for mips and ppc architecture.
This fixes [BUGID #343]
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Dongxiao Xu [Sat, 25 Sep 2010 02:16:26 +0000 (10:16 +0800)]
gcc: enable poison parameters detection
If not configured with --enable-target-optspace, gcc will report
errors if there is '-Os' optimization in parameters.
This fixes [BUGID #342]
Also add "--enable-target-optspace" option to arm gcc configuration.
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Zhai Edwin [Mon, 27 Sep 2010 13:16:16 +0000 (21:16 +0800)]
xtscal: Fix the endless loop when starting X
xtscal script in Xsession.d would lead endless loop if /etc/pointercal is
missing, which make the system hang.
This fix adds a counter for loop.
[BUGID #251] got fixed by this.
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Saul Wold [Fri, 24 Sep 2010 22:36:24 +0000 (15:36 -0700)]
netbook: Correct netbook build by moving netbook configuration from moblin to meta
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Fri, 24 Sep 2010 21:51:52 +0000 (14:51 -0700)]
taglib: move from moblin to recipes-support to support qmmp
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Thu, 23 Sep 2010 19:42:06 +0000 (12:42 -0700)]
man-pages_3.25.bb: Fix SRC_URI to contain Archive directory
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Saul Wold [Wed, 22 Sep 2010 16:52:15 +0000 (09:52 -0700)]
distro_tracking_fields.inc: merged fixes
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Dongxiao Xu [Sun, 19 Sep 2010 14:29:09 +0000 (22:29 +0800)]
upgrade gcc to 4.5.0 for mips architecture
Fix the out of memory when building webkit-gtk with gcc-4.5.0
The new feature added after 4.3.3
"http://www.pubbs.net/200909/gcc/94048-patch-add-support-for-rmipsjalr.html"
will cause cc1plus eat up all the system memory when build webkit-gtk.
The function mips_get_pic_call_symbol keeps on recursively calling itself.
Disable this feature to walk aside the bug.
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Dongxiao Xu [Sun, 19 Sep 2010 13:54:58 +0000 (21:54 +0800)]
meta-ide-support: Fix PKG_CONFIG_SYSROOT_DIR and PKG_CONFIG_PATH
Fix PKG_CONFIG_SYSROOT_DIR and PKG_CONFIG_PATH to make them point
to the correct directory path.
This fixes [BUGID #340].
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Bruce Ashfield [Wed, 22 Sep 2010 00:43:34 +0000 (20:43 -0400)]
qemuarm: remove NFS_ROOT override
During the debug of disk booting on the qemuarm target, the
NFS_ROOT default settings were incorrectly overriden. This
removes the overide and allows the default / global settings
to be processed.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Yu Ke [Thu, 16 Sep 2010 03:36:16 +0000 (11:36 +0800)]
Add DISTRO_PN_ALIAS for 95 packages
Signed-off-by: Yu Ke <ke.yu@intel.com>
Signed-off-by: Mei Lei <lei.mei@intel.com>
Xiaofeng Yan [Tue, 21 Sep 2010 08:32:13 +0000 (16:32 +0800)]
[#BUG298]:Fix some bugs during compiling based on x86_64
fix a problem that compliation failed for groff on machine x86_64
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Richard Purdie [Tue, 21 Sep 2010 22:53:07 +0000 (23:53 +0100)]
bitbake.conf/documentation.conf: Start using SUMMARY variable and document it
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Darren Hart [Mon, 20 Sep 2010 23:15:05 +0000 (16:15 -0700)]
Correct js jsautocfg.h and install jsproto.tbl
I'm adding mediatomb packages and ran into a couple build issues with js.
The first complained that jsapi.h wasn't found/usable. This turned out to
be because jsautocfg.h was including "../conf.h" instead of "conf.h" as
they are installed in the same directory in the sysroot. I believe the correct
fix for this would involve the configure.ac script which is used to generate
the jsautocfg.h header file we store in the recipe. Commit
f25d26de776f9927e1d2c92f031085a9b9323087 (js: fix configure) added conf.h,
Qing can you comment here?
The second failure is due to jsproto.tbl not being installed but being
referenced by another header file.
This patch corrects the jsautocfg.h header directly and adds the jsproto.tbl
to the do_install() recipe function.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
CC: Qing He <qing.he@intel.com>
Darren Hart [Tue, 17 Aug 2010 03:14:49 +0000 (20:14 -0700)]
Wrap output at 80 columns for poky-env-internal
The output of:
$ source poky-init-build-env
would wrap on 80 character terminals, making the output difficult to read.
Replace the somewhat clumsy repeated usage of "echo" with bash here documents,
limiting line length to 80 characters. The use of here documents simplifies this
by removing any leading commands or indentation from the output being generated.
A bash'ism should be acceptable here as poky-init-build-env already aborts if
the shell is not bash.
Signed-off-by: Darren Hart <darren@dvhart.com>
Dexuan Cui [Tue, 21 Sep 2010 08:40:59 +0000 (16:40 +0800)]
poky.conf: use eglibc rather than glibc
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Dexuan Cui [Tue, 21 Sep 2010 08:52:53 +0000 (16:52 +0800)]
[e]glibc-package.inc: fix multiple providers for glibc-gconv-iso8859-1
This commit fixes the following error while doing this:
bitbake poky-image-sato
ERROR: Conflicting PREFERRED_PROVIDER entries were found which resulted in an attempt to select multiple providers (['virtual:nativesdk:/distro/dcui/dexuan/meta/recipes-core/eglibc/eglibc_2.12.bb', '/distro/dcui/dexuan/meta/recipes-core/eglibc/eglibc_2.12.bb']) for runtime dependency glibc-gconv-iso8859-1 The entries resulting in this conflict were: ['PREFERRED_PROVIDER_virtual/libc-nativesdk = eglibc-nativesdk', 'PREFERRED_PROVIDER_virtual/libc = eglibc']
NOTE: multiple providers are available for runtime glibc-gconv-iso8859-1 (eglibc, eglibc-nativesdk, glibc-nativesdk, glibc, external-csl-toolchain, external-poky-toolchain)
NOTE: consider defining a PREFERRED_PROVIDER entry to match glibc-gconv-iso8859-1
And bumped PR.
This partly fixes [BUGID #329]
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Dexuan Cui [Tue, 21 Sep 2010 08:49:15 +0000 (16:49 +0800)]
poky-eglibc.inc: fix multiple providers for virtual/libc-nativesdk and other
This commit fixes the following error while doing this:
bitbake poky-image-minimal
NOTE: multiple providers are available for virtual/libc-nativesdk (glibc-nativesdk, eglibc-nativesdk)
NOTE: consider defining a PREFERRED_PROVIDER entry to match virtual/libc-nativesdk
NOTE: multiple providers are available for virtual/i586-pokysdk-linux-libc-initial-nativesdk (glibc-initial-nativesdk, eglibc-initial-nativesdk)
NOTE: consider defining a PREFERRED_PROVIDER entry to match virtual/i586-pokysdk-linux-libc-initial-nativesdk
And bumped PR.
This partly fixes [BUGID #329]
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Tom Zanussi [Tue, 21 Sep 2010 22:01:07 +0000 (17:01 -0500)]
handbook: add BSP click-through licensing section
Add a section to the BSB Developer's Guide outlining the motivation
and procedures for click-through BSP licensing support.
The corresponding build system support hasn't been implemented yet;
this is being added now mainly as a guideline wrt future intentions.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Tom Zanussi [Tue, 21 Sep 2010 14:21:26 +0000 (09:21 -0500)]
Fix some typos and grammatical errors in Poky handbook
While going through the BSP section, I noticed some minor problems -
these are my cleanup fixes.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>