summaryrefslogtreecommitdiffstats
path: root/meta
Commit message (Collapse)AuthorAgeFilesLines
...
* python3-pygobject:upgrade 3.34.0 -> 3.36.1zangrc2020-06-041-2/+2
| | | | | | | (From OE-Core rev: a0c706be1cee825744ed36ceb7464da743a6a80b) Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* openssh: Upgrade 8.2p1 -> 8.3p1Alex Kiernan2020-06-041-2/+1
| | | | | | | (From OE-Core rev: b8ec59302bd2fc1a78f4d828ba93b3ad64ab7f37) Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-selftest: add test for .patch file with long filename and without subjectMartin Jansa2020-06-041-0/+27
| | | | | | | (From OE-Core rev: 7c3e17f34c74e838990006aaf570df501aa2c167) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Revert "lib/oe/patch: fix handling of patches with no header"Martin Jansa2020-06-041-6/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * This reverts commit d9971f5dc8eb7de551fd6f5e058fd24770ef5d78. * With the missing Subject line fixed in GitApplyTree.prepareCommit() we should be able to revert, the fix which was trying to help it by parsing GitApplyTree.patch_line_prefix ("%% original patch:") also from Subject line, now GitApplyTree.patch_line_prefix should always end on separate line which is then skipped when copying the lines to resulting patch, see original commit message from Paul: lib/oe/patch: fix handling of patches with no header If a patch applied by a recipe has no header and we turn the recipe's source into a git tree (when PATCHTOOL = "git" or when using devtool extract / modify / upgrade), the commit message ends up consisting only of the original filename marker ("%% original patch: filename.patch"). When we come to do turn the commits back into a set of patches in extractPatches(), this first line ends up in the "Subject: " part of the file, but we were ignoring it because the line didn't start with the marker text. The end result was we weren't able to get the original patch name. Strip off any "Subject [PATCH x/y]" part before looking for the marker text to fix. This caused "devtool modify openssl" followed by "devtool update-recipe openssl" (without any changes in-between) to remove version-script.patch because that patch has no header and we weren't able to determine the original filename. (From OE-Core rev: d9e56db415d386447a299dd633b10f1eda0dd401) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lib/oe/patch: GitApplyTree: save 1 echo in commit-msg hookMartin Jansa2020-06-041-2/+1
| | | | | | | | | | | | | | | * also remove the extra blank lines which is often added to patches when refreshed with devtool (GitApplyTree.patch_line_prefix lines are ignored when refreshing .patch files, but newly added blank lines aren't - the leading blank line wasneeded for patches with just the subject line (to prevent the GitApplyTree.patch_line_prefix line ending appended to the commit summary), but we can add it in prepareCommit instead (From OE-Core rev: c50c0d6144ad290168167ccef948c7b4ffc9665a) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lib/oe/patch: prevent applying patches without any subjectMartin Jansa2020-06-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * this was discovered with $ devtool finish --force-patch-refresh where it was removing some patches and replacing them with patch in filename called "patch:" e.g. this .patch file: https://github.com/OSSystems/meta-browser/blob/311067d2d8a50cee5c836892606444f63f2bb3ab/dynamic-layers/rust-layer/recipes-browser/firefox/firefox/fixes/fix-camera-permission-dialg-doesnot-close.patch confuses devtool which results to create new .patch file called "patch:" $ devtool finish --force-patch-refresh firefox meta-browser NOTE: Starting bitbake server... WARNING: Host distribution "ubuntu-20.04" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution. Loading cache: 100% |###################################################################################################################################################################################################################################| Time: 0:00:00 Loaded 2480 entries from dependency cache. Parsing recipes: 100% |#################################################################################################################################################################################################################################| Time: 0:00:00 Parsing of 1718 .bb files complete (1717 cached, 1 parsed). 2480 targets, 68 skipped, 0 masked, 0 errors. Summary: There was 1 WARNING message shown. INFO: Updating patch 0001-Bug-1554949-Fix-WebRTC-build-failure-with-newer-linu.patch ... INFO: Updating patch pre-generated-old-configure.patch INFO: Adding new patch patch: INFO: Updating recipe firefox_68.0esr.bb INFO: Removing file /OE/build/test-oe-build-time/poky/meta-browser/dynamic-layers/rust-layer/recipes-browser/firefox/firefox/fixes/fix-camera-permission-dialg-doesnot-close.patch INFO: Cleaning sysroot for recipe firefox... INFO: Leaving source tree /OE/build/test-oe-build-time/poky/build/workspace/sources/firefox as-is; if you no longer need it then please delete it manually this looked like incorrect parsing of the git format-patch files exported from workspace/sources (the git format-patch version of fix-camera-permission-dialg-doesnot-close.patch starts like this: $ head 0008-original-patch-fix-camera-permission-dialg-doesnot-c.patch From 37dfa11961b48024bedcfb9336f49107c9535638 Mon Sep 17 00:00:00 2001 From: Takuro Ashie <ashie@clear-code.com> Date: Mon, 20 Aug 2018 10:16:20 +0900 Subject: [PATCH 08/34] %% original patch: fix-camera-permission-dialg-doesnot-close.patch so first I've modified GitApplyTree.extractPatches() to be able to parse the original patch name correctly even in this case where subject is wrapped, but then it still wasn't right, because we ended with correctly named .patch file, but all we could use for Subject line was the name of the original .patch file (instead of the Subject from metadata commit which introduced this .patch files as some other .patch files get when refreshed with devtool. In the end the issue happens even sooner in GitApplyTree.prepareCommit() where it correctly found the Subject from metadata commit, but then didn't apply it when there weren't any other outlines from patch headers. (From OE-Core rev: 0a8252f0cb13e3dc16f70b984f9f98b845b163de) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-selftest: add test of .gitignore in tarballMartin Jansa2020-06-041-0/+26
| | | | | | | (From OE-Core rev: 8ee4f7c076b0fdbfc5b9d6b5bbbf8a02f5d062a7) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* armv8/tunes: Set TUNE_PKGARCH_64 based on ARMPKGARCHKhem Raj2020-06-048-17/+7
| | | | | | | | | | | | | | | | | The setting is to modify TUNE_PKGARCH which is filled with TUNE_PKGARCH_64 or TUNE_PKGARCH_32 in arm-arch64.inc This lets higher up tune files for arm64 SOCs override them if needed, this can help building multiple armv8 machines with different tunes in same workspace. No need to set TUNE_PKGARCH in tune files as it is synthesized from ARMPKGARCH Add ARMPKGARCH for aarch64 tunes (From OE-Core rev: 08433cc58abf0cf3e42b22d20870a50287cfb8bc) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* layer.conf: Bump OE-Core layer versionJoshua Watt2020-06-031-1/+1
| | | | | | | | | | | | | The commits 910ffaf5be ("pyelftools: Import from meta-python") and a96f815c53 ("pycryptodome: Import from meta-python") moved recipes from meta-python to oe-core. In order for this to be communicated with users, bump the LAYERVERSION so that meta-python can key of it in its LAYERDEPENDS. (From OE-Core rev: 2d503b27e7c88cee9a37c79c4605c77b11f230b6) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* qemuarm: check serial consoles vs /proc/consolesTrevor Gamblin2020-05-302-0/+2
| | | | | | | | | | | | | | | | | | | | Note that this patch affects qemuarm AND qemuarm64. When booting a VM and during operation, the following message periodically appears: INIT: Id "hvc0" respawning too fast: disabled for 5 minutes This is because hvc0 is specified in SERIAL_CONSOLES in qemuarm.conf and qemuarm64.conf, but it is not in /proc/consoles and SERIAL_CONSOLES_CHECK is not specified, leaving getty to attempt to enable hvc0. Add SERIAL_CONSOLES_CHECK to both conf files so that hvc0 isn't enabled if it hasn't been set there or in local.conf. (From OE-Core rev: 982b7f98b8423236cc986346379b1bde3694f131) Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xf86-input-libinput: upgrade 0.29.0 -> 0.30.0Wang Mingyu2020-05-301-2/+2
| | | | | | | (From OE-Core rev: 567f4572518d15ac2b01b91ce55611146471c07a) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* util-linux: upgrade 2.35.1 -> 2.35.2Wang Mingyu2020-05-305-329/+13
| | | | | | | | | | | | 0001-hwclock-fix-for-glibc-2.31-settimeofday.patch 0001-kill-include-sys-types.h-before-checking-SYS_pidfd_s.patch 0001-libfdisk-script-accept-sector-size-ignore-unknown-he.patch are removed since they are included in 2.35.2 (From OE-Core rev: 3165c26b38f60f48c83cae266085363fe1aaa283) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* core-image-minimal-initramfs: keep restriction with initramfs-module-installhongxu2020-05-301-2/+2
| | | | | | | | | | | Since commit [882ae0dcce core-image-minimal-initramfs: use initramfs-framework for initialization] applied, it should keep the restriction with initramfs-module-install (From OE-Core rev: 295dbabce213855432b6274026e3b45a18b90e80) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-six: upgrade 1.14.0 -> 1.15.0Wang Mingyu2020-05-302-5/+5
| | | | | | | (From OE-Core rev: b9a6042e210ecf5c3b5d771f95c8505deab2739b) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* alsa-utils: upgrade 1.2.1 -> 1.2.2Wang Mingyu2020-05-302-2/+2
| | | | | | | (From OE-Core rev: daa1f517c780693a4081679b7951793cb4760394) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* alsa-lib: upgrade 1.2.1.2 -> 1.2.2Wang Mingyu2020-05-309-7540/+3
| | | | | | | | | | | | | | | | | 0001-Fix-alsa-sound-.h-for-external-programs.patch 0001-configure.ac-remove-an-unnecessary-libtool-fix.patch 0001-uapi-Move-typedefs-from-uapi-to-sound.patch 0001-ucm-Use-strncmp-to-avoid-access-out-of-boundary.patch 0002-ucm-return-always-at-least-NULL-if-no-list-is-availa.patch 0003-namehint-correct-the-args-check.patch 0004-namehint-improve-the-previous-patch-check-the-return.patch 0005-ucm-Do-not-fail-to-parse-configs-on-cards-with-an-em.patch removed since they are included in 1.2.2 (From OE-Core rev: 597482a455e6f1ea260a029e3f1b882024994a77) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.4: update to v5.4.43Bruce Ashfield2020-05-303-18/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.4 to the latest korg -stable release that comprises the following commits: e0d81ce76004 Linux 5.4.43 b5100186021a sched/fair: Fix enqueue_task_fair() warning some more 8b13f5657fa8 sched/fair: Fix reordering of enqueue/dequeue_task_fair() a2ad232aa6a9 sched/fair: Reorder enqueue/dequeue_task_fair path f4520daa3c5a tpm: check event log version before reading final events 68b7b8183c12 rxrpc: Fix ack discard 283eb0016f97 rxrpc: Trace discarded ACKs f2da8c0dfe81 iio: adc: stm32-dfsdm: fix device used to request dma 7b5af65ca246 iio: adc: stm32-dfsdm: Use dma_request_chan() instead dma_request_slave_channel() 692001a867b6 iio: adc: stm32-adc: fix device used to request dma 8e8836b2b782 iio: adc: stm32-adc: Use dma_request_chan() instead dma_request_slave_channel() 1084eee4dc5d x86/unwind/orc: Fix unwind_get_return_address_ptr() for inactive tasks 860fe59783a9 flow_dissector: Drop BPF flow dissector prog ref on netns cleanup bd6f0c799f4d s390/kexec_file: fix initrd location for kdump kernel 834d24ec3a0a rxrpc: Fix a memory leak in rxkad_verify_response() 23ae6e3e8aeb rxrpc: Fix the excessive initial retransmission timeout c2a26769b43e kasan: disable branch tracing for core runtime 86217fecc4b7 rapidio: fix an error in get_user_pages_fast() error handling 689dacb2b09d device-dax: don't leak kernel memory to user space after unloading kmem 9e451933bba9 s390/kaslr: add support for R_390_JMP_SLOT relocation type 72f3241508ac s390/pci: Fix s390_mmio_read/write with MIO 9c84884cd5dc ipack: tpci200: fix error return code in tpci200_register() 46f47dda27bc mei: release me_cl object reference f505a3e24c6a tty: serial: add missing spin_lock_init for SiFive serial console a5b4b3f97de7 misc: rtsx: Add short delay after exit from ASPM e64b205035fb iio: adc: ti-ads8344: Fix channel selection 9af65dc54b9b iio: dac: vf610: Fix an error handling path in 'vf610_dac_probe()' d54e5a4ff04c iio: sca3000: Remove an erroneous 'get_device()' 56cff2ac7c9d staging: greybus: Fix uninitialized scalar variable a41e02cb4232 staging: kpc2000: fix error return code in kp2000_pcie_probe() dee81110a488 staging: iio: ad2s1210: Fix SPI reading 76296dc723ef media: fdp1: Fix R-Car M3-N naming in debug message 4adb7a2b3161 Revert "gfs2: Don't demote a glock until its revokes are written" bb6524537dc2 kbuild: Remove debug info from kallsyms linking ee71c590dd8d bpf: Avoid setting bpf insns pages read-only when prog is jited 4c732e81bd4d powerpc/64s: Disable STRICT_KERNEL_RWX b67da9dbdb89 powerpc: Remove STRICT_KERNEL_RWX incompatibility with RELOCATABLE 9bcfbd8ba2b5 drm/i915: Propagate error from completed fences 5e171483e947 drm/i915/gvt: Init DPLL/DDI vreg for virtual display instead of inheritance. 0e1d5f67253e vsprintf: don't obfuscate NULL and error pointers 4b1b34621998 dmaengine: owl: Use correct lock in owl_dma_get_pchan() 0fcbe108b01a dmaengine: dmatest: Restore default for channel 57c32a52c3fe drm/etnaviv: Fix a leak in submit_pin_objects() 432b103596bd dmaengine: tegra210-adma: Fix an error handling path in 'tegra_adma_probe()' 870a45e0b507 apparmor: Fix aa_label refcnt leak in policy_update 054934aa9faa apparmor: fix potential label refcnt leak in aa_change_profile 97d817b9ef13 apparmor: Fix use-after-free in aa_audit_rule_init 3b1e38dfbc9f drm/etnaviv: fix perfmon domain interation 53683907ef68 arm64: Fix PTRACE_SYSEMU semantics 96e56055a2f0 scsi: target: Put lun_ref at end of tmr processing 818657105a0b scsi: qla2xxx: Do not log message when reading port speed via sysfs d54c5eff8795 ALSA: hda/realtek - Add more fixup entries for Clevo machines 80f5822c2bf3 ALSA: hda/realtek - Fix silent output on Gigabyte X570 Aorus Xtreme 1b17a0f98ad0 ALSA: pcm: fix incorrect hw_base increase a44cb2581718 ALSA: iec1712: Initialize STDSP24 properly when using the model=staudio option 99e392a4979b KVM: x86: Fix pkru save/restore when guest CR4.PKE=0, move it to x86.c 1c3d707d7d12 ALSA: hda/realtek: Enable headset mic of ASUS UX581LV with ALC295 26a3a3053332 ALSA: hda/realtek - Enable headset mic of ASUS UX550GE with ALC295 c5742497dcd2 ALSA: hda/realtek - Enable headset mic of ASUS GL503VM with ALC295 2523e9010d2b ALSA: hda/realtek: Add quirk for Samsung Notebook 6cc4dd44e207 ALSA: hda/realtek - Add HP new mute led supported for ALC236 0d189b31c4d7 ALSA: hda/realtek - Add supported new mute Led for HP 69d5dc286d05 ALSA: hda: Manage concurrent reg access more properly 1efaaf74528c ALSA: hda: patch_realtek: fix empty macro usage in if block 749e58bd2b09 ALSA: hda - constify and cleanup static NodeID tables 02ebbd1da394 scripts/gdb: repair rb_first() and rb_last() 9eff404a4382 ARM: futex: Address build warning 67a5c3104d12 KVM: selftests: Fix build for evmcs.h 4f48af814798 drm/amd/display: Prevent dpcd reads with passive dongles e0bb3075f91b iommu/amd: Call domain_flush_complete() in update_domain() e1efb9893bdd platform/x86: asus-nb-wmi: Do not load on Asus T100TA and T200TA c8d323578e36 USB: core: Fix misleading driver bug report 42b32a43529e stmmac: fix pointer check after utilization in stmmac_interrupt b68d27c5fffd ceph: fix double unlock in handle_cap_export() df0df8ee2ac7 HID: quirks: Add HID_QUIRK_NO_INIT_REPORTS quirk for Dell K12A keyboard-dock 8a5de4a391e4 gtp: set NLM_F_MULTI flag in gtp_genl_dump_pdp() 7932168ec08e x86/apic: Move TSC deadline timer debug printk 1ae9f1a62a50 ftrace/selftest: make unresolved cases cause failure if --fail-unresolved set 2eac9d3dc23f ibmvnic: Skip fatal error reset after passive init f82a3013226e x86/mm/cpa: Flush direct map alias during cpa 632db044ab99 HID: i2c-hid: reset Synaptics SYNA2393 on resume acd3efa17d96 scsi: ibmvscsi: Fix WARN_ON during event pool release 6ef21295dc20 net/ena: Fix build warning in ena_xdp_set() d0db69f9d132 component: Silence bind error on -EPROBE_DEFER 7a5f60dc3a67 aquantia: Fix the media type of AQC100 ethernet controller in the driver 445437b417b6 vhost/vsock: fix packet delivery order to monitoring devices dcec6678c3b1 configfs: fix config_item refcnt leak in configfs_rmdir() 2b52a61adb38 scsi: qla2xxx: Delete all sessions before unregister local nvme port d2430cb7f2d4 scsi: qla2xxx: Fix hang when issuing nvme disconnect-all in NPIV 7b481b802a8f HID: alps: ALPS_1657 is too specific; use U1_UNICORN_LEGACY instead a08626f6e982 HID: alps: Add AUI1657 device ID 68988c00b153 HID: multitouch: add eGalaxTouch P80H84 support cc6428803d22 gcc-common.h: Update for GCC 10 3c140d22e3c2 net: drop_monitor: use IS_REACHABLE() to guard net_dm_hw_report() 87863a7426b2 kbuild: avoid concurrency issue in parallel building dtbs and dtbs_check 44fd02a3d719 mtd: Fix mtd not registered due to nvmem name collision 496c7c61bd64 afs: Don't unlock fetched data pages until the op completes successfully 17c9595cca71 ubi: Fix seq_file usage in detailed_erase_block_info debugfs file 274cd3c7b5d3 i2c: mux: demux-pinctrl: Fix an error handling path in 'i2c_demux_pinctrl_probe()' dd540f2d7c2d evm: Fix a small race in init_desc() f96ab0d1f3ec iommu/amd: Fix over-read of ACPI UID from IVRS table 33769c19feba i2c: fix missing pm_runtime_put_sync in i2c_device_probe 9f885f17501d ubifs: remove broken lazytime support ac6f94d3be65 fix multiplication overflow in copy_fdtable() 725b0bb0f94d mtd: spinand: Propagate ECC information to the MTD structure e3637eb6a351 ACPI: EC: PM: Avoid flushing EC work when EC GPE is inactive 3be8ece11440 ubifs: fix wrong use of crypto_shash_descsize() 48bbd44f5fa9 ima: Fix return value of ima_write_policy() 1066327bf936 evm: Check also if *tfm is an error pointer in init_desc() 4aedc534b608 ima: Set file->f_mode instead of file->f_flags in ima_calc_file_hash() ac46cea606d5 KVM: SVM: Fix potential memory leak in svm_cpu_init() 1bed86cfe5cb i2c: dev: Fix the race between the release of i2c_dev and cdev (From OE-Core rev: 9cd117dec502f40402ebd3a09ed3e8dba804ce2b) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: gather reproducibility configs into a fragmentBruce Ashfield2020-05-303-3/+3
| | | | | | | | | | | | | | | | | | | | | Updating the meta SRCREV to pickup the following fix: commit 9e68afb48b16a447dcd3996ffa350f3e79e44257 (HEAD -> master) Author: Bruce Ashfield <bruce.ashfield@gmail.com> Date: Thu May 28 11:22:22 2020 -0400 features: add reproducibility fragement Creating an initial feature fragment that can be included when a reproducible kernel build is desired. This is currently only one option, but will have more in the future. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> (From OE-Core rev: eaa34c96b60e703c96495e60650adc6d149603f1) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.4: temporarily revert IKHEADERS in standard kernelsBruce Ashfield2020-05-303-3/+3
| | | | | | | | | | | | | | | | | | We had a commit that enabled IKHEADERS, since bpf requires them on target. This is still causing incremental reproducibility errors during the module compilation phase of the build. We are temporarily turning this off, so we can integrate -stable and other related changes. A replacement feature "reproducibility" is also being added to this can be conditionally enabled while we debug. (From OE-Core rev: 5706788603b38ad4a0987e187a1c11c06f4d4e6c) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto-rt/5.4: update to rt24Bruce Ashfield2020-05-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Integrating the following commit(s) to linux-yocto-rt/5.4: 3d70f110c590 Linux 5.4.40-rt24 6445e48533d9 Linux 5.4.39-rt23 0a6ba32d4177 Linux 5.4.37-rt22 35c686fb7671 Linux 5.4.34-rt21 e54886570abd Linux 5.4.33-rt20 307ba149ec47 v5.4.28-rt19 8d488719e24a mm/compaction: Disable compact_unevictable_allowed on RT (Update) d1d2315e077c v5.4.28-rt18 78028bc22d31 v5.4.26-rt17 815bfc775961 swait: Remove the warning with more than two waiters b23b7f974955 powerpc: Fix lazy preemption for powerpc 32bit a79a552889de mm/page_alloc: Use migrate_disable() in drain_local_pages_wq() 5e488daa19cb mm: Revert the DEFINE_PER_CPU_PAGEVEC implementation (From OE-Core rev: 0123efae31dab8bce15e11fcee0b139a61b67cd6) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.4: update to v5.4.42Bruce Ashfield2020-05-303-18/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.4 to the latest korg -stable release that comprises the following commits: 1cdaf895c99d Linux 5.4.42 ecb3f529a554 bpf: Test_progs, fix test_get_stack_rawtp_err.c build aee43146cc10 selftest/bpf: fix backported test_select_reuseport selftest changes 35d9107ad30b libbpf: Extract and generalize CPU mask parsing logic 10cfaa7456d7 Makefile: disallow data races on gcc-10 as well 9972e851b9f4 KVM: x86: Fix off-by-one error in kvm_vcpu_ioctl_x86_setup_mce 9d2487643b4f bpf: Fix sk_psock refcnt leak when receiving message d41689a34a9d SUNRPC: Revert 241b1f419f0e ("SUNRPC: Remove xdr_buf_trim()") 3a8efe589bb6 ARM: dts: r8a7740: Add missing extal2 to CPG node cd8ae9b73258 arm64: dts: renesas: r8a77980: Fix IPMMU VIP[01] nodes c580f2fe3270 ARM: dts: r8a73a4: Add missing CMT1 interrupts 8972721aea41 arm64: dts: imx8mn: Change SDMA1 ahb clock for imx8mn 764715615178 arm64: dts: rockchip: Rename dwc3 device nodes on rk3399 to make dtc happy 64ad7ef3a6e5 arm64: dts: rockchip: Replace RK805 PMIC node name with "pmic" on rk3328 boards af518b5b77fd arm64: dts: meson-g12-common: fix dwc2 clock names 9b9c52752a11 arm64: dts: meson-g12b-khadas-vim3: add missing frddr_a status property 01febb33cb6e clk: Unlink clock if failed to prepare or enable e2084a8d5fee Revert "ALSA: hda/realtek: Fix pop noise on ALC225" 5e553801462b usb: gadget: legacy: fix error return code in cdc_bind() 7e5c1db8ad15 usb: gadget: legacy: fix error return code in gncm_bind() 8228b6736964 usb: gadget: audio: Fix a missing error return value in audio_bind() 8ef452001769 usb: gadget: net2272: Fix a memory leak in an error handling path in 'net2272_plat_probe()' 9f65d776756e fanotify: fix merging marks masks with FAN_ONDIR 20a6d2455cde dwc3: Remove check for HWO flag in dwc3_gadget_ep_reclaim_trb_sg() 4f6815e429a8 clk: rockchip: fix incorrect configuration of rk3228 aclk_gpu* clocks 553a2cbca7c3 exec: Move would_dump into flush_old_exec 136353c5066c x86/unwind/orc: Fix error handling in __unwind_start() 91b9ce04ff1f x86: Fix early boot crash on gcc-10, third try f8e370ccab35 cifs: fix leaked reference on requeued write 4e06196336a1 powerpc/32s: Fix build failure with CONFIG_PPC_KUAP_DEBUG 57aa19acfc22 drm/amd/display: add basic atomic check for cursor plane 97e43314763d ARM: dts: imx6dl-yapp4: Fix Ursa board Ethernet connection 215589310fa2 ARM: dts: imx27-phytec-phycard-s-rdk: Fix the I2C1 pinctrl entries e1409dc95410 ARM: dts: dra7: Fix bus_dma_limit for PCIe da55eeb3245a Make the "Reducing compressed framebufer size" message be DRM_INFO_ONCE() c6a1ce81b43e usb: xhci: Fix NULL pointer dereference when enqueuing trbs from urb sg list 6bb054f006c3 USB: gadget: fix illegal array access in binding with UDC e6be4400ac34 usb: cdns3: gadget: prev_req->trb is NULL for ep0 f1a9bed7969a usb: host: xhci-plat: keep runtime active when removing host b96a62f506ee usb: core: hub: limit HUB_QUIRK_DISABLE_AUTOSUSPEND to USB5534B 93dda4f0e2ff ALSA: usb-audio: Add control message quirk delay for Kingston HyperX headset 3fa58fc9f8c4 ALSA: rawmidi: Fix racy buffer resize under concurrent accesses 04ccdf6b031d ALSA: hda/realtek - Add COEF workaround for ASUS ZenBook UX431DA c9709800eeeb ALSA: hda/realtek - Limit int mic boost for Thinkpad T530 c737b7533596 USB: usbfs: fix mmap dma mismatch 0432f7632a24 usb: usbfs: correct kernel->user page attribute mismatch dca0ae3900b3 gcc-10: avoid shadowing standard library 'free()' in crypto 6cbb91bdd3a2 gcc-10: mark more functions __init to avoid section mismatch warnings 7955081a3a65 gcc-10 warnings: fix low-hanging fruit dff2ce17934c gcc-10: disable 'restrict' warning for now b8e7b93333db gcc-10: disable 'stringop-overflow' warning for now 9ba07a72fc5e gcc-10: disable 'array-bounds' warning for now a740b68fd169 gcc-10: disable 'zero-length-bounds' warning for now 8f6a84167e86 Stop the ad-hoc games with -Wno-maybe-initialized ab638a49a9f3 net/rds: Use ERR_PTR for rds_message_alloc_sgs() b597815ce1e8 pnp: Use list_for_each_entry() instead of open coding d4e58131829f NFSv3: fix rpc receive buffer size for MOUNT call e26e2a3febcb mm, memcg: fix inconsistent oom event behavior 46a22f3ea146 s390/ism: fix error return code in ism_probe() e1608af17030 hwmon: (da9052) Synchronize access with mfd 6e7253dc4562 RDMA/iw_cxgb4: Fix incorrect function parameters 08f187dbd223 RDMA/core: Fix double put of resource ee7ce7d7e7c7 IB/core: Fix potential NULL pointer dereference in pkey cache b491aeec55fe IB/mlx4: Test return value of calls to ib_get_cached_pkey eaad00390ff9 RDMA/rxe: Always return ERR_PTR from rxe_create_mmap_info() da532ce587c7 netfilter: nft_set_rbtree: Add missing expired checks 1c235d0eb1f0 netfilter: nft_set_rbtree: Introduce and use nft_rbtree_interval_start() 6259b1c1bca5 SUNRPC: Signalled ASYNC tasks need to exit d1538d8d6325 nfs: fix NULL deference in nfs4_get_valid_delegation ea7c4d9e542f arm64: fix the flush_icache_range arguments in machine_kexec 1222b257654b drm/i915/gvt: Fix kernel oops for 3-level ppgtt guest a308d6e6861d netfilter: conntrack: avoid gcc-10 zero-length-bounds warning b526c01b38ae NFSv4: Fix fscache cookie aux_data to ensure change_attr is included 021f5799de53 nfs: fscache: use timespec64 in inode auxdata ef8195ee1618 NFS: Fix fscache super_cookie index_key from changing after umount 32b9de3e935d drm/amdgpu: force fbdev into vram e1b2b93243ca fork: prevent accidental access to clone3 features f256dea07774 gfs2: More gfs2_find_jhead fixes 18541e49f70b mmc: block: Fix request completion in the CQE timeout path e8eb122b9f43 mmc: core: Fix recursive locking issue in CQE recovery path fdf547a591f5 mmc: core: Check request type before completing the request 3a8bc2ae2f79 mmc: sdhci-pci-gli: Fix can not access GL9750 after reboot from Windows 10 e0830bb37734 mmc: alcor: Fix a resource leak in the error path for ->probe() 62f217e0a9c8 bpf, sockmap: bpf_tcp_ingress needs to subtract bytes from sg.size ce3193bf8964 bpf, sockmap: msg_pop_data can incorrecty set an sge length af1f11fe6667 drm/i915: Don't enable WaIncreaseLatencyIPCEnabled when IPC is disabled 0d9bc7986366 i40iw: Fix error handling in i40iw_manage_arp_cache() 95827ac65244 ALSA: firewire-lib: fix 'function sizeof not defined' error of tracepoints format 5d47b3d6b4d2 bpf: Fix error return code in map_lookup_and_delete_elem() 5b96668b63c0 pinctrl: cherryview: Add missing spinlock usage in chv_gpio_irq_handler aec927836c7d pinctrl: qcom: fix wrong write in update_dual_edge 604ad1bb8aae pinctrl: baytrail: Enable pin configuration setting for GPIO chip 960d609dd4dd pinctrl: sunrisepoint: Fix PAD lock register offset for SPT-H e529b8db9684 ACPI: EC: PM: Avoid premature returns from acpi_s2idle_wake() 9e54afec08f7 IB/hfi1: Fix another case where pq is left on waitlist d942a6a18463 mmc: sdhci-pci-gli: Fix no irq handler from suspend 171bf6ef038b gfs2: Another gfs2_walk_metadata fix 87954aacd585 ALSA: hda/realtek - Fix S3 pop noise on Dell Wyse 05aae468d31a ipc/util.c: sysvipc_find_ipc() incorrectly updates position index 3c3ade92b62a drm/amdgpu: invalidate L2 before SDMA IBs (v2) 938489ef2902 drm/amdgpu: simplify padding calculations (v2) eefe5e0bb7b7 drm/qxl: lost qxl_bo_kunmap_atomic_page in qxl_image_init_helper() 94cce94badf7 drm/amd/display: Update downspread percent to match spreadsheet for DCN2.1 f4164b29dc08 drm/amd/display: check if REFCLK_CNTL register is present 65f3108cbb1d drm/amd/powerplay: avoid using pm_en before it is initialized revised 8c5f11093ef4 ALSA: hda/hdmi: fix race in monitor detection during probe 4d1a83cb5afe cpufreq: intel_pstate: Only mention the BIOS disabling turbo mode once d12d7bf92b08 selftests/ftrace: Check the first record for kprobe_args_type.tc 2b313699e7a9 dmaengine: mmp_tdma: Reset channel error on release 6c414ddee7f0 dmaengine: mmp_tdma: Do not ignore slave config validation errors de76c0d4a03c dmaengine: pch_dma.c: Avoid data race between probe and irq handler c096a8645e3f riscv: fix vdso build with lld 2fffdf4dded1 umh: fix memory leak on execve failure 44ee727013d5 r8169: re-establish support for RTL8401 chip version e03d3510f45c nfp: abm: fix error return code in nfp_abm_vnic_alloc() 2fbd6eca3711 net: tcp: fix rx timestamp behavior for tcp_recvmsg fc800ec491c3 netprio_cgroup: Fix unlimited memory leak of v2 cgroups cab607a627cf net: ipv4: really enforce backoff for redirects d375d99f8902 net: dsa: loop: Add module soft dependency b2e8946250c3 hinic: fix a bug of ndo_stop d07987924a04 dpaa2-eth: prevent array underflow in update_cls_rule() 84916465b0f0 virtio_net: fix lockdep warning on 32 bit 23300d6a39d7 tcp: fix SO_RCVLOWAT hangs with fat skbs cb4f78986065 tcp: fix error recovery in tcp_zerocopy_receive() f152793058b5 Revert "ipv6: add mtu lock check in __ip6_rt_update_pmtu" 5f93b45fa58c pppoe: only process PADT targeted at local interfaces ecb8356aafba net: stmmac: fix num_por initialization 4300e210b005 net: phy: fix aneg restart in phy_ethtool_set_eee debcbc56fdfc netlabel: cope with NULL catmap 60a4f2ce0596 net: fix a potential recursive NETDEV_FEAT_CHANGE 97e860545e24 dpaa2-eth: properly handle buffer size restrictions 425853cc1160 mmc: sdhci-acpi: Add SDHCI_QUIRK2_BROKEN_64_BIT_DMA for AMDI0040 a761f65879e8 selftests/bpf: fix goto cleanup label not defined 2d6d0ce4de03 scsi: sg: add sg_remove_request in sg_write 7d8da6d7d90c net_sched: fix tcm_parent in tc filter dump e2824505a813 sun6i: dsi: fix gcc-4.8 645b44b6b3b3 virtio-blk: handle block_device_operations callbacks after hot unplug fbe2c2c50914 drop_monitor: work around gcc-10 stringop-overflow warning 23a0a0914a1e ftrace/selftests: workaround cgroup RT scheduling issues dbd667a322ac net: moxa: Fix a potential double 'free_irq()' 2bcd4df42d5d net/sonic: Fix a resource leak in an error handling path in 'jazz_sonic_probe()' e15d3d42900a SUNRPC: Fix GSS privacy computation of auth->au_ralign 3bf0794e7309 SUNRPC: Add "@len" parameter to gss_unwrap() 3c605abef3ee gpio: pca953x: Fix pca953x_gpio_set_config 163b48932571 KVM: arm: vgic: Synchronize the whole guest on GIC{D,R}_I{S,C}ACTIVER read 7abefa3f9a4b net: phy: microchip_t1: add lan87xx_phy_init to initialize the lan87xx phy. a12f3ad8d952 shmem: fix possible deadlocks on shmlock_user_lock 723090ae8ea6 net: dsa: Do not make user port errors fatal cbaf23699561 Linux 5.4.41 9bd5a84ceba3 fanotify: merge duplicate events on parent and child 4638e0ff0fa4 fsnotify: replace inode pointer with an object id 03447528a390 bdi: add a ->dev_name field to struct backing_dev_info 25390a31983c bdi: move bdi_dev_name out of line c1af2c13a4ac mm, memcg: fix error return value of mem_cgroup_css_alloc() 1642f114ce2d scripts/decodecode: fix trapping instruction formatting 2e86e3841c3c iommu/virtio: Reverse arguments to list_add 1a31c4456af9 objtool: Fix stack offset tracking for indirect CFAs 30a38059cdd4 netfilter: nf_osf: avoid passing pointer to local var 4ccbd9c859dd netfilter: nat: never update the UDP checksum when it's 0 634c950c624d arch/x86/kvm/svm/sev.c: change flag passed to GUP fast in sev_pin_memory() 4cbb69b45cad KVM: x86: Fixes posted interrupt check for IRQs delivery modes db00b1d9d71a x86/unwind/orc: Fix premature unwind stoppage due to IRET frames c9473a0260b2 x86/unwind/orc: Fix error path for bad ORC entry type 1b4bd44645ac x86/unwind/orc: Prevent unwinding before ORC initialization 511261578b8b x86/unwind/orc: Don't skip the first frame for inactive tasks 162e9f141d96 x86/entry/64: Fix unwind hints in rewind_stack_do_exit() 16aace664b27 x86/entry/64: Fix unwind hints in kernel exit path 07c4cd680c0b x86/entry/64: Fix unwind hints in register clearing code d8eb5a1cde35 batman-adv: Fix refcnt leak in batadv_v_ogm_process 13f968c8b762 batman-adv: Fix refcnt leak in batadv_store_throughput_override b71348105899 batman-adv: Fix refcnt leak in batadv_show_throughput_override bee7e9da58ba batman-adv: fix batadv_nc_random_weight_tq 34ca080088e2 iocost: protect iocg->abs_vdebt with iocg->waitq.lock d8c7f015d1a9 riscv: set max_pfn to the PFN of the last page 480534e03061 coredump: fix crash when umh is disabled b8fe132bae66 staging: gasket: Check the return value of gasket_get_bar_index() 53f453031a20 ceph: demote quotarealm lookup warning to a debug message 3fd9f902c08a ceph: fix endianness bug when handling MDS session feature bits e991f7ded4e1 mm: limit boost_watermark on small zones 4b49a9660d26 mm/page_alloc: fix watchdog soft lockups during set_zone_contiguous() ee922a2f6be9 eventpoll: fix missing wakeup for ovflist in ep_poll_callback 5d77631de15a epoll: atomically remove wait entry on wake up 1f3aa3e028c5 ipc/mqueue.c: change __do_notify() to bypass check_kill_permission() 65f96f4b797e drm: ingenic-drm: add MODULE_DEVICE_TABLE 0eae1647f145 arm64: hugetlb: avoid potential NULL dereference e983c6064a0a KVM: arm64: Fix 32bit PC wrap-around 3ae9279d725a KVM: arm: vgic: Fix limit condition when writing to GICD_I[CS]ACTIVER 152d97d0b26f KVM: VMX: Explicitly clear RFLAGS.CF and RFLAGS.ZF in VM-Exit RSB path 3f23f781290b KVM: s390: Remove false WARN_ON_ONCE for the PQAP instruction eb0373fc3871 crypto: arch/nhpoly1305 - process in explicit 4k chunks 8b166a6f6286 tracing: Add a vmalloc_sync_mappings() for safe measure 72886ae16a75 USB: serial: garmin_gps: add sanity checking for data length 4f4dc27c09cd usb: chipidea: msm: Ensure proper controller reset using role switch API 2419a955172c USB: uas: add quirk for LaCie 2Big Quadra b60a086ec733 HID: wacom: Report 2nd-gen Intuos Pro S center button status over BT 613045bfc63d HID: usbhid: Fix race between usbhid_close() and usbhid_stop() 1017955fab5b Revert "HID: wacom: generic: read the number of expected touches on a per collection basis" a204d577be70 sctp: Fix bundling of SHUTDOWN with COOKIE-ACK 3fc16b5b1947 HID: wacom: Read HID_DG_CONTACTMAX directly for non-generic devices 0aeae7ad9450 net: mvpp2: cls: Prevent buffer overflow in mvpp2_ethtool_cls_rule_del() b2930c86ee2b net: mvpp2: prevent buffer overflow in mvpp22_rss_ctx() d595dd5ba909 net/mlx5: Fix command entry leak in Internal Error State 11dd1d0ebfdd net/mlx5: Fix forced completion access non initialized command entry 18cfbcdf1f41 net/mlx5: DR, On creation set CQ's arm_db member to right value 6ab4dd433b61 bnxt_en: Fix VLAN acceleration handling in bnxt_fix_features(). cf07e0ccffde bnxt_en: Return error when allocating zero size context memory. 76737d877fab bnxt_en: Improve AER slot reset. ab1c944361b4 bnxt_en: Reduce BNXT_MSIX_VEC_MAX value to supported CQs per PF. 2be3a9e71ce4 bnxt_en: Fix VF anti-spoof filter setup. a882d44e5bad tunnel: Propagate ECT(1) when decapsulating as recommended by RFC6040 e9edd5a0f5f5 tipc: fix partial topology connection closure f2d581951775 sch_sfq: validate silly quantum values 017242e3bdb3 sch_choke: avoid potential panic in choke_reset() 66f7e30273ef nfp: abm: fix a memory leak bug 8fc441d16183 net: usb: qmi_wwan: add support for DW5816e 4107cd9a869f net/tls: Fix sk_psock refcnt leak when in tls_data_ready() a15ccc88e516 net/tls: Fix sk_psock refcnt leak in bpf_exec_tx_verdict() 4124b1317f26 net: tc35815: Fix phydev supported/advertising mask 7bbf73e918be net: stricter validation of untrusted gso packets b51b394f4ab1 net_sched: sch_skbprio: add message validation to skbprio_change() c78c166748e9 net/mlx4_core: Fix use of ENOSPC around mlx4_counter_alloc() 57f6c4340aad net: macsec: preserve ingress frame ordering 301d6eb32d81 net: macb: fix an issue about leak related system resources 5ffd49c52bad net: dsa: Do not leave DSA master with NULL netdev_ops e781af2fdc2e neigh: send protocol value in neighbor create notification 89469cf72fae mlxsw: spectrum_acl_tcam: Position vchunk in a vregion list properly 5d7e1e23efb6 ipv6: Use global sernum for dst validation with nexthop objects 45b6af95aae7 fq_codel: fix TCA_FQ_CODEL_DROP_BATCH_SIZE sanity checks 429a89625693 dp83640: reverse arguments to list_add_tail 6ee2fdf2ba4d devlink: fix return value after hitting end in region read b586a95e2606 tty: xilinx_uartps: Fix missing id assignment to the console 8ca4302bc663 vt: fix unicode console freeing with a common interface f4d20b01eaf6 drm/amdgpu: drop redundant cg/pg ungate on runpm enter c973b108912a drm/amdgpu: move kfd suspend after ip_suspend_phase1 8e16ede5b7a1 net: macb: Fix runtime PM refcounting eb6f88cd81ac tracing/kprobes: Fix a double initialization typo 56fc76893f87 nvme: fix possible hang when ns scanning fails during error recovery fb1b41128c70 nvme: refactor nvme_identify_ns_descs error handling a5d53ad84eb5 USB: serial: qcserial: Add DW5816e support (From OE-Core rev: 8c4b48a05f54520b4d5fcb5b0e6f74857ca4f1d2) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* go-1.14: Update to 1.14.3 minor releaseKhem Raj2020-05-301-3/+2
| | | | | | | (From OE-Core rev: 97d5c2d1f2dffe2518f46bbe57cb9348eb59c633) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sstate.bbclass: When siginfo or sig files are missing, stop fetcher errorsMark Hatle2020-05-301-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Prior to fetching, the system checks if the sstate file is present either locally or on the mirror. If it is, then it goes to the fetch stage. Up to three files can be fetched, sstate, sstate.siginfo and sstate.sig (if signature validation is enabled). The previous pstaging_fetch function would iterate over these, and if a download error occurred would spew forth a great amount of fetcher failure messages as well as stop fetching the next item in the set. This was resolved by adding a fetcher.checkstatus() call prior to the download. If the file isn't present, then the exception will be triggered, and no fetcher failure messages will reach the user. The exception handler is then modified to be a pass so that it will loop and pull the rest of the files that that are requested. Additionally, a check for the existance of the .sig file was added to the sstate_installpkg to avoid an error trying to load the .sig if it wasn't downloaded. (From OE-Core rev: a9085140434e2d26c0bb75bb53fcb7f7c19ef86d) Signed-off-by: Mark Hatle <mark.hatle@xilinx.com> Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake.conf: Remove unused DEPLOY_DIR_TOOLS variableRobert P. J. Day2020-05-301-1/+0
| | | | | | | | | | | | | | | | | Variable DEPLOY_DIR_TOOLS was introduced in 2007: commit f751a20152c651a33f08ceda0502fa1d4f11c005 Author: Richard Purdie <richard@openedhand.com> Date: Wed Aug 8 21:02:39 2007 +0000 bitbake.conf: Sync with OE.dev apparently never used so get rid of it. (From OE-Core rev: b1f15f651461d07a8cfbd3bdcfea0e89f195212d) Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libyaml: upgrade 0.2.2 -> 0.2.4zhengruoqin2020-05-301-3/+3
| | | | | | | | | | -License-Update: file name changed from LICENSE to License. Copyright year updated to 2020. (From OE-Core rev: 93cd242d3d75492cd67adb59f297505851919eae) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gdb: upgrade 9.1 -> 9.2zhengruoqin2020-05-304-2/+2
| | | | | | | (From OE-Core rev: b40adc3f9c5a9ee480b6ea85374481d13894ca6f) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* liburcu: upgrade 0.12.0 -> 0.12.1Wang Mingyu2020-05-301-2/+2
| | | | | | | (From OE-Core rev: 454153b380ae9e08fba02d2e2a33b72ea6f335cf) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* less: upgrade 551 -> 562Wang Mingyu2020-05-301-2/+2
| | | | | | | (From OE-Core rev: ab2125c07e76eed5352c6b5f67d9700888be3535) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* make-mod-scripts: Fix a rare build race conditionKhem Raj2020-05-301-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | There is a build break which rarely happens but is seen often enough with 4.1 kernel based builds /bin/sh: 1: scripts/basic/fixdep: Permission denied scripts/Makefile.host:124: recipe for target 'scripts/dtc/srcpos.o' failed make[3]: *** [scripts/dtc/srcpos.o] Error 126 this patch sequences the build targets so it can work reliably with different kernel versions Divide the target into scripts_basic scripts is not strictly necessary and was simply what was used for testing on kernel 4.1, which is quite an old kernel perhaps just using scripts is sufficient, but it is not tested to not known will cause the build race as seen above. (From OE-Core rev: 55ac6e2d251287419138931aa0d0894cf1267787) Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* qemurunner: fix ip fallback detectionKonrad Weihmann2020-05-301-1/+1
| | | | | | | | | | | | | | When falling back from detecting ip from /proc/./cmdline the output of runqemu is acutally 'Network configuration: ip=192.168.7.2::192.168.7.1::255.255.255.0' which doesn't match the given regex and leading to run failure, although IP is detectable. Fix regex by inserting an optional 'ip=' prefix to first IP (From OE-Core rev: 75f2471d15fab024775c59cb70c54e3f25f9ae72) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lib/classextend: Drop unneeded commentRichard Purdie2020-05-301-1/+0
| | | | | | | | This was leftover debug which can be removed. (From OE-Core rev: 7a578c760aa32f62bf39be7289de1516ad97e92e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libubootenv: Remove the DEPENDS on mtd-utilsAdrian Bunk2020-05-301-1/+1
| | | | | | | | | | | | It was only used for pulling in zlib, but this is now a direct dependency. Also move the DEPENDS to a more common location in the file. (From OE-Core rev: a99fd8b705be3b8c70cb0f17f60b013d989d625c) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-pycairo:upgrade 1.19.0 -> 1.19.1zangrc2020-05-301-2/+2
| | | | | | | (From OE-Core rev: dbd90a3d3b384c03ca5384dc6a8a65ae3d4b21d9) Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bind: fix CVE-2020-8616/7Lee Chee Yang2020-05-303-0/+237
| | | | | | | | | fix CVE-2020-8616 and CVE-2020-8617 (From OE-Core rev: d0df831830e4c5f8df2343a45ea75c2ab4f57058) Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* re2c: fix CVE-2020-11958Lee Chee Yang2020-05-302-1/+44
| | | | | | | (From OE-Core rev: 17daffa1bc6d5af2d77dafd2b146d78802e4f2d2) Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* qemu: enable virglrenderer and glx options subject to 'opengl' DISTRO_FEATUREAlexander Kanavin2020-05-273-14/+13
| | | | | | | | | | | | | | | | | | Note that to actually use accelerated GL passthrough, there are two options 1) a suitable frontend need to be also enabled - gtk+ and SDL both seem to work well. Previously I struggled to make SDL work, but now it seems fine. 2) it is also possible to render off-screen with -display egl-headless option, and see the output with a VNC viewer (for which, qemu needs to be started with a VNC server): $ runqemu kvm egl-headless publicvnc (From OE-Core rev: 662c688e635f4490aac0d6d34ce7a7b31d73f5c5) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libsdl2: enable opengl option for native/nativesdk, subject to 'opengl' in ↵Alexander Kanavin2020-05-271-2/+2
| | | | | | | | | | | DISTRO_FEATURES This allows virgl support in qemu with the SDL frontend (From OE-Core rev: 0e0113c350e599f4da00eda384570e0db04f3b5d) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake.conf: propagate 'opengl' DISTRO_FEATURE to native/nativesdk from targetAlexander Kanavin2020-05-275-6/+6
| | | | | | | | | | | | | | | | This will allow better control over native virgl/qemu configurations. Adjust gtk+3/cairo native configurations to actually ignore opengl when building for -native: we do not need it, and it would cause build failures as only a limited subset of mesa-native is currently built. Drop native/nativesdk overrides from virglrenderer/libepoxy recipes as opengl feature is now correctly set for those variants. (From OE-Core rev: 0e1f8fa0535dab63742f575b52ec9fa891368ca2) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* terminal.py: do not stop searching for autoJoe Slater2020-05-271-1/+4
| | | | | | | | | | If a terminal fails to spawn() we should continue looking. gnome-terminal, in particular can be present but not start. (From OE-Core rev: 6e4babdeee38d32002a4c9129e77466ae4156dd7) Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* multilib/recipes: Use new RecipePostKeyExpansion eventRichard Purdie2020-05-2713-40/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are issues with multilib due to the ordering of events where some functions see the remapped multilib dependencies and some do not. A significant problem is that the multilib class needs to make some changes before key expansion and some afterwards but by using existing event handlers, some code sees things in a partially translated state, leading to bugs. This patch changes things to use a new event handler from bitbake which makes the ordering of the changes explcit. The challenge in doing this is that it breaks some existing anonymous python and dyanmic assignments. In some cases these used to be translated and no longer are, meaning MLPREFIX has to be added. In some cases these are now translated and the MLPREFIX can be removed. This change does now make it very clear when MLPREFIX is required and when it is not, its just the migration path which is harder. The patch changes the small number of cases where fixes are needed. In particular, where a variable like RDEPENDS is conditionally extended (e.g. with an override), MLPREFIX is now required. This patch also reverts: base: Revert 'base.bbclass: considering multilib when setting LICENSE_EXCLUSION' This reverts 6597130256a1609c3e05ec5891aceaf549c37985 as the changes to multilib datastore handling mean its no longer necessary. (From OE-Core rev: b3fda056a674889cd9697e779de023d4f993d3ce) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ltp: Exclude the memcg_stress tests due to timeout problemsRichard Purdie2020-05-271-0/+4
| | | | | | | | | | | This test runs for 900s, we often see tests killed after 300s without output which makes the test results unreliable and inconsistent. The easiest solution for now is to skip this long running test, patching it out wth sed. (From OE-Core rev: 0739a8901140c05d037517ffd89382f151ba627c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ltp: Add missing dependencies on coreutils, bc, e2fsprogs and gdbRichard Purdie2020-05-271-0/+4
| | | | | | | | | | | | | | | | When the tests are run we see messages like: /opt/ltp/testcases/bin/run_cpuctl_stress_test.sh: line 242: nice: command not found /opt/ltp/testcases/bin/run_cpuctl_test_fj.sh: line 66: tac: command not found vma05 1 TCONF: 'gdb' not found memcg_failcnt 1 TCONF: 'bc' not found Owner=nobody; perms=-rw-------; sudo: lsattr: command not found so add missing dependencies to avoid these. (From OE-Core rev: faa01e1ae7a92d60699cd8865d1106a13549b096) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ltp: Add net-tools as rdependencyDaniel Díaz2020-05-271-0/+1
| | | | | | | | | | | | | | | The version of ifconfig provided by Busybox is not enough for some tests. Here's an example of how it fails with test netns_breakns_ns_exec_ipv4_ioctl: ifconfig: bad address '192.168.0.2/24' ifconfig: bad address 'inet6' This works with net-tools' ifconfig. (From OE-Core rev: 8679f9b04ad1aaf05a11c14aa0a5e5b2291c0c0e) Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* go.bbclass: Add `-trimpath` to default build flagsOtavio Salvador2020-05-261-1/+1
| | | | | | | | | | The `-trimpath` option is important for reproducible builds so full build paths and module paths are not embedded. (From OE-Core rev: e3df027b3697b6a92b417bba8d442a5bd15525fd) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* go-dep: Avoid use of 'go mod' supportOtavio Salvador2020-05-261-0/+4
| | | | | | | | | dep utility must not use 'go mod' support, so we explicitly disable it. (From OE-Core rev: b34000ae3dd6e0a1d7fc332efb35c5da84cf2275) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glide: Avoid use of 'go mod' supportOtavio Salvador2020-05-261-0/+4
| | | | | | | | | | Glide utility must not use 'go mod' support, so we explicitly disable it. (From OE-Core rev: b5a4369ba606677285b0a89a78c040b38f57767f) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* go-mod.bbclass: Add class for `go mod` supportOtavio Salvador2020-05-261-0/+20
| | | | | | | | | | | | | | | | | When using Go Modules, the the current working directory MUST be at or below the location of the 'go.mod' file when the go tool is used, and there is no way to tell it to look elsewhere. It will automatically look upwards for the file, but not downwards. To support this use case, we provide the `GO_WORKDIR` variable, which defaults to `GO_IMPORT` but allows for easy override. [YOCTO #13883] (From OE-Core rev: 11c2b06ac98cc5064640705712bffa156519f450) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* at-spi2-atk: dont inherit features_checkMing Liu2020-05-251-1/+1
| | | | | | | | | | | | | In commit be18dabd: [ at-spi2: Make X11 support truly optional ] REQUIRED_DISTRO_FEATURES was dropped, so it does not have to inherit features_check.bbclass. (From OE-Core rev: 9106d0381d819dfdb73431b9d209ec09a995914e) Signed-off-by: Ming Liu <ming.liu@toradex.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* package_rpm.bbclass: add PACKAGE_ADD_METADATA_RPM to sstate variablesMichael Ho2020-05-251-0/+4
| | | | | | | | | | | | | | | | Refactor the addition of vardeps for this package class to use RPMEXTRAVARS and pass the items through gen_packagevar so package name specific overrides are accounted for. This matches the style used in package_ipk.bbclass. Since do_package_write_rpm does not have any "extra vars" that affect the rpm packaging yet, this commit has to add the variable. This refactoring is needed to add PACKAGE_ADD_METADATA_RPM to RPMEXTRAVARS so it affects the sstate hash of do_package_write_rpm. (From OE-Core rev: 9e1907d7bd5f825d5ccca1da2a1e6ccc494088dd) Signed-off-by: Michael Ho <Michael.Ho@bmw.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* package_deb.bbclass: add PACKAGE_ADD_METADATA_DEB to sstate variablesMichael Ho2020-05-251-2/+3
| | | | | | | | | | | | | | Refactor the addition of vardeps for this package class to use DEBEXTRAVARS and pass the items through gen_packagevar so package name specific overrides are accounted for. This matches the style used in package_ipk.bbclass. Additionally add PACKAGE_ADD_METADATA_DEB to the DEBEXTRAVARS list so the packaging is redone if the variable changes value. (From OE-Core rev: e669141ccaeff346896f67f72b33c6aeae5cba46) Signed-off-by: Michael Ho <Michael.Ho@bmw.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>