summaryrefslogtreecommitdiffstats
path: root/meta-yocto
AgeCommit message (Collapse)Author
2013-07-29maintainers.inc: reshuffle maintainersIonut Radu
(From meta-yocto rev: d6bee411d6911d644fb2c58bc220784729e334e2) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-07-18poky-tiny.conf: blacklist core-image-weston optionCristiana Voicu
[YOCTO #4861] (From meta-yocto rev: 2e0ff4cd041be8e5a2eda5af3f8a154b8d16cf21) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-07-18local.conf.sample.extended: add example for EXTRA_USERS_PARAMSChen Qi
Add detailed explanation of EXTRA_USERS_PARAMS which is used for image level user/group configuration. [YOCTO #4074] (From OE-Core rev: d9d62e05dba88c1f9f464367d49c1b290bfaea95) (From meta-yocto rev: 3a2a7bd52e1ece5703a53113aab6aa2fc0048160) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-07-13package_regex.inc: Changes in regexesEmilia Ciobanu
Updated/Modified regexes for the following packages: * bjam-native * chkconfig-alternatives-native * chrpath * cups * kern-tools-native * linux-libc-headers-yocto * minicom * prelink (From meta-yocto rev: e4d3fa69cf7469ea10d51595d8f3be88b755afdc) Signed-off-by: Emilia Ciobanu <emilia.maria.silvia.ciobanu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-07-05distro/conf: Drop libc-libm-bigKhem Raj
Its gone with eglibc 2.18 (From meta-yocto rev: 52d92c0f930362cc688474731cf9f60e898d7f05) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-07-05Upstream_tracking: mark package as not upgradable due to PRS issuesSaul Wold
(From meta-yocto rev: 9872bdf060c4fa50a4e2f4001515ec87e90010a2) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-07-05busybox.bbappend: upgrade to 1.21.1Chen Qi
(From meta-yocto rev: 09d62d51a08d27e957016340cda9b52b32929b01) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-07-05poky.conf: move libdir QA check to WARN_QAPaul Eggleton
The libdir check was broken, and having been fixed it is throwing up a number of issues, so it seems that we're not yet ready to have this set to error. Switch it back to a warning instead. (From meta-yocto rev: 01b25aaee5836ca3bb6f5c987ae0e6bea72feeac) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-07-02local.conf.sample.extended: Add example line for enabling security flags1.5_M2.rc1Saul Wold
(From meta-yocto rev: 600d095834217acd007b709104fb9cd8e18f20e7) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-06-28poky.conf: fix WARN_QA and ERROR_QA settingsPaul Eggleton
In OE-Core master revision 8f5675e6d3eb the bug that tests we did not mention in ERROR_QA were being shown as warnings even if they weren't in WARN_QA was fixed; however a number of warnings we want to be enabled weren't in Poky's WARN_QA and thus were not shown after that change; additionally some of these were set in the default value of ERROR_QA in insane.bbclass (i.e. OE-Core's default) but would have previously shown up as warnings in Poky because they weren't in ERROR_QA there. To fix this, put the appropriate values back into WARN_QA / ERROR_QA with a lean towards ERROR_QA - we want to be strict so that we keep OE-Core clean of QA issues during recipe maintenance. Fixes [YOCTO #4752]. (From meta-yocto rev: 01886121ef4740e35f24ac9a6d851cefd6d750fd) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-06-28poky.conf: remove la2 check which no longer exists from ERROR_QAPaul Eggleton
This check was actually removed a very long time ago in 6656381714c5956f71ca634f5a5f4aa4661bbf7e, before we even changed the QA checks to use names instead of numbers - the name was probably added ERROR_QA mistakenly because it hadn't also been removed from the comment listing the QA checks or the function that determined which ones were errors. (From meta-yocto rev: 6eefa451dc00a39ca08d1027e2a3576014ae59e6) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-06-21psplash: Drop PRINC from bbappendRichard Purdie
Drop the PRINC from the bbapend since we no longer need to do this. A corresponding PR bump will merge into OE-Core. (From meta-yocto rev: bfbd6749e2264c9e45e070efd8267297dd8fc66a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-06-17local.conf.sample: use ?= to assign BB_ENV_EXTRAWHITE variablesJesse Zhang
Use ?= so that the BB_ENV_EXTRAWHITE variables can be overridden from the environment. [YOCTO #4367] Signed-off-by: Jesse Zhang <sen.zhang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-06-13maintainers: Added missing recipes with maintainersSaul Wold
Added gstreamer1.0-plugins-good 1.0.7 1.1.1 No Maintainer info gstreamer1.0-libav 1.0.7 1.1.1 No Maintainer info chkconfig-alternatives-native 1.3.59+AUTOINC+cd437ecbd8 6 No Maintainer info gstreamer1.0-plugins-bad 1.0.7 1.1.1 No Maintainer info gsettings-desktop-schemas 3.7.3 3.9.2 No Maintainer info harfbuzz 0.9.17 0.9.18 No Maintainer info gtk-update-icon-cache-native 3.4.4 3.9.2 No Maintainer info gstreamer1.0 1.0.7 1.1.1 No Maintainer info gstreamer1.0-plugins-base 1.0.7 1.1.1 No Maintainer info gstreamer1.0-plugins-ugly 1.0.7 1.1.1 No Maintainer info xf86-video-omap 0.4.2+gitrAUTOINC+ae0394e 0.4.3+gitrAUTOINC+1482807 No Maintainer info gtk+3 3.4.4 3.9.2 No Maintainer info clutter-gst-1.0 1.6.0 2.0.4 No Maintainer info dbus-ptest 1.6.8 1.7.2 No Maintainer info mx-1.0 1.4.7+gitAUTOINC+9b1db6b 1.99.4+gitAUTOINC+6a5a7ff No Maintainer info clutter-gtk-1.0 1.4.2 1.4.4 No Maintainer info weston 1.1.0 1.1.1 No Maintainer info (From meta-yocto rev: d3e193d114f9f0b67da055ae4f7da80c0756d5fb) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-06-13upstream_tracking: Update Manual recipesSaul Wold
Updated: Cups libpng12 minicom (From meta-yocto rev: cf3a3f5fd9e81c6aa441b9f46f9fd479c825d665) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-31poky-lsb: make NFS kernel server support specific to linux-yoctoBruce Ashfield
In the current releases, not all linux-yocto derived kernels have NFS support, or NFS support fragments availble. To ensure that derived kernels like linux-yocto-cutom continue to work against poky-lsb, we can make the KERNEL_FEATURE append more specific to the linux-yocto recipe. (From meta-yocto rev: 99a25c55494fa4a317820841ab22794922c7fdfc) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-31poky.conf: add qemumips64 preferred versionBruce Ashfield
(From meta-yocto rev: 24c155142190f85876850f8c78daf7f6d681e401) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-30upstream_tracking.inc: added no upgrade reason for python-pygobjectBogdan Marinescu
(From meta-yocto rev: dd0644108785d161fe5a03693c6bd75f81d87771) Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-21image_types.bbclass: remove the old imagesRobert Yang
Remove the old image before the new one generated to save disk space when RM_OLD_IMAGE is set to 1, this is an easy way to keep the DEPLOY_DIR_IMAGE clean. [YOCTO #4391] (From meta-yocto rev: 4aa8d872c44c5e9e40a52718ee78173710b7cb56) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-14poky.conf: Adjust DISTRO vars post 1.4 releaseKhem Raj
Use next to denote this will become next stable (From meta-yocto rev: 3298b0ce4dc43aaa9589d860dee1273fb5b43e00) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-10maintainers.inc: update alsa-utils-alsaconf pkg maintainerCristian Iorga
alsa-utils-alsaconf package maintainer is Cristian Iorga. (From meta-yocto rev: f3569d17eb19c0c50a19c4e199545151c5796703) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-10maintainers.inc: update neard pkg maintainerCristian Iorga
neard package maintainer is Cristian Iorga. (From meta-yocto rev: bce4e7287cbfdac6524f9be3d9875ab7a4a390c7) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-10poky.conf: update SANITY_TESTED_DISTROSPaul Eggleton
In line with our policy of supporting the current and previous releases of host distributions (and additionally the latest LTS release of Ubuntu): * Add Ubuntu 13.04 (released on 25th April) * Remove Fedora 16 * Remove 5.x versions of CentOS * Remove OpenSUSE 11.4 and 12.1 * Remove pre-1.3 versions of Poky (From meta-yocto rev: f125813acb691e979f829e0a9318e5e2500809f1) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-08poky-lsb: Ensure kernel nfsd module is enabledSaul Wold
LSB Test require NFS be enabled soe ensure that the kernel feature is on. (From meta-yocto rev: af82f0ed0ccb5ce40b39f27fe5f9c1a981238297) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-07maintainers.inc: update sbc pkg maintainerCristian Iorga
sbc package maintainer is Cristian Iorga. (From meta-yocto rev: a36a76f8f71169f5765847bbf9af765f6ed0dd4e) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-05-07upstream_tracking.inc: minicom check updateCristian Iorga
(From meta-yocto rev: c15fe8337390ff291c99e474c1a87c2282871fd1) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-29distro_alias: update alias information.Saul Wold
(From meta-yocto rev: 3f533966528a5aa4afc343e12a47fae46e783008) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-15poky.conf: add Poky 1.4 and CentOS 6.4 to SANITY_TESTED_DISTROSPaul Eggleton
* CentOS 6.4 is the latest stable release; users of previous versions get automatically upgraded as part of normal distro updates. * Add Poky 1.4 for the build appliance (From meta-yocto rev: ec56279c5158fa0902d7bdc8839bb490cba98a48) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-13classes/poky-sanity: fix handling of bblayers.conf updatingPaul Eggleton
* Update for new structure in sanity.bbclass - use a separate function to update bblayers.conf and add it to the list to be executed * Additionally, don't add meta-yocto-bsp if it's already in BBLAYERS (this can occur when switching between DISTRO = "" or other distros which use a LAYER_CONF_VERSION = "5" and DISTRO = "poky" which has LAYER_CONF_VERSION = "6") (From meta-yocto rev: 94b98b4868bfa6f9cb7d9a9f1d62c63665214c32) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-11poky.conf: update SANITY_TESTED_DISTROSTrevor Woerner
Include release 12.3 of openSUSE as sanity tested. For each of the provided qemu targets I have been able to "bitbake world" and "runqemu". (From meta-yocto rev: 9ce4d3c891c16999f646eed878927d372114e259) Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-10meta-yocto*/conf/layer.conf: tweak BBFILES commentsPaul Eggleton
"packages" was the old name (pre-2010) under which the recipe files were stored. (From meta-yocto rev: b8c2e0207147105093bf6aa9beb340d4422cfb42) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-05poky-tiny: Prefer linux-yocto-tiny_3.8Darren Hart
Update the distro config to prefer the 3.8 version of the linux-yocto-tiny recipe. Build and boot tested on qemux86. (From meta-yocto rev: ecf30e58087618ffe38994681f6369d3ce43fac5) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-05package_regex.inc: add new regexesEmilia Ciobanu
Added regexes for packages: * fotowall * gcc* * libacpi * libarchive * libgcc * libmpc * lrzsz * mesa-demos * powertop * python-argparse (From meta-yocto rev: eecf7d5626b8d523c3668270fb6d5ec40f1276f6) Signed-off-by: Emilia Ciobanu <emilia.maria.silvia.ciobanu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-05local.conf.sample: Add info about -ptest package groupMaxin B. John
Add information about ptest package testing in local.conf.sample file. (From meta-yocto rev: 9d6fa436f057b20662efa8af73762ce6df35ba97) Signed-off-by: Maxin B. John <maxin.john@enea.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-03poky.conf: Use weaker assignment for PREMIRROR1.4_M5.rc31.4_M5.finalKhem Raj
This is to facilitate distros using poky as reference so that they can use ?= and provide an option for their users to override it if desired (From meta-yocto rev: cb3308d125f755cbece03d1ee00d8e255941fe9c) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-03poky.conf: added distro codename variableCristian Iorga
Distro codename info will be included in /etc/lsb-release file. Partial fix for [YOCTO #4071]. (From meta-yocto rev: b73a543fb637269fe8597b831a683397a4f80c26) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-04-02meta-yocto/conf: Add conf-notes.txtRichard Purdie
Match the changes in master and add the needed text. (From meta-yocto rev: 059cd3dd8eb48b7dd1a9cd0eb4e60061b0408ff9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-03-27package_regex.inc: Added regex for elfutilsEmilia Ciobanu
(From meta-yocto rev: c68885791ab754f4eaaa105445b18fc2980c33f0) Signed-off-by: Emilia Ciobanu <emilia.maria.silvia.ciobanu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-03-27poky.conf: enable Wayland DISTRO_FEATURERoss Burton
Without the Wayland feature you don't get the Wayland EGL platform built into Mesa, so Poky can't be used to test Wayland or Weston properly out of the box. (From meta-yocto rev: 641f0c42c062a0fdc36f71cb03ee18b91f253c3e) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-03-27local.conf.sample.extended: remove obsolete DISTRO_FEATURES_INITMAN referenceRoss Burton
(From meta-yocto rev: 8b2d223b7ae0ac004ae4ad8c4f38a307fc433f60) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-03-26Added regex for gtk-update-icon-cache-nativeEmilia Ciobanu
(From meta-yocto rev: 952c206c51ea31cb69454b24db34eec477779f23) Signed-off-by: Emilia Ciobanu <emilia.maria.silvia.ciobanu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-03-23packagegroup-core-tools-debug: split out Eclipse packagesPaul Eggleton
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>
2013-03-23poky.conf: Include separatebuilddir.incRichard Purdie
Use the separate builddir code for poky. (From meta-yocto rev: 2e861624ebcadd1ebbd37fa5892d2f9f44215c13) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-03-22(distro-alias|maintainers|package-regex).inc: mesa-dri -> mesaLaurentiu Palcu
[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>
2013-03-22local.conf.sample.extended: update for disk monitorRobert Yang
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>
2013-03-22poky-floating-revisions.inc: remove the duplicated SRCREV_pn-exmap-consoleRobert Yang
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>
2013-03-22maintainers.inc: remove several duplicated linesRobert Yang
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>
2013-03-22package_regex.inc: added new regexesEmilia Ciobanu
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>
2013-03-19layer.conf: avoid unnecessary early expansion with :=Christopher Larson
bitbake handles immediate expansions of LAYERDIR for us automatically. (From meta-yocto rev: ee59f1ec94ba8474876603dad1ab32d131227f49) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-03-17upstream-tracking: added dbus no-update reasonCristian Iorga
D-Bus 1.7.x is the development branch. (From meta-yocto rev: f1de751fa260d4d14794ba6d92dcd8431dac851a) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>