summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* recipetool: create: fix conflict between SRCREV and tagChang Rebecca Swee Fun2017-12-181-4/+4
| | | | | | | | | | | | | | | | | | | | | | If you specify 'tag=' for a git URL and passed to recipetool create, you will get into Bitbake expansion error shown below: ----- snip ----- $ devtool add --version 2.4.2 mbedtls "git://github.com/ARMmbed/mbedtls;tag=mbedtls-2.4.2" ... bb.data_smart.ExpansionError: Failure expanding variable SRCPV, expression was ${@bb.fetch2.get_srcrev(d)} which triggered exception FetchError: Fetcher failure: Conflicting revisions (abeccb9dbd7e19ae91ac50e1edd3803111c5f9b6 from SRCREV and mbedtls-2.4.2 from the url) found, please specify one valid value ----- snip ----- Assuming the tag is valid, we should get the tag commit hash and drop the usage of 'tag=' from SRC_URI. By using a commit hash corresponding to the tag will prevent bitbake from accessing remote repository in order to expand SRCPV. (From OE-Core rev: 53f8effa3eb07dc7035ff9933e7918318f242579) Signed-off-by: Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mesa: Upgrade to 17.2.6 stable releaseOtavio Salvador2017-12-182-2/+2
| | | | | | | | | | | | | | This upgrades the recipe to 17.2.6 bugfix release. The changes can be seen at: https://www.mesa3d.org/relnotes/17.2.6.html (From OE-Core rev: 7e924e1607d8aad0f8d48f0be01931c468df2019) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxslt: remove inappropriate patchRoss Burton2017-12-182-28/+1
| | | | | | | | | | This was patching -lxslt directly into the pkgconfig file, but XSLT_LIBS already contains this so the patch is redundant. (From OE-Core rev: 57b811b61dfbea551e6a4bdd98ec697729f1411b) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxslt: use HTTP instead of FTP in SRC_URIRoss Burton2017-12-181-1/+1
| | | | | | | | | | | FTP isn't as reliable as HTTP. [ YOCTO #12398 ] (From OE-Core rev: 52263f5f6caeaf215ab96d58218fb5f9a2ed4264) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* icu: fix libicudata corruption on big endian systemYi Zhao2017-12-181-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ICU library libicudata is created with a wrong endianness if the host and target have different endianness. (e.g. build ICU for qemuppc on x86-64 host) See upstream bug report: http://bugs.icu-project.org/trac/ticket/11758 The discussion in oe-core mailing list: https://www.mail-archive.com/openembedded-core@lists.openembedded.org/msg65155.html The root cause is the native pkgdata can not generate correct icu data for different endianness. By default, this data is built into the shared library libicudata that would cause it corrupt. But ICU also provides additional options for loading the data. With option --with-data-packaging=archive, ICU outputs a single icudt.dat file which can be loaded by the library. See document: http://userguide.icu-project.org/icudata So for big endian system, we can use the separated data file which re-generates by icupkg and set the correct ICU_DATA environment variable to make sure the library can load the data without problems. (From OE-Core rev: 77d1b9cda69d09cd7d3c8174ef14b4ee10e5efb6) Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* autoconf: Override config.guess/.sub in source treeNathan Rossi2017-12-181-0/+4
| | | | | | | | | | | | | | | | | autoconf has not been released in a number of years. However many changes have been made to the gnu-config config.guess/.sub since 2.69, including new architectures, OS variants, etc. In order to enable these targets without creating patches for the source itself populate the gnu-config files from the sysroot as is done with autotools recipes. Whilst it is not possible for the autoconf recipe to bootstrap its configure task (using the autotools_do_configure), the files can be manually copied into the target location. (From OE-Core rev: 302bab86d65831d7b03325e7002a992eb266318e) Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ovmf: Fix build failure for PARALLEL_MAKE with no spaceJason Wessel2017-12-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | The ovmf package fails to build if you use a PARALLEL_MAKE flag without a space in it. If you put the following in local.conf for example: PARALLEL_MAKE = "-j4" The build will fail with as follows: | build.exe: error: Option -n only allows one instance in command line! | WARNING: /opt/build/ovmf/git-r0/temp/run.do_compile.26080:1 exit 2 from '/opt/build/ovmf/git-r0/git/OvmfPkg/build.sh $PARALLEL_JOBS -a $OVMF_ARCH -b RELEASE -t ${FIXED_GCCVER}' | ERROR: Function failed: do_compile (log file is located at /opt/build/ovmf/git-r0/temp/log.do_compile.26080) The failure is because the build.sh expects a space. The simple work around is to fix the recipe to add some white space. The build.sh only cares that it gets at least one space between the arguments, the extra space if someone uses "-j 4" does not cause problems. (From OE-Core rev: cf7f4705e65a877cb4b3ac8872369c1b2e81a7be) Signed-off-by: Jason Wessel <jason.wessel@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glib-2.0: fix for non-utf8 encoded filesJackie Huang2017-12-182-0/+105
| | | | | | | | | | | | | Some source files aren't valid utf-8 containing for example iso8859-1 accented characters in author's names. Replace invalid data with a replacement '?' character and print a warning to keep things working. (From OE-Core rev: 61af0b446f104c99589cd4473040ca700dba3ff3) Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* prelink_git.bb: Update recipe to newest commitNathan Rossi2017-12-181-1/+1
| | | | | | | | | | | | | | | | | | Update prelink to the newest commit on the cross_prelink ref. This includes the following changes: 05aeafd053 Disable automatic generation of prelink.pdf aa2985eefa src/rtld: Add MicroBlaze support based on glibc-2.24 62f80843f8 README: update information on reloc8/reloc9 failures The primary purpose of this update is to enable the added MicroBlaze rtld support so as to enable gobject-introspection for MicroBlaze. (From OE-Core rev: 8cab8f79b73e72256a2d7940f4973ebfd36e232b) Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* coreutils: add PACKAGECONFIG for single-binaryChen Qi2017-12-181-0/+1
| | | | | | | | | | | | | | | | | | | Add PACKAGECONFIG for single-binray. Disable it by default. When enabled, there would only be one binary file /usr/bin/coreutils, other files like 'ls' are text files containing contents like: #!/usr/bin/coreutils --coreutils-prog-shebang=ls And the size of the rpm package reduces from 849K to 519K. Default to disable this option to keep the traditional behaviour. (From OE-Core rev: 94ce5d25cad7d81b979218a40cdf15be26a7aae5) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* coreutils: upgrade to 8.28Chen Qi2017-12-182-4/+45
| | | | | | | | | | | | | | Upgrade coreutils to 8.28. Backport a patch to fix the following build error on centos7. warning: unreferenced node `Realpath usage examples' (From OE-Core rev: d4fad8ec23f792b0d20b5d20b51134e643672dce) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* targetcontrol.py: use oe.types.boolean for QEMU_USE_KVMRobert Yang2017-12-182-2/+4
| | | | | | | | | | | | So that both QEMU_USE_KVM = "True" and "1" will work. [YOCTO #12343] (From OE-Core rev: f28890ae2eb8a9cb2da39588e696a4b0c501bdf0) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libunistring: upgrade to 0.9.8Maxin B. John2017-12-182-23/+39
| | | | | | | | | | | | | | Refreshed the following patch: iconv-m4-remove-the-test-to-convert-euc-jp.patch No change in license as update in License Checksum is due to change in Copyright years. (From OE-Core rev: 79f36e7d329a8aa2ed1b1d69878203ced96bc6ca) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* orc: upgrade to 0.4.28Maxin B. John2017-12-181-2/+2
| | | | | | | | | | 0.4.27 -> 0.4.28 (From OE-Core rev: dd59fb9755a02d6566c43b55c4a5bc541847f76e) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mc: upgrade to 4.8.20Maxin B. John2017-12-182-69/+2
| | | | | | | | | | | Remove backported patch: 0002-Ticket-3697-tty_init-unify-curses-initialization.patch (From OE-Core rev: dc67acc061530b4b993a6f0ddd9bb9e34479eae9) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ffmpeg: update to 3.4Alexander Kanavin2017-12-182-49/+3
| | | | | | | | | | | | Schroedinger support has been dropped: https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9 Remove upstreamed patch. (From OE-Core rev: 7795925fa985e10f61b92ecc0bb7c45692076f1c) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* psmisc: update to 23.0Alexander Kanavin2017-12-186-87/+49
| | | | | | | | | | | | | Switch to gitlab, as that's where development now happens. Drop two upstreamed patches, add apatches to avoid newly introduced build errors, and a gettext fix suggested here: http://lists.openembedded.org/pipermail/openembedded-core/2017-November/144566.html (From OE-Core rev: dfda42b624b539125443f30ae3a587ae55691ba4) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* webkitgtk: update to 2.18.3Alexander Kanavin2017-12-1810-254/+209
| | | | | | | | | | | | | | | | | gcc7.patch, musl-fixes.patch, and ppc-musl-fix.patch all change code that is no longer present in upstream tree. However, a patch with different musl fixes has been added. The rest of the patches are rebased to the new tree. Libtasn is a new dependency. Disable Gstreamer GL support on x86 due to clashing headers problem. (From OE-Core rev: 3acae2dcd130122fe76504ec855af78db829d6ec) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gobject-introspection: update to 1.54.1Alexander Kanavin2017-12-181-3/+4
| | | | | | | (From OE-Core rev: a4ed9c687f882caa6abbd2005eca35849add0336) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gstreamer1.0-plugins-bad: remove redundant Wayland patchRoss Burton2017-12-182-39/+0
| | | | | | | | | | | The installation path and wayland-scanner location problems in Wayland were resolved in "wayland: Fix installation patch issue" (oe-core 14c0d99) which made the WAYLAND_PROTOCOLS_SYSROOT_DIR workaround redundant. (From OE-Core rev: e41c3cb0816a2f59d1c02d4b34285b29d67486ba) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xserver-xorg: remove redundant Wayland patchRoss Burton2017-12-182-39/+0
| | | | | | | | | | | The installation path and wayland-scanner location problems in Wayland were resolved in "wayland: Fix installation patch issue" (oe-core 14c0d99) which made the WAYLAND_PROTOCOLS_SYSROOT_DIR workaround redundant. (From OE-Core rev: 2dffd043c7f9bb71356a0d0b86b5b0a19fdf7343) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gtk+3: remove redundant Wayland patchRoss Burton2017-12-182-37/+0
| | | | | | | | | | | The installation path and wayland-scanner location problems in Wayland were resolved in "wayland: Fix installation patch issue" (oe-core 14c0d99) which made the WAYLAND_PROTOCOLS_SYSROOT_DIR workaround redundant. (From OE-Core rev: 5d44eeca7706f6b3d178744f330710105e079618) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* weston: remove patch that isn't applied anymoreRoss Burton2017-12-181-29/+0
| | | | | | | | | | This patch was removed from SRC_URI in the Weston 3.0 upgrade (148920f) but the patch wasn't deleted. (From OE-Core rev: f03e43153479bf9c58d7feec9a4c3fa1b7dca57d) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: toaster: add 'nobuild' option to ToasterDavid Reyna2017-12-185-28/+58
| | | | | | | | | | | | | | Add a 'nobuild' option for starting Toaster without the project and hosted builds support. This allows a Toaster host to provide local build statistics without opening the host to external users building projects. [YOCTO #12315] (Bitbake rev: 2d14d6004b6add5ce07295fff1144ade2e54e1c9) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: toaster: landing page show cmdline captureDavid Reyna2017-12-181-1/+7
| | | | | | | | | | | | | The Toaster initial landing page needs to show that it still has the command line build capture support in addition to the new project support. [YOCTO #12316] (Bitbake rev: d0358432ca9dd3deef623f6d0585d99d23b3aede) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: toaster: enable custom env support for shell callsDavid Reyna2017-12-181-11/+15
| | | | | | | | | | | | Allow for custom environment additions for git cloning, for example for anspass support. [YOCTO #12193] (Bitbake rev: b4717888c55681a49803c4842140af644a5cdc71) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: toaster: some recipe events do not include packagesDavid Reyna2017-12-181-1/+5
| | | | | | | | | | | | Allow for "SinglePackageInfo" events that do not include package data, for example OPKGN equal 'lib32-*' or 'lib64-*'. [YOCTO #12204] (Bitbake rev: 567f072ff260614cde3da220a40a95d5a8b9ab92) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: toaster: update Toaster for Django 1.11David Reyna2017-12-186-6/+6
| | | | | | | | | | | Toaster needs to accomodate API changes in Django 1.11. [YOCTO #12192] (Bitbake rev: 1b34e3c0075b4bb8a4800fef3e12c3f39743973c) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: toaster: unset BBPATH before starting bbserver for backwards ↵David Reyna2017-12-181-6/+12
| | | | | | | | | | | | | | | | | | | compatibility The latest build enviroment script is now setting BBPATH. This breaks building previous releases from a master-based Toaster, because with this newly inherited BBPATH value the 'bitbake.lock' file ends up in the Toaster build directory instead of the project's build directory. Toaster should always clear BBPATH so that the bbserver's environment is clean (enough). [YOCTO #12363] (Bitbake rev: 21dde782c049108dd9455ffbf431de214437e800) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-scons: upgrade to v3.0.1; use pypi.bbclassTim Orling2017-12-133-47/+3
| | | | | | | | | | | | | * Simplify recipe by using pypi.bbclass * Drop patch for __future__ print_function - fixed upstream: https://github.com/SConsProject/scons/pull/1/commits/4c199d06e76afb9379e76942d0f68caa57f42509 (From OE-Core rev: cf5c44ac611c2c2657e6fd3c1f723bcb20b812dd) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-iniparse: use pypi.bbclassTim Orling2017-12-131-6/+3
| | | | | | | | | | * Simplify recipe by using pypi.bbclass (From OE-Core rev: aa458b5fdb8d5d0ac93ced3b198bef2daa4e24b4) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-git: use pypi.bbclassTim Orling2017-12-132-10/+21
| | | | | | | | | | | * Simplify python3-git by using pypi.bbclass * Consolidate common content in .inc (From OE-Core rev: 5288e401c769a80f499d0775dd9bd1304e2298f4) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-gitdb: use pypi.bbclassTim Orling2017-12-132-10/+12
| | | | | | | | | | | * Simplify python3-gitdb using pypi.bbclass * Consolidate common content in .inc (From OE-Core rev: e7083207684b18dd55d6b4dc88fc1ffc90d16476) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-smmap: use pypi.bbclassTim Orling2017-12-132-10/+7
| | | | | | | | | | | * Simpify python3-smmap using pypi.bbclass * Consolidate common content in .inc (From OE-Core rev: f976a76116bb69ca3603de36b7327615e3e947c2) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-mako: use pypi.bbclassTim Orling2017-12-132-14/+10
| | | | | | | | | | | * Simpify python3-mako by using pypi.bbclass * Consolidate common content in .inc (From OE-Core rev: dac10db1853bae722f35e6aab24569f12df30b55) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-async: use pypi.bbclassTim Orling2017-12-132-9/+4
| | | | | | | | | | | * Simplify by using pypi.bbclass * Use PYTHON_PN for RDEPENDS in .inc to avoid duplication (From OE-Core rev: 57c67b740b25a72cc6fdde68368f49496eabb872) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-six: use pypi.bbclassTim Orling2017-12-132-7/+3
| | | | | | | | | | | * Simplify python3-six by using pypi.bbclass - Use PYTHON_PN in .inc to avoid duplication in RDEPENDS (From OE-Core rev: 38993c3fac841e8e6a01cca43d0d4cecda05439e) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-nose: use pypi.bbclassTim Orling2017-12-133-47/+20
| | | | | | | | | | | | * Simplify python- and python3-nose by using pypi.bbclass * Consolidate common content in python-nose.inc - Avoid duplication by using PYTHON_PN variable (From OE-Core rev: 351e741cea4538cfe30640bd6e451c0fbc1d0329) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-pip: use pypi.bbclassTim Orling2017-12-131-10/+3
| | | | | | | | | | * Simplify recipe by using pypi.bbclass (From OE-Core rev: 120627640e74dd00adabc52657ab71e523a2f261) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-setuptools: upgrade to 38.2.4; use pypi.bbclass; improvementsTim Orling2017-12-135-82/+51
| | | | | | | | | | | | | | | * Simplify python- and python3-setuptools with pypi.bbclass * inherit setuptools rather than distutils * Consolidate common settings in python-setuptools.inc - use PYTHON_PN variable to eliminate duplication - python3-setuptools had missing RDEPENDS (e.g., plistlib) - installer no longer creates setuptools.pth, drop fixes (From OE-Core rev: 624a6f209248a0c8e0759d43f246c903a8db6a71) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-*-manifest/generators: add runpy; python3-plistlibTim Orling2017-12-134-0/+40
| | | | | | | | | | | | * runpy allows running modules/scripts with 'python -m foo' * python3-setuptools RDEPENDS on plistlib (present in python2) * pip3 RDEPENDS on _markupbase (add to python3-core) (From OE-Core rev: d95f1005c35bd9c7e22c40c7c17d264fe9435c6b) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-*-manifest/generators: fix long line lengthsTim Orling2017-12-134-167/+1540
| | | | | | | | | | | | | | The generators create python-*-manifest.inc files with lines over 2500 characters long which breaks sending patches via git send-email (because of smtp limitation). This patchset formats all the long lines into multiple lines. (From OE-Core rev: 3a1900a5691466a04b24907067f43117b318ca7e) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pypi.bbclass: bring in from meta-pythonTim Orling2017-12-132-0/+29
| | | | | | | | | | | | | | | The pypi.bbclass has usefullness in many meta layers, not just meta-python. Add it to oe-core for the benefit of everyone. Documentation strings for PYPI_PACKAGE, PYPI_PACKAGE_EXT and PYPI_SRC_URI added to meta/conf/documentation.conf (From OE-Core rev: c350812523017f113f63e0b863fd526b4d6331b9) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* populate_sdk_ext: Use prebuilt uninative tarballRichard Purdie2017-12-111-6/+7
| | | | | | | | | | | | | | | | | | | For uninative to work, it relies on it being updated to new versions as newer glibcs are built. This means the uninative generated by the current build may not be as recent as the uninative that is being downloaded by uninative.bbclass. If this occurs, we can get symbol mismatch errors. Ultimately, the sstate and the uninative versions need to match so we should use the same tarball as uninative.bbclass is using, not the one we built. [YOCTO #12405] (From OE-Core rev: a24c10b7bdab8aa960fdd3a58d2009f24344e579) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: providers: Fix determinism issueRichard Purdie2017-12-101-3/+3
| | | | | | | | | | | | | | | | | | We saw builds where runtime providers were sometimes changing order and the build result was therefore non-deterministic. For example it could show: DEBUG: providers for lib32-initd-functions are: ['lib32-lsbinitscripts', 'lib32-initscripts'] or DEBUG: providers for lib32-initd-functions are: ['lib32-initscripts', 'lib32-lsbinitscripts'] which could cause a test to pass or fail. This change ensures we don't rely on the random order of dictonaries in memory and act deterministically. (Bitbake rev: ebce92bf8d71f8a6e8af1c6cf6ba335faf9d67c8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* multilib_global: Handle PREFERRED_RPROVIDERRichard Purdie2017-12-101-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | Running: $ oe-selftest -r sstatetests.SStateTests.test_sstate_sametune_samesigs after commit cdcebd81c872cb7386c658998e27cf24e1d0447c results in: NOTE: Resolving any missing task queue dependencies NOTE: Multiple providers are available for runtime lib32-initd-functions (lib32-initscripts, lib32-lsbinitscripts) Consider defining a PREFERRED_RPROVIDER entry to match lib32-initd-functions and will occasionally pick a different value on the second stamps run causing a test failure. Update the multilib code to handle PREFERRED_RPROVIDER too. There is a bigger worry here which is why the builds aren't deterministic. This is caused by a bug in bitbake's providers.py and a separate fix will be sent for that which would cause this test to always pass or always fail. (From OE-Core rev: ced4ac760926ce43a937dad2be3b873b1beec6aa) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel-yocto: ensure that only a single defconfig is processedBruce Ashfield2017-12-101-1/+12
| | | | | | | | | | | | | | | | | As a follow up to the changes to ensure that KBUILD_DEFCONFIG will always get its defconfig into the processing, we also should ensure that we don't get both a KBUILD_DEFCONFIG and a SRC_URI defconfig in the configuration queue. If both are in the configuration queue, we end up with competing values and a potentially long running check of 5000+ options x 2 against the final .config. By removing the defconfig found from the SRC_URI when one is found via KBUILD_DEFCONFIG, we ensure that only one will be processed. (From OE-Core rev: 7e98c295c1bb511ece51b5f8c97f26c173ddaf76) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel-yocto: Stop the build if defconfig is missingSaul Wold2017-12-101-1/+1
| | | | | | | | | | | | | | | The bberror does not stop the build correctly, this should be a bbfatal_log to ensure the failure correctly stops the build and logs the failure. Part of [YOCTO #12162] (From OE-Core rev: 44ff06635e7f575e67b7ebba5d6900b8ddbc4a06) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel-yocto: ensure sccs variable is set when using KBUILD_DEFCONFIGSaul Wold2017-12-101-1/+1
| | | | | | | | | | | | | | | When using KBUILD_DEFCONFIG, $sccs should be set to the $WORKDIR/defconfig regardless if it compares or is copied. Otherwise $sccs is not set and the defconfig is not found correctly. Part of [YOCTO #12162] (From OE-Core rev: b63cc051f1eb58c768f49db2c04843336e62d3df) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/4.9: update to v4.9.65Bruce Ashfield2017-12-103-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Integrating the korg stable updates that include the following changes: 133e6ccf46f1 Linux 4.9.65 ceaec6e8cd98 mm/pagewalk.c: report holes in hugetlb ranges fae5947129eb coda: fix 'kernel memory exposure attempt' in fsync 9980b8278338 mm/page_alloc.c: broken deferred calculation 55b06b0fc09b ipmi: fix unsigned long underflow 8af777385f7a ocfs2: should wait dio before inode lock in ocfs2_setattr() a8356445ba0f ocfs2: fix cluster hang after a node dies 2bd38ece78a4 dmaengine: dmatest: warn user when dma test times out e6d4a078f0e7 serial: 8250_fintek: Fix finding base_port with activated SuperIO 70eb4608bb0e serial: omap: Fix EFR write on RTS deassertion 2cfbb32f6ccb ima: do not update security.ima if appraisal status is not INTEGRITY_PASS aa15fe4d6a7f crypto: dh - Fix double free of ctx->p 4a7e02312420 crypto: dh - fix memleak in setkey 67b718fcf897 net/sctp: Always set scope_id in sctp_inet6_skb_msgname f0ae7a1b45fa fealnx: Fix building error on MIPS 362d2ce0f851 sctp: do not peel off an assoc from one netns to another one 99aa74ce9c2d af_netlink: ensure that NLMSG_DONE never fails in dumps 080ecd2bb62b vlan: fix a use-after-free in vlan_device_event() 58baa36d3728 net: usb: asix: fill null-ptr-deref in asix_suspend 4ad82095bfe2 qmi_wwan: Add missing skb_reset_mac_header-call 02a0c0639ae0 net: qmi_wwan: fix divide by 0 on bad descriptors f376621861e3 net: cdc_ether: fix divide by 0 on bad descriptors 6f239c0655cf bonding: discard lowest hash bit for 802.3ad layer3+4 afd9fa661927 netfilter/ipvs: clear ipvs_property flag when SKB net namespace changed 3920a5bdd951 tcp: do not mangle skb->cb[] in tcp_make_synack() 58b21b028721 net: vrf: correct FRA_L3MDEV encode type b0e50c4e895a tcp_nv: fix division by zero in tcpnv_acked() 563c24f65f4f Linux 4.9.64 6fbd42df9217 staging: greybus: spilib: fix use-after-free after deregistration d8b5d88d2195 brcmfmac: don't preset all channels as disabled 54a5155afa84 x86/MCE/AMD: Always give panic severity for UC errors in kernel context f6643fc829e0 USB: serial: garmin_gps: fix memory leak on probe errors 579cf722f8c1 USB: serial: garmin_gps: fix I/O after failed probe and remove 1f9688d551e3 USB: serial: qcserial: add pid/vid for Sierra Wireless EM7355 fw update fd6a742d8bf7 usb: gadget: f_fs: Fix use-after-free in ffs_free_inst 599973738e28 USB: Add delay-init quirk for Corsair K70 LUX keyboards 87ff414178cb USB: usbfs: compute urb->actual_length for isochronous 11fdb41a1faa crypto: dh - Don't permit 'key' or 'g' size longer than 'p' 2d3a0d950156 crypto: dh - Don't permit 'p' to be 0 e38fe6397f73 Revert "dt-bindings: Add LEGO MINDSTORMS EV3 compatible specification" a9a3cb25d9c1 Revert "dt-bindings: Add vendor prefix for LEGO" f95d6058d5cc uapi: fix linux/rds.h userspace compilation errors 3323d07612b2 uapi: fix linux/rds.h userspace compilation error 3f0cc54226ca Revert "uapi: fix linux/rds.h userspace compilation errors" d8ce2b0874a7 Revert "crypto: xts - Add ECB dependency" d7df7af5b9b6 MIPS: Netlogic: Exclude netlogic,xlp-pic code from XLR builds ade4b22d47bb MIPS: traps: Ensure L1 & L2 ECC checking match for CM3 systems 73b6038950cd MIPS: init: Ensure reserved memory regions are not added to bootmem 6539d1ca4fc9 MIPS: init: Ensure bootmem does not corrupt reserved memory 3b0f619cd4b9 MIPS: End asm function prologue macros with .insn b53bab72b9d8 staging: greybus: add host device function pointer checks 1f5a7caba79e staging: wilc1000: Fix endian sparse warning ca24e702ccfa staging: rtl8712: fixed little endian problem ef417b59c222 ixgbe: do not disable FEC from the driver bc656fda2442 ixgbe: add mask for 64 RSS queues 7316fb33f0a5 ixgbe: Reduce I2C retry count on X550 devices e15dad31b10b ixgbe: Fix reporting of 100Mb capability 3bed7d680acf ixgbe: handle close/suspend race with netif_device_detach/present 6a4ef8b6ceeb ixgbe: fix AER error handling 6c7999904f32 ixgbe: Configure advertised speeds correctly for KR/KX backplane 5d820f84e169 arm64: dts: NS2: reserve memory for Nitro firmware f6e94c2c16fe ALSA: hda/realtek - Add new codec ID ALC299 0e2245ab6901 gpu: drm: mgag200: mgag200_main:- Handle error from pci_iomap 473286bdd58d backlight: adp5520: Fix error handling in adp5520_bl_probe() 6aaf9ba9bde7 backlight: lcd: Fix race condition during register acc365c02859 drm/omap: panel-sony-acx565akm.c: Add MODULE_ALIAS 5d1d893d31ce ALSA: vx: Fix possible transfer overflow 0f4ea85748bf ALSA: vx: Don't try to update capture stream before running 9dc7637700e5 power: supply: axp288_fuel_gauge: Read 12 bit values 2 registers at a time 0010542d3f79 power: supply: axp288_fuel_gauge: Read 15 bit values 2 registers at a time d9a5790b2145 rtc: rx8010: change lock mechanism cb341679a5b4 scsi: lpfc: Clear the VendorVersion in the PLOGI/PLOGI ACC payload 235d82cb46d2 scsi: lpfc: Correct issue leading to oops during link reset f89885d40a5f scsi: lpfc: Correct host name in symbolic_name field b4e42f5d0116 scsi: lpfc: FCoE VPort enable-disable does not bring up the VPort 01347f537f6c scsi: lpfc: Add missing memory barrier d9b035e70426 x86/irq, trace: Add __irq_entry annotation to x86's platform IRQ handlers f7d1861153d4 staging: rtl8188eu: fix incorrect ERROR tags from logs fe975496da30 tcp: provide timestamps for partial writes cfb09f0571a5 scsi: ufs: add capability to keep auto bkops always enabled ea56533994fe scsi: ufs-qcom: Fix module autoload 0ef1e72e73fe igb: Fix hw_dbg logging in igb_update_flash_i210 64da1e5ea30d igb: close/suspend race in netif_device_detach 2aed3814969b igb: reset the PHY before reading the PHY ID 38fa955da251 drm/sti: sti_vtg: Handle return NULL error from devm_ioremap_nocache 02c7292bb7ee ata: SATA_MV should depend on HAS_DMA cece64a6107c ata: SATA_HIGHBANK should depend on HAS_DMA 1122c15f0a96 ata: ATA_BMDMA should depend on HAS_DMA 15a65b946c61 ARM: dts: omap5-uevm: Allow bootloader to configure USB Ethernet MAC c26fa1306c80 ARM: dts: Fix omap3 off mode pull defines e96a11f64b81 ARM: OMAP2+: Fix init for multiple quirks for the same SoC db458f6e6110 ARM: dts: Fix am335x and dm814x scm syscon to probe children f022fa1b61e5 ARM: dts: Fix compatible for ti81xx uarts for 8250 e17a5a8fc0bd fm10k: request reset when mbx->state changes 6202042b7428 extcon: palmas: Check the parent instance to prevent the NULL c4a77534ce2b extcon: Remove potential problem when calling extcon_register_notifier() ee61d06653fd Bluetooth: btusb: fix QCA Rome suspend/resume a5bd3edda619 arm: crypto: reduce priority of bit-sliced AES cipher 49c1e5f03238 media: dib0700: fix invalid dvb_detach argument ca98a5c72170 media: imon: Fix null-ptr-deref in imon_probe ea88d5c5f411 Linux 4.9.63 e81b96cab11f misc: panel: properly restore atomic counter on error path b2dbcb7c969d qla2xxx: Fix incorrect tcm_qla2xxx_free_cmd use during TMR ABORT (v2) ff4927181666 target/iscsi: Fix iSCSI task reassignment handling e7c9ca5a3f46 brcmfmac: remove setting IBSS mode when stopping AP 31c8c4942820 security/keys: add CONFIG_KEYS_COMPAT to Kconfig a23349bb9f12 netfilter: nat: Revert "netfilter: nat: convert nat bysrc hash to rhashtable" 25db12f1c584 netfilter: nat: avoid use of nf_conn_nat extension fd1ca9fea458 Revert "ARM: dts: imx53-qsb-common: fix FEC pinmux config" 1862eca99e27 ALSA: seq: Cancel pending autoload work at unbinding device 9d65d0ea55dc Input: ims-psu - check if CDC union descriptor is sane 8cf061d919e2 usb: usbtest: fix NULL pointer dereference ddd95bc900ae mac80211: don't compare TKIP TX MIC key in reinstall prevention 38762a516e0c mac80211: use constant time comparison with keys 2586fa0007dc mac80211: accept key reinstall without changing anything ac4cfc730e4b ppp: fix race in ppp device destruction 7b9870f07854 net_sched: avoid matching qdisc with zero handle b89fc6a5caff sctp: reset owner sk for data chunks on out queues when migrating a sock 210a6418730b tun: allow positive return values on dev_get_valid_name() call d6b1aebcd7a5 ip6_gre: update dst pmtu if dev mtu has been updated by toobig in __gre6_xmit 6d428bc40a42 ip6_gre: only increase err_count for some certain type icmpv6 in ip6gre_err df0eebcea8e5 ipip: only increase err_count for some certain type icmp in ipip_err fbf92277e6d2 tap: double-free in error path in tap_open() 62de3fe46c6b net/unix: don't show information about sockets from other namespaces 2af59c6557a5 tcp/dccp: fix other lockdep splats accessing ireq_opt 3107d4dc7a80 tcp/dccp: fix lockdep splat in inet_csk_route_req() ec5caf542066 sctp: full support for ipv6 ip_nonlocal_bind & IP_FREEBIND 28fa583fd8ce ipv6: flowlabel: do not leave opt->tot_len with garbage 3b0b4d2c47ec soreuseport: fix initialization race 57ffb0ecf367 packet: avoid panic in packet_getsockopt() 2ffd26133724 tcp/dccp: fix ireq->opt races bcb9ced1833c sctp: add the missing sock_owned_by_user check in sctp_icmp_redirect 3e2ab0ceef68 tun: call dev_get_valid_name() before register_netdevice() 9075216b8b93 l2tp: check ps->sock before running pppol2tp_session_ioctl() e12c42c55287 tcp: fix tcp_mtu_probe() vs highest_sack cb5880e677a1 net: call cgroup_sk_alloc() earlier in sk_clone_lock() 4cd69ad53001 netlink: do not set cb_running if dump's start() errs d87890d9ff15 ipv6: addrconf: increment ifp refcount before ipv6_del_addr() 5b9d20195a25 tun/tap: sanitize TUNSETSNDBUF input 97ba8f88b448 gso: fix payload length when gso_size is zero 9b609ba2c2df Linux 4.9.62 e45d93b48c93 x86/oprofile/ppro: Do not use __this_cpu*() in preemptible context 9d5e5994c5f9 x86/smpboot: Make optimization of delay calibration work correctly 9313d039c4d0 can: c_can: don't indicate triple sampling support for D_CAN 5e01a9f94e59 can: ifi: Fix transmitter delay calculation f45c1b09261b can: sun4i: handle overrun in RX FIFO bad4c8f1bc25 drm/bridge: adv7511: Re-write the i2c address before EDID probing 6731d54c7868 drm/bridge: adv7511: Reuse __adv7511_power_on/off() when probing EDID efc6d340e410 drm/bridge: adv7511: Rework adv7511_power_on/off() so they can be reused internally 55e7e5213817 drm/vmwgfx: Fix Ubuntu 17.10 Wayland black screen issue 4f027e3c7b62 rbd: use GFP_NOIO for parent stat and data requests 9f2ac3d8cb31 Input: elan_i2c - add ELAN060C to the ACPI table 1331af440ad2 MIPS: AR7: Ensure that serial ports are properly set up 76aaa788e92a MIPS: AR7: Defer registration of GPIO b17e663e150c MIPS: BMIPS: Fix missing cbr address bbc62fb031a6 ASoC: sun4i-spdif: remove legacy dapm components fb705ebf996e tools: firmware: check for distro fallback udev cancel rule ebf95a6f0286 selftests: firmware: send expected errors to /dev/null b98220399dc4 MIPS: SMP: Fix deadlock & online race 3b9fd3333aaf MIPS: Fix race on setting and getting cpu_online_mask d99db83cafbf MIPS: SMP: Use a completion event to signal CPU up 71bcb37ff5fa MIPS: Fix CM region target definitions 16d5634e8827 MIPS: microMIPS: Fix incorrect mask in insn_table_MM 7de694782cbe drm/i915: Do not rely on wm preservation for ILK watermarks b35783871190 ALSA: seq: Avoid invalid lockdep class warning 4b52c3170bd8 ALSA: seq: Fix OSS sysex delivery in OSS emulation 1541afbfb4a2 ARM: 8720/1: ensure dump_instr() checks addr_limit 8ea52a683f81 KEYS: fix NULL pointer dereference during ASN.1 parsing [ver #2] 2822bbb53269 crypto: x86/sha256-mb - fix panic due to unaligned access ca6c028e2fe4 crypto: x86/sha1-mb - fix panic due to unaligned access 58ed8a47e450 crypto: ccm - preserve the IV buffer 46f15501c5b7 workqueue: Fix NULL pointer dereference 2715f6841a08 x86/uaccess, sched/preempt: Verify access_ok() context 07e415ac5ca1 platform/x86: hp-wmi: Do not shadow error values 0a18a94af43f platform/x86: hp-wmi: Fix error value for hp_wmi_tablet_state 419ec342d312 KEYS: trusted: fix writing past end of buffer in trusted_read() 64a234537a88 KEYS: trusted: sanitize all key material bddc61e7732b cdc_ncm: Set NTB format again after altsetting switch for Huawei devices 047b67372d7b platform/x86: hp-wmi: Fix detection for dock and tablet mode 0e1cfde447fe net: dsa: select NET_SWITCHDEV fa8f3a67b9a8 clk: mvebu: adjust AP806 CPU clock frequencies to production chip 326ef0fd4fb2 IB/rxe: Fix reference leaks in memory key invalidation code 93e1956dddf5 wcn36xx: Don't use the destroyed hal_mutex 72eff92d84f0 s390/qeth: issue STARTLAN as first IPA command c4d567ef164e s390/qeth: fix retrieval of vipa and proxy-arp addresses e793ad50d151 ARM: dts: STiH410-family: fix wrong parent clock frequency d369bba84410 IB/ipoib: Change list_del to list_del_init in the tx object 8b93cbd12547 sched/cputime, powerpc32: Fix stale scaled stime on context switch a3a76ea2c072 Input: mpr121 - set missing event capability 260e2e82c247 Input: mpr121 - handle multiple bits change of status register 0ddb64c14856 s390/topology: make "topology=off" parameter work 8b45f832b33b EDAC, amd64: Save and return err code from probe_one_instance() e41c105195ca IPsec: do not ignore crypto err in ah4 input ab71bee531fd apparmor: fix undefined reference to `aa_g_hash_policy' c944dc7aedfb rt2800usb: mark tx failure on timeout be5125d4fa9e brcmfmac: setup wiphy bands after registering it first c5493c6e4a6a netfilter: nft_meta: deal with PACKET_LOOPBACK in netdev family a7eba17c44f3 usb: hcd: initialize hcd->flags to 0 when rm hcd 397b6e5d7bbe libertas: fix improper return value 2ae9f47ce114 serial: sh-sci: Fix register offsets for the IRDA serial port a88a90128888 phy: increase size of MII_BUS_ID_SIZE and bus_id 04e13a5ec96d dt-bindings: Add vendor prefix for LEGO 852bf68b7a62 dt-bindings: Add LEGO MINDSTORMS EV3 compatible specification f89e669323ad iio: proximity: sx9500: claim direct mode during raw proximity reads 6d8897645b98 iio: magnetometer: mag3110: claim direct mode during raw writes 87e4965cec61 iio: pressure: ms5611: claim direct mode during oversampling changes 19d0541bd2c2 iio: trigger: free trigger resource correctly 6bcd1787b587 drm: mali-dp: fix Lx_CONTROL register fields clobber 9c9040a85966 crypto: vmx - disable preemption to enable vsx in aes_ctr.c dea9c75f3f62 arm64: dma-mapping: Only swizzle DMA ops for IOMMU_DOMAIN_DMA d2e589f305b0 ARM: omap2plus_defconfig: Fix probe errors on UARTs 5 and 6 870b502a0208 cxl: Force psl data-cache flush during device shutdown f88f299a94e0 powerpc/corenet: explicitly disable the SDHC controller on kmcoge4 a4193ceee266 pinctrl: baytrail: Fix debugfs offset output 3a8ab788bf01 iommu/arm-smmu-v3: Clear prior settings when updating STEs 6f51c8a58397 KVM: PPC: Book 3S: XICS: correct the real mode ICP rejecting counter 61fdf68034a9 drm: drm_minor_register(): Clean up debugfs on failure 872c075b6cb2 clk: samsung: exynos5433: Add IDs for PHYCLK_MIPIDPHY0_* clocks a276210915d5 PM / OPP: Error out on failing to add static OPPs for v1 bindings 7422c5813a9d EDAC, amd64: Add x86cpuid sanity check during init 2f945e749ee2 dt-bindings: clockgen: Add compatible string for LS1012A 62b9fa2c436f ARM: dts: imx53-qsb-common: fix FEC pinmux config a1644f9c78e4 xen/netback: set default upper limit of tx/rx queues to 8 6da1c989ccce sched/core: Add missing update_rq_clock() call in sched_move_task() 7ac8a10c8a50 PCI: mvebu: Handle changes to the bridge windows while enabled bf41c17c2266 video: fbdev: pmag-ba-fb: Remove bad `__init' annotation 95e5e7ed5a8a adv7604: Initialize drive strength to default when using DT (From OE-Core rev: 8fe7f4d227f2f4ae0e39d6661b848611d907c0b6) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>