summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* xmodmap: fix compile with gcc 4.8Ross Burton2013-04-122-0/+62
| | | | | | | | | | | | | | | With gcc 4.8 there are compile errors: xmodmap.c:289:5: error: implicit declaration of function 'asprintf' [-Werror=implicit-function-declaration] (and more) These have been fixed upstream so take the patch from git until 1.0.8 is released. (From OE-Core rev: 3a4ce4bd2b1ab7834edabbaf63acb18113cf1907) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel.bbclass: Optionally create lib dir during deployKhem Raj2013-04-121-0/+1
| | | | | | | | | | | | | | | | | | | when we have multilib and a 64bit machine and initramfs then image/lib directory will not be created and it will end up with errors like | DEBUG: Executing python function sstate_task_prefunc | DEBUG: Python function sstate_task_prefunc finished | DEBUG: Executing shell function do_deploy | tar: lib: Cannot stat: No such file or directory | tar: Exiting with failure status due to previous errors So in order to overcome this shortcoming lets mkdir -p the lib directory so the modules can be happily installed. (From OE-Core rev: 3f501204f375cc40a14597a25cb09faaba9ff802) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* util-linux: use $PN in SYSTEMD_PACKAGESRoss Burton2013-04-121-1/+1
| | | | | | | | | | Instead of using util-linux-uuidd in SYSTEMD_PACKAGES use ${PN}-uuidd, as in multilib configurations util-linux-uuidd doesn't exist. (From OE-Core rev: 1b840f8f0a52423a2a395b4ff35a6b24b05e6c0b) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* systemd: use ${BPN} instead of ${PN} in FILESRoss Burton2013-04-121-1/+1
| | | | | | | | | | Otherwise in multlib builds the wrong name is used and files don't get packaged correctly. (From OE-Core rev: 6b1e5db596a8ba55a8f7b54aa9ff41771f39b230) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* wayland: add necessary dependencies to fix build errorZhenhua Luo2013-04-111-2/+4
| | | | | | | | | | | | | add libffi into DEPENDS to fix following build error: | checking for FFI... no | configure: error: Package requirements (libffi) were not met: | | No package 'libffi' found (From OE-Core rev: 23d6746efe1b3f31ad156db58fbc2767f750b712) Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* opkg.inc: don't hardcode /var/lib/opkgLaurentiu Palcu2013-04-111-1/+1
| | | | | | | (From OE-Core rev: 9caf1f2540f0419c1301cc21777f97c6671fd844) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dpkg, opkg, rpm-postinsts: avoid repackaging when changing IMAGE_FEATURESPaul Eggleton2013-04-113-0/+3
| | | | | | | | | | | | | | | | | | Recipes cannot depend on the value of IMAGE_FEATURES; in this case the result is do_package task signatures changing every time IMAGE_FEATURES changes, causing a large number of task re-executions. The implementation of the log capturing really needs to be changed to capture these in a different place and possibly not even conditional upon IMAGE_FEATURES at all, but this will be invasive at this point in the development cycle. For now, remove the variable dependencies to fix the immediate problem. Fixes [YOCTO #4246]. (From OE-Core rev: b4fbe4095de447ef4e426128bafaf8a292fa63e1) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sudo: handle glibc 2.17 crypt semanticsRoss Burton2013-04-112-0/+25
| | | | | | | | | | | | | | | Staring from glibc 2.17 the crypt() function will error out and return NULL if the seed or "correct" is invalid. The failure case for this is the sudo user having a locked account in /etc/shadow, so their password is "!", which is an invalid hash. crypt() never returned NULL previously so this is crashing in strcmp(). [ YOCTO #4241 ] (From OE-Core rev: 06d7078f7631b92e8b789f8e94a3a346d8181ce6) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* icecc: Allow to use this bbclass together with external toolchainsMartin Jansa2013-04-111-4/+33
| | | | | | | | | * original implementation by Antti Harju (From OE-Core rev: abb5bd9f2d3583808b61a0832378e4db45022be6) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* package_rpm.bbclass: fix build multilib image failed when PR Server enabledHongxu Jia2013-04-111-1/+8
| | | | | | | | | | | | | | | | | | | | | | 1, In bitbake.conf PKGR ?= "${PR}${EXTENDPRAUTO}" EXTENDPKGV ?= "${EXTENDPKGEVER}${PKGV}-${PKGR}" RDEPENDS_${PN}-dev = "${PN} (= ${EXTENDPKGV})" 2, When PR Server is enabled, EXTENDPRAUTO is not none which means PKGR and PR don't have the same value. 3, When multilib is enabled, RDEPENDS_${PN}-dev is not expanded correctly which uses PR rather than PKGR in the versioned dependency string. 4, Make sure PKGR rather than PR in version string when do_package_rpm. [YOCTO #4050] (From OE-Core rev: cf53c606fc1bc81abb68b6851ae68916f92e1d84) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* systemd: Fix path to systemd-analyze so it end up in the right package.Erik Botö2013-04-111-1/+1
| | | | | | | | | | | Since the upgrade to version 199 the location for systemd-analyze has change this caused the systemd-analyze package to be empty and the binary was shipped with the systemd package instead. (From OE-Core rev: 997f39575dbf85600a67bfb815d715443c3fe279) Signed-off-by: Erik Botö <erik.boto@pelagicore.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Spell check.Scott Rifenbark2013-04-111-2/+2
| | | | | | | | | Found a couple words that were fat-fingered and fixed them. (From yocto-docs rev: 593fd043f350bbce302c3de7dce0ab4bdbd2f247) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Using a Development Shell" section.Scott Rifenbark2013-04-111-2/+2
| | | | | | | (From yocto-docs rev: b90142103e053636e1fe5e00e43cff8195146f12) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Image Development Using Hob" section.Scott Rifenbark2013-04-111-7/+11
| | | | | | | (From yocto-docs rev: 62d5833951780cb5e8c39cc37e43bc30cf151d92) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Using a Git Workflow" section.Scott Rifenbark2013-04-111-1/+1
| | | | | | | (From yocto-docs rev: 94358ad29cf92f4094fa5ba336ef9b4ccf3cc81d) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Using a Quilt Workflow" section.Scott Rifenbark2013-04-111-2/+2
| | | | | | | (From yocto-docs rev: 392cfbab010858ce0354a41e1e6c2304a3be9287) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Fixed section heading capitalization.Scott Rifenbark2013-04-111-1/+1
| | | | | | | (From yocto-docs rev: 7f948729342eeb55072816ccade3bc9a32646c92) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Workflow Using Stand-Alone Cross-Development ↵Scott Rifenbark2013-04-111-1/+2
| | | | | | | | | Toolchains" section. (From yocto-docs rev: ea008dbbb0a6ab14ae3fe44238f60f92d85cecde) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Building and Customizing the Image Using Hob" section.Scott Rifenbark2013-04-111-7/+11
| | | | | | | (From yocto-docs rev: bd5fd85a90f4262eda09623fe2398798a4fecfe3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Changed title - shouldn't say "Files".Scott Rifenbark2013-04-111-2/+2
| | | | | | | (From yocto-docs rev: 538230267d9035ca5230b7176369ed8f95a64128) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Editing the Metadata Files" section.Scott Rifenbark2013-04-111-4/+6
| | | | | | | (From yocto-docs rev: bfa2ed13f7b924b38c3048431a93e3397f4afafa) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Creating the Yocto BitBake Commander Project" section.Scott Rifenbark2013-04-111-9/+12
| | | | | | | (From yocto-docs rev: f6b29db4b5f5f7580ce61fe2650bcaeb29a7d10e) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Customizing an Image Using a BitBake Commander Project ↵Scott Rifenbark2013-04-111-3/+3
| | | | | | | | | and Hob" section. (From yocto-docs rev: 72047560f5ecccf8d1dd7c7e9acb1ae1ec15ffe5) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Fixed an occurence of "User Space" in a title.Scott Rifenbark2013-04-111-1/+1
| | | | | | | | | This should be "User-Space". (From yocto-docs rev: 68bd187b9d0f3aeb8bc173fa49a97e5b01717661) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Running User-Space Tools" section.Scott Rifenbark2013-04-111-35/+42
| | | | | | | (From yocto-docs rev: bb3e5efe23d1bc890ad203e1c936937fb4fd8958) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Deploying and Debugging the Application" section.Scott Rifenbark2013-04-111-15/+18
| | | | | | | (From yocto-docs rev: cfea9d5872952ab21942b4d4cc4ae7ec89fa9d94) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Starting QEMU in User Space NFS Mode" section.Scott Rifenbark2013-04-111-1/+2
| | | | | | | (From yocto-docs rev: 7ef63536e99dfadaa436fd03a174cfae6aebc60a) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Building the Project" section.Scott Rifenbark2013-04-111-2/+3
| | | | | | | (From yocto-docs rev: 4d5903522e13dca6273f6724f05b0a7caab17798) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Configuring the Cross-Toolchains" section.Scott Rifenbark2013-04-111-8/+9
| | | | | | | (From yocto-docs rev: 22bc538effa37ea48884942f204488637663f75b) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Creating the Project" section.Scott Rifenbark2013-04-111-3/+3
| | | | | | | (From yocto-docs rev: 89ab8e345316bb76263e250491e2879d02f1c857) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Configuring the Target Options" section.Scott Rifenbark2013-04-111-2/+2
| | | | | | | (From yocto-docs rev: d47713659d1a4980b7c1d435b97570a6608658d2) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Configuring the Cross-Compiler Options" section.Scott Rifenbark2013-04-111-15/+18
| | | | | | | (From yocto-docs rev: b301486fe522a519fa743975fd229ab9060cf0c8) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Configuring the Eclipse Yocto Plug-in" section.Scott Rifenbark2013-04-111-3/+4
| | | | | | | (From yocto-docs rev: 05795932390370a06599ae6898e2f4d9187f7a37) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Importing the Plug-in Project into the Eclipse ↵Scott Rifenbark2013-04-111-4/+9
| | | | | | | | | Environment" section. (From yocto-docs rev: b1f7160923af2732aa93114f97caadb45e983699) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Installing the Plug-in Using the Latest Source Code" ↵Scott Rifenbark2013-04-111-1/+1
| | | | | | | | | section. (From yocto-docs rev: 28deb9648920ace60924b7d2c23a5d9f614b3f21) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Installing or Accessing the Eclipse Yocto Plug-in" ↵Scott Rifenbark2013-04-111-1/+1
| | | | | | | | | section. (From yocto-docs rev: f526dc09bcf6e89a1fe3ba48b42361b9c7ca1ae3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits from "Configuring the Eclipse IDE (Indigo)" section.Scott Rifenbark2013-04-111-3/+4
| | | | | | | (From yocto-docs rev: c699e4dfc417f3e4eef2d08b889cf0892254088b) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Configuring the Eclipse IDE (Juno)" section.Scott Rifenbark2013-04-111-2/+2
| | | | | | | (From yocto-docs rev: 45e59bf06861314814682e5a9a4ebcad24ea7b02) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Installing the Eclipse IDE" section.Scott Rifenbark2013-04-111-1/+1
| | | | | | | (From yocto-docs rev: 333563f12cb780be744160077e55ce8c76700971) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Working Within Eclipse" section.Scott Rifenbark2013-04-111-1/+2
| | | | | | | (From yocto-docs rev: 4932263b40b31a230f283091d5d30ebe5bd1440e) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Workflow Using the ADT and Eclipse" section.Scott Rifenbark2013-04-111-9/+9
| | | | | | | (From yocto-docs rev: 2fec6bbe8b89ce41b4fcd40f2ebaa5fa3fe3687e) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Application Development Workflow" section.Scott Rifenbark2013-04-111-3/+5
| | | | | | | (From yocto-docs rev: 022a082f940176f52a0142b3b042a9e6defab728) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Kernel Modification Workflow" section.Scott Rifenbark2013-04-111-5/+6
| | | | | | | (From yocto-docs rev: 0d14d7fe0deb6329370a4fa1a5a069725697bff0) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Kernel Overview" section.Scott Rifenbark2013-04-111-17/+15
| | | | | | | (From yocto-docs rev: a2c37342f0ee1c4b52ed449243785b93b13319b3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to remote GDB debugging section.Scott Rifenbark2013-04-111-8/+8
| | | | | | | | | | | Fixes YOCTO #3540 Further minor edits to make the example consistent. (From yocto-docs rev: 863a955f5cf119a38db4950101270bd5a53da027) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to "Developing a Board Support Package (BSP)" section.Scott Rifenbark2013-04-111-8/+9
| | | | | | | (From yocto-docs rev: 29843f6f5cc16c978369df1daf64d9d45d288490) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edits to the chapter introductory section.Scott Rifenbark2013-04-111-3/+3
| | | | | | | (From yocto-docs rev: 40337dc811ada7f426df3b243455476b98e0cee1) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Did a re-org on the subsections of remote DBG section.Scott Rifenbark2013-04-111-27/+27
| | | | | | | | | | | | Fixes YOCTO #3540 Realized that a better organization of the sub-sections could be applied. Pulled the last two sections up a level. (From yocto-docs rev: d196db9bf1f88aa0677453396abdd61bf5d724dd) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Updates to the debugging using GDB section.Scott Rifenbark2013-04-111-122/+74
| | | | | | | | | | | | | Fixes YOCTO #3540 Applied changes per Jessica Zhang's feedback from the bug entry in Bugzilla. I added some missing steps and also tried to make the section stick with one example throughout. (From yocto-docs rev: f995006a90a3646c92d54dc96a8fceae4de758eb) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pulseaudio: remove spurious cd in do_compile_prependRoss Burton2013-04-111-1/+0
| | | | | | | | | | | | | | This prepend was cding to ${S}, which then breaks base_do_compile as it assumes it's in ${B}. The cd is pointless as all of the operations use absolute paths, so remove it. The result of this was that base_do_compile was failing to find the makefiles, so the compilation happened in do_install. (From OE-Core rev: ac3a8ce0b672d1488c9074bde1a1d062e0c5fd33) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>