summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* libpcre: Fix BUILD_CFLAGS for out of tree supportRichard Purdie2013-03-231-1/+1
| | | | | | | | | The BUILD_CFLAGS were broken since /include no longer exists in this package. We do need to include ${B} in the include path for pcre.h though. (From OE-Core rev: d9130e5113c8f93f327fbe19dbfe39036c1c3995) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sudo: Fix out of tree builds ${B} != ${S}Richard Purdie2013-03-231-1/+1
| | | | | | | | The last change to sudo broke out of tree builds, fix this. (From OE-Core rev: a1226175c405db6eacb6e490e8e635b9dd156126) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Perl packages shouldn't be allarchJesse Zhang2013-03-235-5/+5
| | | | | | | | | | | Perl packages should know about arch so that they could install to the correct libdir. Or else they always install to the default libdir in multilib builds. (From OE-Core rev: a6b186a1a5cfc6ae9c099af0ed4217d91f5d4ef3) Signed-off-by: Jesse Zhang <sen.zhang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* packagegroup-core-tools-debug: split out Eclipse packagesPaul Eggleton2013-03-231-0/+1
| | | | | | | | | | | | Split out the packages added for Eclipse remote debugging to a separate package group so that we can avoid pulling them in if not using Eclipse. Fixes [YOCTO #3251]. (From meta-yocto rev: 79e138383716e02ed97aeb9aa63ce00f927f9768) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* packagegroup-core-tools-debug: split out Eclipse packagesPaul Eggleton2013-03-236-5/+15
| | | | | | | | | | Split out the packages added for Eclipse remote debugging to a separate package group so that we can avoid pulling them in if not using Eclipse. Fixes [YOCTO #3251]. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* packagegroup-core-tools-debug: remove rsyncPaul Eggleton2013-03-231-1/+0
| | | | | | | | | | | This was added for supporting Anjuta, which is no longer actively supported; in any case the anjuta-remote-run package RDEPENDS on rsync so it will be brought in by that if that is added. (From OE-Core rev: 21375469094e58c6ee860d656f0c997ff1e3d79c) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sudo: Compile mksigname and mksiglist for build hostKhem Raj2013-03-231-0/+5
| | | | | | | | | | | | | | | | | cross compiling sudo doesnt work well since it uses mksigname and mksiglist to generate C sources which are then used in sudo build itself. With this patch now we make sure those hosttools are compiled for build machine. It fixes the build failures like ./mksigname > signame.c /bin/sh: ./mksigname: cannot execute binary file make[1]: *** [signame.c] Error 126 (From OE-Core rev: 2ce5b1364ef6eb276352f7170d23dc3492c779f6) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* polkit: removeRoss Burton2013-03-236-233/+0
| | | | | | | | | | | | | Previous commits have meant that PolicyKit isn't used by default anymore, so remove this now that it's been integrated into meta-gnome. Rationales for this move inludes that PolicyKit isn't "core" for embedded systems, and future versions require the SpiderMonkey JavaScript runtime. (From OE-Core rev: 8c9fad86d8bd86f13d61a1a5cd65d12b16a9e0de) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-firmware: Package Broadcom firmwaresOtavio Salvador2013-03-231-2/+37
| | | | | | | | | | Adds specific packages for bcm4329, bcm4330 and bcm4334, including handling of symbolic link for the needed firmware filename. (From OE-Core rev: a8b8fb0447e8fb72050d1d9775ccb0e2b894a477) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cairo: explicity disable lzoSaul Wold2013-03-231-1/+2
| | | | | | | | | | | By explicitly disabling the LZO check, we ensure a deterministic build [YOCTO #4076] (From OE-Core rev: 7d855cb624f9330e185ff0f03b5b317d805eda09) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* classes/buildhistory: trim trailing spaces in file listingsPaul Eggleton2013-03-231-1/+1
| | | | | | | | | | These are mildly annoying when viewing git diffs of the buildhistory repository, so let's just get rid of them. (From OE-Core rev: c257f292bf75061647e380889487c7e2625592de) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* classes/buildhistory: implement history collection for SDKsPaul Eggleton2013-03-2311-105/+165
| | | | | | | | | | | | | | | | | | | | | | SDKs are constructed in a similar manner to images, and the contents can be influenced by a number of different factors, thus tracking the contents of produced SDKs when buildhistory is enabled can help detect the same kinds of issues as with images. This required adding POPULATE_SDK_POST_HOST_COMMAND and SDK_POSTPROCESS_COMMAND variables so that data collection functions can be injected at the appropriate points in the SDK construction process, as well as moving the list_installed_packages and rootfs_list_installed_depends functions from the rootfs_{rpm,ipk,deb} to the package_{rpm,ipk,deb} classes so they can also be called during do_populate_sdk as well as do_rootfs. Implements [YOCTO #3964]. (From OE-Core rev: c3736064483d4840e38cb1b8c13d2dd3a26b36aa) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* poky.conf: Include separatebuilddir.incRichard Purdie2013-03-231-0/+1
| | | | | | | | Use the separate builddir code for poky. (From meta-yocto rev: 2e861624ebcadd1ebbd37fa5892d2f9f44215c13) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libuser: Use abs_srcdir instead of srcdirKhem Raj2013-03-231-9/+18
| | | | | | | | | | srcdir is still relative to pwd. We need to use abs_srcdir to get absolute source directory names (From OE-Core rev: 9297e01b2095d90b5365d23c10de699a7cf411ea) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Edits to make section heads consistent capitalizationScott Rifenbark2013-03-221-11/+11
| | | | | | | | | | Various section heading titles were not using capital letters for primary words. Fixed this up. (From yocto-docs rev: da15d2ac3d043a0296a51d1a9fac69e7b4229f75) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Updated the "Core System Development" sectionScott Rifenbark2013-03-221-0/+11
| | | | | | | | | | | | | Added a new bullet as a tip for best practices that addresses how we address bug 3071 and 3274. We are suggesting they enable a PR Service if they are using continually incrementing PR values when package feeds are published or used. Reported-by: Richard Purdie <richard.purdie@linux.com> (From yocto-docs rev: b90497f139b1b6f7ab5510313eb297d5d7fb4e68) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Wording change to GDB example.Scott Rifenbark2013-03-221-2/+2
| | | | | | | | | | | | Fixes YOCTO #2827. Slight wording modification. Reported-by: Paul Eggleton <paul.eggleton@linux.com> (From yocto-docs rev: 8a9cd86d95bfcfca9c000dbd6f4213d15547cdfe) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Updated path in cross-GDB package example.Scott Rifenbark2013-03-221-2/+3
| | | | | | | | | | | | | Fixes YOCTO #2827 Replaced the path where one findes the binary for the meta- toolchain to a more recent example that was built from the beagleboard and using arm. (From yocto-docs rev: 020a7fcd7f99c50d32e831b8d51150e8db8ab4e9) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Reword for when to use BBMASK.Scott Rifenbark2013-03-221-85/+87
| | | | | | | | | | | | Changed the wording on when a user would consider using the BBMASK variable. It is more suited for excluding things that cause problems rather than for speeding up build time. Reporte-by: Paul Eggleton <paul.eggleton@linux.com> (From yocto-docs rev: 993d7c953a37747297238cd9af53a1f00e737df9) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* profile-manual: Updated sysprof basic usage sectionScott Rifenbark2013-03-221-10/+0
| | | | | | | | | | | There was a danny-specific note here that did not apply to the section any longer. I have removed it per Tom Zanussi's suggestion. (From yocto-docs rev: 2a3ccab263cfaa779a5182e6a4a7e534db253700) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* profile-manual: updated the Oprofile sectionScott Rifenbark2013-03-221-9/+0
| | | | | | | | | | Removed the danny-specific note at the end of the "OProfileUI - A GUI for OProfile" section per Tom Zanussi. (From yocto-docs rev: b665be9ad906cdc3ac644e67151da3a2cc1acfd3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* profile-manual: Updates to LTTng section setupScott Rifenbark2013-03-221-10/+15
| | | | | | | | | | | With dylan, the two patches are no longer required. However, the information to view traces still holds true regarding using Eclipse's Juno. Updated appropriately. (From yocto-docs rev: 90845677a37562b465bbd2bc849f773a2f54d92e) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* poky-ent: Updates for the 1.4 release.Scott Rifenbark2013-03-221-2/+2
| | | | | | | | | | I changed the distro name variable to "dylan" and the release to 9.0. (From yocto-docs rev: 4afec4519f3104f5a2e906f9ec4dfcca35d8000a) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: second pass of poky-tiny section.Scott Rifenbark2013-03-221-34/+209
| | | | | | | (From yocto-docs rev: 44be6fdc992809846fcaade8986c1a1323c14f0c) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: First pass at poky-tiny section.Scott Rifenbark2013-03-221-1/+149
| | | | | | | (From yocto-docs rev: fbf31831e9cf3fc088c12a2867fa56e2004d624b) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Added more examples of non-poky distros to note.Scott Rifenbark2013-03-221-0/+2
| | | | | | | (From yocto-docs rev: 7ff0db9e6f6ba5f50b71280f8a99d2c3ed5f0c4a) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* adt-manual: Added note to indicate ADT is distribution neutral.Scott Rifenbark2013-03-221-2/+7
| | | | | | | | | | | Cleared up some old wording that was confusing the build system with "Poky". Also, added a note at the front of the manual to be clear that the ADT is distribution-neutral. (From yocto-docs rev: 52d090ab931e5cbeffc612b91c11dbb55db15297) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Applied review comments to creating distro sectionScott Rifenbark2013-03-221-2/+4
| | | | | | | | | Applied two comments sent by Paul Eggleton. (From yocto-docs rev: d3b61e07b5b9db6a582c76f66a984b9f27812a6f) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: applied review comments to create own distroScott Rifenbark2013-03-221-16/+18
| | | | | | | | | These changes are basically Paul Eggleton's review comments. (From yocto-docs rev: bb92dbb968013952c4308b9aeed48223f49c866d) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Created list for other layer mods for other distrosScott Rifenbark2013-03-221-14/+22
| | | | | | | | | | | | The final paragraph of the "Creating Your Own Distribution" really should have been in list form and should have some cross-refs for other parts of the manual. The paragraph is now in list form and there are some references. (From yocto-docs rev: 02c4b2e99a3237d1506887659be0e67d6b000648) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Added notes about creating your own distroScott Rifenbark2013-03-222-12/+30
| | | | | | | | | | | | | Added a couple of notes to point out the ease of creating your own distro and not just relying on a Poky distribution. One note is at the very beginning of the manual and mentions Angstrom as an example of a distro based on the YP. The other note is at the beginning of the second chapter. (From yocto-docs rev: 1525a5e34c615cbfd25aeb12cc7a27ef95b51eab) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: fixed broken linksScott Rifenbark2013-03-221-8/+8
| | | | | | | | | | Added the "var-" part of links for the creating your own distribution section. (From yocto-docs rev: d419cd67084ce25d0d4b4437d8ce4cec180da59a) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Fixed two typos.Scott Rifenbark2013-03-221-2/+2
| | | | | | | (From yocto-docs rev: b2e0b0dbb8079be30420f306c3f844a3a0a466e0) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: First draft of "Creating your own distro" section.Scott Rifenbark2013-03-221-0/+102
| | | | | | | (From yocto-docs rev: fa8ddbf0ca6e7619fa79a5637e49f95f06719da9) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* (distro-alias|maintainers|package-regex).inc: mesa-dri -> mesaLaurentiu Palcu2013-03-223-8/+8
| | | | | | | | | [YOCTO #3385] (From meta-yocto rev: b9c2f3ad5696ef0756bfec20770d76c649ee5e2a) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* atom-pc.conf: replace mesa-dri with mesaLaurentiu Palcu2013-03-221-1/+1
| | | | | | | | | | | | This is needed since the mesa-dri recipes in oe-core got renamed to just mesa. [YOCTO #3385] (From meta-yocto rev: 0aaada20aa7453f7a5d9342b7f26ff4fa8b044b2) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* scripts/lib/bsp: replace mesa-dri with mesa in machine.conf filesLaurentiu Palcu2013-03-222-5/+5
| | | | | | | | | | | mesa-dri has been renamed to mesa. [YOCTO #3385] (From meta-yocto rev: ba8d5b6dcb6fa4721e85b62f15713072cc0fa23f) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vte: Fix conflict between FILES_${PN}-dbg and FILES_vte-dbgMark Hatle2013-03-221-1/+1
| | | | | | | | | | | Due to quarks with the way bitbake handles variable key values, the hard coded FILES_vte-dbg or automatic FILES_${PN}-dbg could replace each other, leaving the system in an inconsistent state. (From OE-Core rev: 7846f68537a942d340d5931e23a4fceb84b6edcb) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mesa: rename mesa-dri recipe to just mesaLaurentiu Palcu2013-03-2214-39/+39
| | | | | | | | | | | | | | | | | Rename mesa-dri recipes to just mesa. Also, replace all references to mesa-dri in all recipes/configs. The reason for this renaming (quote from bugzilla): "mesa-dri is a artefact of mesa-xlib existing, which doesn't anymore. mesa-dri should be renamed to mesa." [YOCTO #3385] (From OE-Core rev: c8bbb9983bcc7cfc5332e89c3e8148505b4ca83f) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* local.conf.sample.extended: update for disk monitorRobert Yang2013-03-221-4/+1
| | | | | | | | | | | | | The previous disk monitor is based on the disk, and one disk only can have one action, now it is based on the path, so we remove the additional comments from local.conf.sample.extended [YOCTO #3995] (From meta-yocto rev: 29c5de1feb144a768d6c60b8e5128b29091cf5a8) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* poky-floating-revisions.inc: remove the duplicated SRCREV_pn-exmap-consoleRobert Yang2013-03-221-1/+0
| | | | | | | | | | | Remove the duplicated SRCREV_pn-exmap-console. [YOCTO #4064] (From meta-yocto rev: c5c544876c6c0bcb088d6244aa3585d874d3559a) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* maintainers.inc: remove several duplicated linesRobert Yang2013-03-221-7/+0
| | | | | | | | | | | | There are several duplicated lines in maintainers.inc, remove the duplicated ones. [YOCTO #4064] (From meta-yocto rev: 389cd73a1294ec4f8e810bc42307f7e753f917a7) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* fix march sanity check issueZhenhua Luo2013-03-221-3/+6
| | | | | | | | | | | | | | | | | | | | | 1. check if gcc_test is really generate before os.remove("gcc_test") to avoid following error: ERROR: Execution of event handler 'check_sanity_eventhandler' failed Traceback (most recent call last): File "check_sanity_eventhandler(e)", line 4, in check_sanity_eventhandler(e=<bb.event.ConfigParsed object at 0x3151450>) File "sanity.bbclass", line 107, in check_sanity(sanity_data=<bb.data_smart.DataSmart object at 0x11ba110>) File "sanity.bbclass", line 22, in check_gcc_march(sanity_data=<bb.data_smart.DataSmart object at 0x11ba110>) OSError: [Errno 2] No such file or directory: 'gcc_test' 2. set result to False when build failed with -march=native to ensure -march=native is appended to BUILD_CFLAGS when host gcc really supports this flag, otherwise following error appears when build native packages. | cap_text.c:1: error: bad value (native) for -march= switch | cap_text.c:1: error: bad value (native) for -mtune= switch (From OE-Core rev: 4a4228fe250c8b23a5deeb25825d61c6e84a47a2) Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* perl: remove the duplicated RDEPENDSRobert Yang2013-03-221-1/+0
| | | | | | | | | | | | Remove a duplicated line: RDEPENDS_${PN}-module-cpanplus += "${PN}-module-load" [YOCTO #4064] (From OE-Core rev: 5660aac1cf3f71ce14b58f2c0e69460732f09d7c) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* perl-native: remove duplicated LIC_FILES_CHKSUMRobert Yang2013-03-221-2/+0
| | | | | | | | | | | | | Remove duplicated LIC_FILES_CHKSUM: LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8" [YOCTO #4064] (From OE-Core rev: 9b298098401c61761bd65fc1d9efff2197cc45a5) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pm-utils: remove duplicated RDEPENDSRobert Yang2013-03-221-1/+0
| | | | | | | | | | | Remove duplicated RDEPENDS_${PN} = "grep". [YOCTO #4064] (From OE-Core rev: 770c846ec5b9b6c555afbb7ce0ff116dbbfb519e) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* routerstationpro: use KERNEL_IMAGE_MAXSIZE to test the imageMichel Thebeau2013-03-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | routerstationpro is limited to 16mb flash size. Exceeding that size may not be noticed immediately, which we don't want. "The current latest kernel for the routerstationpro machine is far beyond the 16MB of it's flash size [0]. I think it would be good to [test if the size of the image is above that size]." Setting this variable will enable the do_sizecheck task and produce an error when the image is too large: "ERROR: This kernel (size=90230265 > 16777216) is too big for your device. Please reduce the size of the kernel by making more of it modular." [YOCTO #3514] (From meta-yocto rev: bb25e15c62cdde749f34050933d056a79dd2d3c5) Signed-off-by: Michel Thebeau <michel.thebeau@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* package_regex.inc: added new regexesEmilia Ciobanu2013-03-221-5/+4
| | | | | | | | | | | | | Added/Updated regexes for: * btrfs-tools * xf86-video-omap * remake * sqlite3 (From meta-yocto rev: 241a50419e1bc341b367d33842851c34708a8bc4) Signed-off-by: Emilia Ciobanu <emilia.maria.silvia.ciobanu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: Adjust spacing on information windowsAndrei Dinu2013-03-222-8/+8
| | | | | | | | | | | | | [Hob #4070] - tweaked the spacing on info windows - fixed text bolding in simple settings dialog (Bitbake rev: 2ecb102968cdbbdbbfa91e1dcccf45bcd0b59a89) Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: hob: implementation of search functionality in HobCristiana Voicu2013-03-224-83/+234
| | | | | | | | | | | | Implemented the search functionality for recipes and packages using filters on the listmodel. I have used the design which can be found in bugzilla. [YOCTO #3529] (Bitbake rev: b77166ad7b8571895f73a84f7789d93fbd4f6d04) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>