summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* sphinx: overview-manual: add figuresNicolas Dechesne2020-09-173-1/+66
| | | | | | | | | | The automatic conversion with pandoc skipped the figures. Add them manually. (From yocto-docs rev: 1c2d071b7963490e8126a0b81792bda7a7c0bc8c) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sphinx: ref-variables: use builtin sphinx glossaryNicolas Dechesne2020-09-171-7893/+7893
| | | | | | | | | | | | | | | | | | | | | | Sphinx has a glossary directive. From the documentation: This directive must contain a reST definition list with terms and definitions. The definitions will then be referencable with the 'term' role. So anywhere in *any* manual, we can do :term:`VAR` to refer to an item from the glossary, and create a link. An HTML anchor is created for each term in the glossary, and can be accessed as: <link>/ref-variables.html#term-<NAME> To convert to a glossary, we needed proper indentation (e.g. added 3 spaces to each line) (From yocto-docs rev: af16cc4233ae9672698cf2fbb7bf0a78e461122e) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sphinx: initial sphinx supportNicolas Dechesne2020-09-1766-0/+49599
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit is autogenerated pandoc to generate an inital set of reST files based on DocBook XML files. A .rst file is generated for each .xml files in all manuals with this command: cd <manual> for i in *.xml; do \ pandoc -f docbook -t rst --shift-heading-level-by=-1 \ $i -o $(basename $i .xml).rst \ done The conversion was done with: pandoc 2.9.2.1-91 (Arch Linux). Also created an initial top level index file for each document, and added all 'books' to the top leve index.rst file. The YP manuals layout is organized as: Book Chapter Section Section Section Sphinx uses section headers to create the document structure. ReStructuredText defines sections headers like that: To break longer text up into sections, you use section headers. These are a single line of text (one or more words) with adornment: an underline alone, or an underline and an overline together, in dashes "-----", equals "======", tildes "~~~~~~" or any of the non-alphanumeric characters = - ` : ' " ~ ^ _ * + # < > that you feel comfortable with. An underline-only adornment is distinct from an overline-and-underline adornment using the same character. The underline/overline must be at least as long as the title text. Be consistent, since all sections marked with the same adornment style are deemed to be at the same level: Let's define the following convention when converting from Docbook: Book => overline === (Title) Chapter => overline *** (1.) Section => ==== (1.1) Section => ---- (1.1.1) Section => ~~~~ (1.1.1.1) Section => ^^^^ (1.1.1.1.1) During the conversion with pandoc, we used --shift-heading-level=-1 to convert most of DocBook headings automatically. However with this setting, the Chapter header was removed, so I added it back manually. Without this setting all headings were off by one, which was more difficult to manually fix. At least with this change, we now have the same TOC with Sphinx and DocBook. (From yocto-docs rev: 3c73d64a476d4423ee4c6808c685fa94d88d7df8) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sphinx: add initial build infrastructureNicolas Dechesne2020-09-174-0/+87
| | | | | | | | | | | Used sphinx-quickstart to generate top level config and Makefile.sphinx, to allow side by side DocBook and Sphinx co-existence. (From yocto-docs rev: 01dd5af7954e24552aca022917669b27bb0541ed) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake.conf: use ${TCMODE}-${TCLIBC} directory for CACHEMartin Jansa2020-09-172-6/+4
| | | | | | | | | | | | | | | | | | | | | | | * move TCMODE and TCLIBC from defaultsetup.conf to bitbake.conf * set CACHE as it was in defaultsetup.conf and drop it from defaultsetup.conf * most if not all DISTROs are now including defaultsetup.conf and TCLIBC is pretty much expected to be always set correctly, e.g.: meta/recipes-core/systemd/systemd_243.2.bb: if d.getVar('TCLIBC') == "musl": meta/recipes-devtools/gcc/gcc-runtime.inc: if [ "${TCLIBC}" != "glibc" ]; then meta/recipes-devtools/gcc/libgcc.inc: if [ "${TCLIBC}" != "glibc" ]; then meta/recipes-devtools/icecc-toolchain/nativesdk-icecc-toolchain_0.1.bb:ENV_NAME="${DISTRO}-${TCLIBC}-${SDK_ARCH}-@TARGET_PREFIX@${DISTRO_VERSION}.tar.gz" meta/recipes-devtools/valgrind/valgrind_3.15.0.bb:RRECOMMENDS_${PN} += "${TCLIBC}-dbg" meta/recipes-kernel/linux/kernel-devsrc.bb:RDEPENDS_${PN} = "bc python3 flex bison ${TCLIBC}-utils" meta/classes/buildhistory.bbclass:BUILDHISTORY_DIR_IMAGE = "${BUILDHISTORY_DIR}/images/${MACHINE_ARCH}/${TCLIBC}/${IMAGE_BASENAME}" meta/classes/cross-canadian.bbclass: if d.getVar("TCLIBC") in [ 'baremetal', 'newlib' ]: meta/classes/kernel.bbclass: tclibc = d.getVar('TCLIBC') meta/classes/toaster.bbclass: BUILDHISTORY_DIR_IMAGE_BASE = e.data.expand("%s/images/${MACHINE_ARCH}/${TCLIBC}/"% BUILDHISTORY_DIR) (From OE-Core rev: 57aa60ef6422568b425b6ccc4451567efc578469) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xinput-calibrator: change SRC_URI to branch with libinput supportSteve Sakoman2020-09-171-2/+2
| | | | | | | | | | | | | | | | | | Since "conf: Use xf86-input-libinput by default" [1] there are reports [2] of xinput-calibrator failing because it expects xf86-input-evdev and with the above patch xf86-input-libinput takes precedence. Fix this issue by using a branch of xinput calibrator which supports xf86-input-libinput. [1] https://git.openembedded.org/openembedded-core/commit/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc?id=2d005faff6341a81a2afae28860101ba9db51ae8 [2] https://www.yoctoproject.org/pipermail/yocto/2018-December/043487.html (From OE-Core rev: d3b2302bcc1594e663183134793cf4aca8f4df41) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* valgrind: fix memcheck vgtests remove fullpath-after flagsStacy Gaikovaia2020-09-172-16/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously in: f75792b28e valgrind: make a few more ptests pass the vagrind test runner was adjusted to suppress part of a path that only exists when run in the yocto ptest environment. Unfortunately this change includes the valgrind version and when valgrind was last updated, the patch was not changed. Rather than continually updating the patch or even generating the version dynamically, we can simply change the expected output for two tests. The reason the option: --fullpath-after=foo was introduced into the effected valgrind ptests was to deal with builds where ccache is used. Compiling with ccache enabled sometimes causes the source file absolute name to be found in a full path that is not the same as $PWD. See commit c80f32e662dfa2a4f046960a25d5b8b7a8821bea in valgrind for more information about changes to the arguments that test badfree3 and varinfo5 run with. There is also a minor fix to add the missing overloading.pm perl package and put the dependencies in alphabetic order. (From OE-Core rev: 9c82b9302c6ee84864e9a9cc870729395804e794) Signed-off-by: Stacy Gaikovaia <Stacy.Gaikovaia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* buildhistory-diff: use BUILDDIR to know where buildhistory isRoss Burton2020-09-171-6/+3
| | | | | | | | | | | | Instead of assuming that the buildhistory is stored in ./buildhistory unless told otherwise, use the environment variable BUILDDIR if present (which is set by oe-init-build-env) to locate the buildhistory directory. (From OE-Core rev: 18ca377df98e53b84ae8ec9ba561392c776c10df) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bison: remove the parallel build patchMingli Yu2020-09-172-70/+0
| | | | | | | | | | | Remove the parallel build patch and related fix for parallel build as the issue have already been fixed in bison 3.7.2 (f7b642cf build: fix incorrect dependencies). (From OE-Core rev: 00c7aacf84d094706ed3378a265189d2d6816cfd) Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* systemd: avoid failing if no udev rules providedPeter Bergin2020-09-171-1/+3
| | | | | | | | | | | | | | | | | In the case when no udev rules are provided by the recipe the do_install step of systemd is failing with: install: cannot stat '<WORKDIR>/*.rules': No such file or directory By default the systemd recipe provides touchscreen.rules but in the case this is unwanted on target the install step fails. This solution is dynamic and search for *.rules files in $WORKDIR. If found they are installed. (From OE-Core rev: c65eb4c38b61509ad38da19b986e0f06923f0cea) Signed-off-by: Peter Bergin <peter@berginkonsult.se> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* *-initramfs: don't use .rootfs IMAGE_NAME_SUFFIXMartin Jansa2020-09-173-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fixes the issue when image-live.bbclass expects the image ending with just INITRAMFS_FSTYPES: image-live.bbclass:INITRD_LIVE ?= "${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE_LIVE}-${MACHINE}.${INITRAMFS_FSTYPES}" while by default it now was with .rootfs suffix: -rw-r--r-- 2 bitbake bitbake 1.5K Oct 25 16:12 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs.env -rw-r--r-- 4 bitbake bitbake 11M Oct 25 16:13 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64-1.0-r0-20191025154349.cpio.gz -rw-r--r-- 4 bitbake bitbake 1.2K Oct 25 16:11 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64-1.0-r0-20191025154349.manifest -rw-r--r-- 4 bitbake bitbake 1.3K Oct 25 16:12 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64-1.0-r0-20191025154349.qemuboot.conf -rw-r--r-- 4 bitbake bitbake 196K Oct 25 16:11 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64-1.0-r0-20191025154349.testdata.json -rw-r--r-- 4 bitbake bitbake 118M Oct 25 16:13 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64-1.0-r0-20191025154349.wic -rw-r--r-- 4 bitbake bitbake 3.1K Oct 25 16:13 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64-1.0-r0-20191025154349.wic.bmap -rw-r--r-- 4 bitbake bitbake 1.3K Oct 25 16:12 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64.qemuboot.conf -rw-r--r-- 4 bitbake bitbake 11M Oct 25 16:13 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64.rootfs.cpio.gz -rw-r--r-- 4 bitbake bitbake 1.2K Oct 25 16:11 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64.rootfs.manifest -rw-r--r-- 4 bitbake bitbake 118M Oct 25 16:13 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64.rootfs.wic -rw-r--r-- 4 bitbake bitbake 3.1K Oct 25 16:13 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64.rootfs.wic.bmap -rw-r--r-- 4 bitbake bitbake 196K Oct 25 16:11 /OE/build/oe-core/tmp/deploy/images/genericx86-64/core-image-minimal-initramfs-genericx86-64.testdata.json initramfs images aren't normally used for rootfs, so just set the suffix to empty, people using different artifact names might still need to set INITRD_LIVE (e.g. when their images don't end with "-${MACHINE}" as well) (From OE-Core rev: 431a7dfc6c1c86ead3e636d42e2bf1f1f906588c) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel.bbclass: use camelCase notation for bash variables in do_deployMartin Jansa2020-09-171-7/+7
| | | | | | | | | | | * to match other variables there like deployDir imageType [YOCTO #12937] (From OE-Core rev: 13c5d1b686255d385d200cbd06b7000080809fc7) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel.bbclass: eliminate (initramfs_)symlink_name variablesMartin Jansa2020-09-171-4/+2
| | | | | | | | | | | | * they are used only once, we can use the value directly * notice that .bin extension isn't part of the variable values [YOCTO #12937] (From OE-Core rev: 22874b43de45e86418f683eb9d4394d7a8a08033) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel.bbclass: use bash variables like imageType, base_name without {}Martin Jansa2020-09-171-10/+10
| | | | | | | | | | | | * just to make sure it looks like bash variable not bitbake variable in run.do_* scripts [YOCTO #12937] (From OE-Core rev: 9a16dc2ac3d5e8ea95a575c377d3ad1602c1db12) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* image-artifact-names: introduce new bbclass and move some variables into itMartin Jansa2020-09-179-13/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * similar to kernel-artifact-names for other recipes/bbclasses which need to use some deployed artifacts * bitbake.conf: move IMAGE_BASENAME, IMAGE_VERSION_SUFFIX, IMAGE_NAME, IMAGE_LINK_NAME variables * image_types.bbclass: move IMAGE_NAME_SUFFIX variable * currently IMAGE_NAME_SUFFIX is used only by image.bbclass, image_types.bbclass and meta/recipes-core/images/build-appliance-image_15.0.0.bb but if it's needed by some recipe which isn't itself an image, then it's useful in bitbake.conf, e.g. we have a recipe for creating VirtualBox appliances which combines .wic.vmdk with .ovf file to create .zip with appliance, but for that we need the filename of .wic.vmdk which now contains IMAGE_NAME_SUFFIX https://github.com/webOS-ports/meta-webos-ports/blob/4980ce52a43ac6897657602810313af359f0b839/meta-luneos/recipes-core/images/luneos-emulator-appliance.inc#L24 * we were hardcoding .rootfs suffix where needed, but for quite long time it's configurable with IMAGE_NAME_SUFFIX since: commit 380ee36811939d947024bf78de907e3c071b834f Author: Patrick Ohly <patrick.ohly@intel.com> Date: Mon Mar 7 18:07:52 2016 +0100 image creation: allow overriding .rootfs suffix and might not match with hardcoded .rootfs, so make it easier to use IMAGE_NAME_SUFFIX where needed even without inheritting whole image_types.bbclass [YOCTO #12937] (From OE-Core rev: 456b700d51a5052a285a8477304f902c335223be) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* qemu: override DEBUG_BUILDMingli Yu2020-09-172-5/+4
| | | | | | | | | | | | | | | | | | Override DEBUG_BUILD for qemu as the qemu upstream states it doesn't work without optimization [1] to fix below build failure when debug build enabled. | /usr/lib/gcc/x86_64-wrs-linux/10.1.0/../../../../x86_64-wrs-linux/bin/ld.bfd: /mnt/build/tmp/work/x86_64-linux/qemu-system-native/5.1.0-r0/qemu-5.1.0/fsdev/qemu-fsdev-throttle.c:25: undefined reference to `unknown_lock_type' | /usr/lib/gcc/x86_64-wrs-linux/10.1.0/../../../../x86_64-wrs-linux/bin/ld.bfd: ../fsdev/qemu-fsdev-throttle.o: in function `fsdev_co_throttle_request': | /mnt/build/tmp/work/x86_64-linux/qemu-system-native/5.1.0-r0/qemu-5.1.0/fsdev/qemu-fsdev-throttle.c:103: undefined reference to `unknown_lock_type' | /usr/lib/gcc/x86_64-wrs-linux/10.1.0/../../../../x86_64-wrs-linux/bin/ld.bfd: ../fsdev/qemu-fsdev-throttle.o:/mnt/build/tmp/work/x86_64-linux/qemu-system-native/5.1.0-r0/qemu-5.1.0/fsdev/qemu-fsdev-throttle.c:103: more undefined references to `unknown_lock_type' follow | collect2: error: ld returned 1 exit status [1]: https://lists.nongnu.org/archive/html/qemu-devel/2020-09/msg03873.html (From OE-Core rev: 2d6a15cfb12e72ae3d38f6ecf8c6c2e356e0fda8) Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* insane: check for missing update-alternatives inheritAndrey Zhizhikin2020-09-171-0/+9
| | | | | | | | | | | | Add a package QA check to test if the recipe sets ALTERNATIVE variable for any of its packages, and does not inherit update-alternatives class. This causes the do_rootfs to fail since a proper alternative cannot be created. (From OE-Core rev: 24b5ccc76d5660fac38ac5346666380a0ecce359) Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sato-screenshot: improve .la removalRoss Burton2020-09-171-1/+1
| | | | | | | | | | Don't assume that the .la files are installed, because some libtool alternatives don't install these. (From OE-Core rev: e545ae3a7961111ceb4e2a468e9ec53cebfed721) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* alsa-plugins: improve .la removalRoss Burton2020-09-171-1/+1
| | | | | | | | | | Don't assume that the .la files are installed, because some libtool alternatives don't install these. (From OE-Core rev: e92b24368b71e4b178f81097b2a8d141c3b65481) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Revert "core-image-sato: qemumips use 512 mem"Richard Purdie2020-09-171-0/+1
| | | | | | | | | | | This reverts commit 45da2fc4f7272366ffc7cde24d9040c919466201. qemumips is unstable with more than 256MB memory, the original issue this limit was added for remains. We'll have to find other solutions to the systemd out of memory issues. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Revert "qemu: always define unknown_lock_type"Richard Purdie2020-09-173-50/+6
| | | | | | | | | | | | This reverts commit e442924d9ac4e202aec571b5d26bb959b5faaadd. This was rejected upstream and its been pointed out qemu doesn't work without optimization. Instead we should just error if the user attempts to build it without optimization. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: bitbake-user-manual: fix bad linksNicolas Dechesne2020-09-162-2/+2
| | | | | | | | | | | | The link errors were found with linkcheck command: (line 1958) broken https://docs.python.org/3/library/re.html#re - Anchor 're' not found (line 713) broken http://docs.python.org/3/library/re.html#re - Anchor 're' not found (Bitbake rev: 29081375659e3dcf1c578cd98ab2c8a2e9f07ca8) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: theme_override: Use bold for emphasis textRichard Purdie2020-09-161-0/+4
| | | | | | | | | This more closely matches the original docbook style and is appropriate given the way the manual uses this element. (Bitbake rev: a0f37789493aeb1cd5e82c17459bfa4cf6c0ecd6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: theme_override: properly set font for verbatim textNicolas Dechesne2020-09-161-0/+5
| | | | | | | | | | | | | The 'verbatim' text was rendered with Courier font in DocBook (e.g. when using the <filename> tag). With DocBook we are using the ``FOO`` notation which ends up in a <pre> class in the HTML output. Configure the theme CSS to use Courier, to preserve the look and feel of the original docs. (Bitbake rev: cbc5ca48c7e79c47f055a47f8f9aa480490dd00f) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: remove leading '/'Nicolas Dechesne2020-09-161-3/+3
| | | | | | | | | | | When switching back and forth between between regular and mega manual an extra '/' keeps being added to the URL. Reported-by: Quentin Schulz <quentin.schulz@streamunlimited.com> (Bitbake rev: 08b1ae2350694e22883e07605a28a10c05f62cda) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: update style for important, caution and warningsNicolas Dechesne2020-09-161-2/+11
| | | | | | | | | The initial theme override covers for tip and and note only. (Bitbake rev: 99ba6fe98b9c7c4dbe70dce63c478c167c10d91a) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: last manual round of fixes/improvementsNicolas Dechesne2020-09-166-1170/+1733
| | | | | | | | | | Review all pages, and fix up for formatting which was not covered by pandoc, such as some links and code block sections. (Bitbake rev: d99760cc687cc9c24d6d9a1c49fa094574476e0c) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: bitbake-user-manual: insert additional blank line after titleNicolas Dechesne2020-09-165-0/+10
| | | | | | | (Bitbake rev: 4f94633a68fd44223d6be458fc0d3616dfdfd1a7) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: add releases pageNicolas Dechesne2020-09-162-0/+131
| | | | | | | | | This page has a list of all the previously released Bitbake user manual. (Bitbake rev: 63adcaa527b931f4a9494729b26e40ddef8d3695) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: conf: enable extlinks extensionNicolas Dechesne2020-09-161-0/+6
| | | | | | | (Bitbake rev: 3e940d93c7513413a93a910122b1dd82870044b1) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: index: move the boilerplate at the end of the pageNicolas Dechesne2020-09-161-10/+14
| | | | | | | (Bitbake rev: 9921c652340c1a3c06572603b2251a7ddea54b85) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: add SPDX headersNicolas Dechesne2020-09-167-0/+14
| | | | | | | (Bitbake rev: 4e461224c1825ebba6024fb8d962e726598da153) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: Enhance the sphinx experience/nagivation with:Richard Purdie2020-09-164-0/+264
| | | | | | | | | | | | * Remove the pointless looking parts of breadcrumb navigtation * Add a document type switcher to the breadcrumb navigation * Add a version selection switch to the breadcrumb navigation (Bitbake rev: cb19159cf8972713a2063387849804c5cea72d24) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: tweak html output a bitNicolas Dechesne2020-09-161-5/+11
| | | | | | | | | | | * Remove the 'generated by Sphinx' text on each page * Add a 'last updated timestamp' on each page * Remove the trailing 'dot' in TOC numbering (Bitbake rev: 10a54678bf7a119e91df8160b0f43384181d636d) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: Makefile.sphinx: add clean and publish targetsNicolas Dechesne2020-09-161-1/+12
| | | | | | | (Bitbake rev: 219b2348f51a02b102cd1c34c87f279c83ae4908) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: fixes all remaining warningsNicolas Dechesne2020-09-163-11/+11
| | | | | | | | | This patch fixes a handful of remaining warnings reported by Sphinx. (Bitbake rev: 35fdc18549607e195d424f554e8d4b74e87fd245) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: fix links inside notesNicolas Dechesne2020-09-163-18/+13
| | | | | | | | | | For some notes with links, the links were lost during the pandoc conversion. (Bitbake rev: e11d2dd1adbcb35b45d6d0f3a47f8d06caab0b49) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: fixup for linksNicolas Dechesne2020-09-166-160/+160
| | | | | | | | | | | | | | | | | | | | | | | | Since we converted the list of variables into a Sphinx glossary, the automatic conversion from Pandoc does not produce proper links. We fix them up using a Python regexp. Similarly some http links were not converted correctly, and can also be fixed up with a regexp. This patch was generated by running the following regexp: line = re.sub("` <(https?://.*)>`__", "\\1", line) line = re.sub("`+(\w+)`* <#var-bb-\\1>`__", ":term:`\\1`", line) (Bitbake rev: 57300955beb200c81762880f44f1a499451b7432) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: override theme CSSNicolas Dechesne2020-09-162-1/+153
| | | | | | | | | | | | | It is possible to override CSS settings from the theme, by providing custom snippets of CSS stylesheet. Support for that is added in conf.py file. Most of the CSS customization is inherited from the DocBook CSS style. (Bitbake rev: fa304c0129538d7a0b7a3922cd1fde2e242d6cab) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: switch to readthedocs themeNicolas Dechesne2020-09-161-1/+1
| | | | | | | | | | To install this additional theme: pip3 install sphinx_rtd_theme (Bitbake rev: 29af1cd2a4f379096f5dd6f4cacc0a9c9f211e7c) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: bitbake-user-manual: use builtin sphinx glossaryNicolas Dechesne2020-09-161-1202/+1236
| | | | | | | | | | | | | | | | | | | | | | Sphinx has a glossary directive. From the documentation: This directive must contain a reST definition list with terms and definitions. The definitions will then be referencable with the 'term' role. So anywhere in *any* manual, we can do :term:`VAR` to refer to an item from the glossary, and create a link. An HTML anchor is created for each term in the glossary, and can be accessed as: <link>/ref-variables.html#term-<NAME> To convert to a glossary, we needed proper indentation (e.g. added 3 spaces to each line) (Bitbake rev: e8359fd85ce0358019e2a32b4c47ba76613f48f0) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: initial sphinx supportNicolas Dechesne2020-09-167-6/+5204
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit is autogenerated pandoc to generate an inital set of reST files based on DocBook XML files. A .rst file is generated for each .xml files in all manuals with this command: cd <manual> for i in *.xml; do \ pandoc -f docbook -t rst --shift-heading-level-by=-1 \ $i -o $(basename $i .xml).rst \ done The conversion was done with: pandoc 2.9.2.1-91 (Arch Linux). Also created an initial top level index file for each document, and added all 'books' to the top leve index.rst file. The YP manuals layout is organized as: Book Chapter Section Section Section Sphinx uses section headers to create the document structure. ReStructuredText defines sections headers like that: To break longer text up into sections, you use section headers. These are a single line of text (one or more words) with adornment: an underline alone, or an underline and an overline together, in dashes "-----", equals "======", tildes "~~~~~~" or any of the non-alphanumeric characters = - ` : ' " ~ ^ _ * + # < > that you feel comfortable with. An underline-only adornment is distinct from an overline-and-underline adornment using the same character. The underline/overline must be at least as long as the title text. Be consistent, since all sections marked with the same adornment style are deemed to be at the same level: Let's define the following convention when converting from Docbook: Book => overline === (Title) Chapter => overline *** (1.) Section => ==== (1.1) Section => ---- (1.1.1) Section => ~~~~ (1.1.1.1) Section => ^^^^ (1.1.1.1.1) During the conversion with pandoc, we used --shift-heading-level=-1 to convert most of DocBook headings automatically. However with this setting, the Chapter header was removed, so I added it back manually. Without this setting all headings were off by one, which was more difficult to manually fix. At least with this change, we now have the same TOC with Sphinx and DocBook. (Bitbake rev: 6bf6c8d63787aed7624793c24af3fa603b5ac961) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: sphinx: add initial build infrastructureNicolas Dechesne2020-09-165-0/+101
| | | | | | | | | | | Used sphinx-quickstart to generate top level config and Makefile.sphinx, to allow side by side DocBook and Sphinx co-existence. (Bitbake rev: 84ccba0f4aff91528f764523fe1205a354c889ed) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: cooker: Block SIGINT in worker processesJoshua Watt2020-09-151-0/+1
| | | | | | | | | | | | | Blocks SIGINT in the worker processes to prevent them from running the parent process signal handler, which causes them to deadlock under certain circumstances. [YOCTO #14034] (Bitbake rev: 9f4207f4b598f549cbd4159841c720276736f23b) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: tests/fetch: Move away from problematic freedesktop.org urlsRichard Purdie2020-09-151-2/+4
| | | | | | | | | | We're either hitting rate limiting with freedesktop.org or the servers have intermittent network connections. Use our own mirror of these repositories instead. (Bitbake rev: a1b7ab5c9d5e64969f5ca0e41c0ac13c723e3761) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lttng-modules: backport patches from 2.12.x to fix 5.4.64+ and 5.8.9+ buildsJens Rehsack2020-09-1511-1/+1829
| | | | | | | | | | | | | Backporting the 10 patches since the lttng 2.12.2 release. We'll drop them once .3 is released, but for now, we need the fixes to build against the latest 5.4, 5.8 and 5.9 kernels. We also bump the devupstream SRCREV to pickup the same changes. (From OE-Core rev: 62c87d1a68c4f7c8f30c3c5330dcda9cbcbbbaa7) 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.65Bruce Ashfield2020-09-153-18/+18
| | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.4 to the latest korg -stable release that comprises the following commits: 6c3d34dea2fc Linux 5.4.65 ddb279d64b72 net: disable netpoll on fresh napis 09c45065257b tipc: fix shutdown() of connectionless socket b95eb482c288 taprio: Fix using wrong queues in gate mask 20f8c874789a sctp: not disable bh in the whole sctp_get_port_local() 8b61bb0b2d57 net: usb: dm9601: Add USB ID of Keenetic Plus DSL 346fefa82325 netlabel: fix problems with mapping removal 3f73dbf94f8f ipv6: Fix sysctl max for fib_multipath_hash_policy 263e463358d3 ipv4: Silence suspicious RCU usage warning (From OE-Core rev: e2cb6e8b433614a8512739ea5583914d9ef978fc) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.8: update to v5.8.9Bruce Ashfield2020-09-153-18/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.8 to the latest korg -stable release that comprises the following commits: f82f36b2fb1d Linux 5.8.9 cdba995d2f19 mptcp: free acked data before waiting for more memory 655e1af6aecd net: disable netpoll on fresh napis 6f0e276cda3e tipc: fix using smp_processor_id() in preemptible aae250a26893 tipc: fix shutdown() of connectionless socket 44c3fca3de64 taprio: Fix using wrong queues in gate mask db16256c95ac sctp: not disable bh in the whole sctp_get_port_local() 05a8237c08f0 net: usb: dm9601: Add USB ID of Keenetic Plus DSL 6540bd18bf2f netlabel: fix problems with mapping removal 089097476c4c ipv6: Fix sysctl max for fib_multipath_hash_policy d68c3397de48 ipv4: Silence suspicious RCU usage warning bd15d2192261 RDMA/cma: Execute rdma_cm destruction from a handler properly d4794085738d RDMA/cma: Remove unneeded locking for req paths c2064ac30331 RDMA/cma: Using the standard locking pattern when delivering the removal event 5a0c4cbd099b RDMA/cma: Simplify DEVICE_REMOVAL for internal_id 87d8175e9c3d io_uring: fix linked deferred ->files cancellation f5fea75f4ea4 io_uring: fix cancel of deferred reqs with ->files (From OE-Core rev: 3961a70464f5e628081ef5d7ea8934c0be4ecfd9) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/config: configuration warning cleanupBruce Ashfield2020-09-153-3/+3
| | | | | | | | | | | | Integrating the following commit(s) to linux-yocto/.: 7d52eb95f6d ti-am335x: Clean up useless and badly formatted fragments 5fd04e4da78 features/nf_tables: remove duplicate entry (From OE-Core rev: 0979d3d8b9417eea28a2bbb56f83b1ea2fbf5ac5) 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.64Bruce Ashfield2020-09-153-18/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.4 to the latest korg -stable release that comprises the following commits: 6ffabce36fc8 Linux 5.4.64 beaf13ed8e97 net: usb: Fix uninit-was-stored issue in asix_read_phy_addr() 58c3e86d42d2 cfg80211: regulatory: reject invalid hints 08eeec445297 mm/khugepaged.c: fix khugepaged's request size in collapse_file af7786b20c71 mm/hugetlb: fix a race between hugetlb sysctl handlers f2cd86225c89 checkpatch: fix the usage of capture group ( ... ) 59ac5bfa82bc sdhci: tegra: Add missing TMCLK for data timeout e915b3b63dfd perf record: Correct the help info of option "--no-bpf-event" 894a6f0be372 vfio/pci: Fix SR-IOV VF handling with MMIO blocking f4fa8d937edf mm: madvise: fix vma user-after-free 87fb7b0c5266 mm: slub: fix conversion of freelist_corrupted() 291144f1114d dm thin metadata: Fix use-after-free in dm_bm_set_read_only cfe85a4a8552 dm thin metadata: Avoid returning cmd->bm wild pointer on error 392a6afcbf19 dm cache metadata: Avoid returning cmd->bm wild pointer on error 9dd74db0bfd1 dm crypt: Initialize crypto wait structures e6ddb1d45c51 dm integrity: fix error reporting in bitmap mode after creation b30f628beec9 dm mpath: fix racey management of PG initialization 226fb99eb59d dm writecache: handle DAX to partitions on persistent memory correctly 6fb192c06a14 drm/amd/pm: avoid false alarm due to confusing softwareshutdowntemp setting f84804af09c7 dmaengine: dw-edma: Fix scatter-gather address calculation 9f4ab0172e6c blk-iocost: ioc_pd_free() shouldn't assume irq disabled f7880745e91b libata: implement ATA_HORKAGE_MAX_TRIM_128M and apply to Sandisks 5f5f27228195 block: ensure bdi->io_pages is always initialized 84c041c12442 block: allow for_each_bvec to support zero len bvec b6e4827c04b0 affs: fix basic permission bits to actually work 2d89e44dc932 media: rc: uevent sysfs file races with rc_unregister_device() 5925179bbc64 media: rc: do not access device via sysfs after rc_unregister_device() 3d77c12f3040 mmc: sdhci-pci: Fix SDHCI_RESET_ALL for CQHCI for Intel GLK-based controllers ed48704c36a8 mmc: cqhci: Add cqhci_deactivate() a69047c01eb4 mmc: dt-bindings: Add resets/reset-names for Mediatek MMC bindings 5876ee035ba6 mmc: mediatek: add optional module reset property 2816ccd07145 arm64: dts: mt7622: add reset node for mmc device d074d9d52fe0 ALSA: hda/realtek - Improved routing for Thinkpad X1 7th/8th Gen 7de2f56ef51a ALSA: hda/realtek: Add quirk for Samsung Galaxy Book Ion NT950XCJ-X716A a253fe35666d ALSA; firewire-tascam: exclude Tascam FE-8 from detection 982505615063 ALSA: hda - Fix silent audio output and corrupted input on MSI X570-A PRO cebaed033037 ALSA: firewire-digi00x: exclude Avid Adrenaline from detection 4fa06a43bf9f ALSA: hda/hdmi: always check pin power status in i915 pin fixup 2ebb83a259a8 ALSA: pcm: oss: Remove superfluous WARN_ON() for mulaw sanity check 79124b1b912c ALSA: usb-audio: Add implicit feedback quirk for UR22C a3b94af5117b ALSA: ca0106: fix error code handling 156dd7c73a9b Revert "ALSA: hda: Add support for Loongson 7A1000 controller" 62db427bf8ca Revert "net: dsa: microchip: set the correct number of ports" 4254a4f7988c btrfs: fix potential deadlock in the search ioctl de53545e8d4c net: core: use listified Rx for GRO_NORMAL in napi_gro_receive() df0c47585cea btrfs: tree-checker: fix the error message for transid error 650275310f3b btrfs: set the lockdep class for log tree extent buffers 7e0ffb0d9d9f btrfs: set the correct lockdep class for new nodes c37cc199da2b btrfs: allocate scrub workqueues outside of locks eb29635ba68a btrfs: drop path before adding new uuid tree entry 20b591fd00c0 ARC: perf: don't bail setup if pct irq missing in device-tree ce690fa1d5d0 xfs: don't update mtime on COW faults 12cd8fccc9ed ext2: don't update mtime on COW faults cc6c4d81d6ad tracing/kprobes, x86/ptrace: Fix regs argument order for i386 036a857bb57d iommu/vt-d: Handle 36bit addressing for x86-32 8f747b0149c5 vfio-pci: Invalidate mmaps and block MMIO access on disabled memory b0f5096b281a vfio-pci: Fault mmaps to enable vma tracking 270c35d0723a vfio/type1: Support faulting PFNMAP vmas 5629bb21ce20 include/linux/log2.h: add missing () around n in roundup_pow_of_two() bc846b58fe5c net/packet: fix overflow in tpacket_rcv e3d109c3484e iommu/amd: Restore IRTE.RemapEn bit after programming IRTE 7ce6bc1b549e thermal: qcom-spmi-temp-alarm: Don't suppress negative temp f5b3bd38ae91 thermal: ti-soc-thermal: Fix bogus thermal shutdowns for omap4430 0c21f1bcafc1 iommu/vt-d: Serialize IOMMU GCMD register modifications 920d9ffcd481 x86, fakenuma: Fix invalid starting node ID 1a7e03867a37 tg3: Fix soft lockup when tg3_reset_task() fails. b0c40f8a7a0e perf jevents: Fix suspicious code in fixregex() 6c4ad5444a26 xfs: fix xfs_bmap_validate_extent_raw when checking attr fork of rt files 58591dd6afda MIPS: add missing MSACSR and upper MSA initialization 612e2b7ec962 net: gemini: Fix another missing clk_disable_unprepare() in probe 88405cf0f2bd fix regression in "epoll: Keep a reference on files added to the check list" 901d22c6b6dc net: ethernet: mlx4: Fix memory allocation in mlx4_buddy_init() 8e2660c834e3 perf tools: Correct SNOOPX field offset 37f0a08a3a83 cxgb4: fix thermal zone device registration 50d284778427 nvme: fix controller instance leak f4b830c61b5b nvmet-fc: Fix a missed _irqsave version of spin_lock in 'nvmet_fc_fod_op_done()' 9ff9f74ed462 netfilter: nfnetlink: nfnetlink_unicast() reports EAGAIN instead of ENOBUFS 498575898ec4 net: dsa: mt7530: fix advertising unsupported 1000baseT_Half c4a427b71cd7 selftests/bpf: Fix massive output from test_maps e0a1bebc332d media: cedrus: Add missing v4l2_ctrl_request_hdl_put() 3fe12f4be001 media: vicodec: add missing v4l2_ctrl_request_hdl_put() f28f3cffff27 bnxt: don't enable NAPI until rings are ready da7a1676d6c1 xfs: fix boundary test in xfs_attr_shortform_verify 8227199ceafd bnxt_en: fix HWRM error when querying VF temperature 927a7629bedd bnxt_en: Fix possible crash in bnxt_fw_reset_task(). 70699d3cc77c bnxt_en: Fix PCI AER error recovery flow 87547923b6c6 bnxt_en: Check for zero dir entries in NVRAM. e7cbba4db7da bnxt_en: Don't query FW when netif_running() is false. c11510bb8898 net: ethernet: ti: cpsw: fix clean up of vlan mc entries for host port 0bd92cdc04e6 gtp: add GTPA_LINK info to msg sent to userspace 24249fab08c6 dmaengine: pl330: Fix burst length if burst size is smaller than bus width 719f92de3fff net: arc_emac: Fix memleak in arc_mdio_probe 268fe5a4c040 ravb: Fixed to be able to unload modules 8123fa897e65 net: systemport: Fix memleak in bcm_sysport_probe a49c0aebf9c4 net: hns: Fix memleak in hns_nic_dev_probe 210b889fd8ef netfilter: nf_tables: fix destination register zeroing 576fbd4902fb netfilter: nf_tables: incorrect enum nft_list_attributes definition 929d07feb94f netfilter: nf_tables: add NFTA_SET_USERDATA if not null fb1e97674aa8 mmc: sdhci-acpi: Fix HS400 tuning for AMDI0040 da8e3e507d2f MIPS: BMIPS: Also call bmips_cpu_setup() for secondary cores c5e9e36fc2f8 MIPS: mm: BMIPS5000 has inclusive physical caches 5f7798f05311 rxrpc: Make rxrpc_kernel_get_srtt() indicate validity 43cf7e7dfa7b rxrpc: Keep the ACK serial in a var in rxrpc_input_ack() 242a7ab0ac52 dmaengine: at_hdmac: check return value of of_find_device_by_node() in at_dma_xlate() 2f2786bb9d40 batman-adv: bla: use netif_rx_ni when not in interrupt context fd8b3ef644a4 batman-adv: Fix own OGM check in aggregated OGMs 2344f2f186fd batman-adv: Avoid uninitialized chaddr when handling DHCP 89cb604c4226 dmaengine: of-dma: Fix of_dma_router_xlate's of_dma_xlate handling 1a89606baf31 fsldma: fix very broken 32-bit ppc ioread64 functionality 6eb88c42dcc9 xen/xenbus: Fix granting of vmalloc'd memory 0878655a9880 drm/amd/display: Fix memleak in amdgpu_dm_mode_config_init b014f2846e6f drm/amd/display: Retry AUX write when fail occurs 9947928e619a drivers: gpu: amd: Initialize amdgpu_dm_backlight_caps object to 0 in amdgpu_dm_update_backlight_caps 79d31527dfc3 drm/amd/display: Reject overlay plane configurations in multi-display scenarios 29bade8e2fc9 s390: don't trace preemption in percpu macros c756635246e9 nbd: restore default timeout when setting it to zero c1e333e7b8da cpuidle: Fixup IRQ state ad3a4efc8c56 drm/omap: fix incorrect lock state 0a8dcad24424 ceph: don't allow setlease on cephfs 755fd63ae163 drm/msm/a6xx: fix gmu start on newer firmware 7a55cf8a20c7 habanalabs: check correct vmalloc return code c9436de020a4 habanalabs: validate FW file size dddd5003c707 drm/msm: enable vblank during atomic commits 2c9bc7d9600c nvmet: Disable keep-alive timer when kato is cleared to 0h e94a3d76305b hwmon: (applesmc) check status earlier. 19583b280801 drm/msm: add shutdown support for display platform_driver 8bc25dea70fe tty: serial: qcom_geni_serial: Drop __init from qcom_geni_console_setup 28ffe70a2e33 drm/msm/dpu: Fix scale params in plane validation b2fc347e2126 HID: quirks: Always poll three more Lenovo PixArt mice e32f4fa1b24d Linux 5.4.63 5153710a5ecc scsi: target: tcmu: Optimize use of flush_dcache_page bb9949fdfddd scsi: target: tcmu: Fix size in calls to tcmu_flush_dcache_range 6d2e274f60fc sdhci: tegra: Remove SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK for Tegra186 0176db2f2ad5 sdhci: tegra: Remove SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK for Tegra210 eda97e9d90db arm64: tegra: Add missing timeout clock to Tegra210 SDMMC 5cd8c5979e72 arm64: tegra: Add missing timeout clock to Tegra186 SDMMC nodes ef8b5f333780 arm64: tegra: Add missing timeout clock to Tegra194 SDMMC nodes 9d806d68bf97 dt-bindings: mmc: tegra: Add tmclk for Tegra210 and later d2ac42e61ecd KVM: arm64: Set HCR_EL2.PTW to prevent AT taking synchronous exception ffad02f9e3ea KVM: arm64: Survive synchronous exceptions caused by AT instructions 1744237ca047 KVM: arm64: Add kvm_extable for vaxorcism code 538caddbe635 drm/etnaviv: fix TS cache flushing on GPUs with BLT engine 80743b4bde09 drm/sched: Fix passing zero to 'PTR_ERR' warning v2 6cadd1e2d8c5 perf record/stat: Explicitly call out event modifiers in the documentation 4bae1afed432 HID: core: Sanitize event code and type when mapping input 667514df10a0 HID: core: Correctly handle ReportSize being zero 933cf1c2c075 Linux 5.4.62 54ee77961e79 io_uring: Fix NULL pointer dereference in io_sq_wq_submit_work() 44cf62d388fb ALSA: usb-audio: Update documentation comment for MS2109 quirk 851d0813ab80 HID: hiddev: Fix slab-out-of-bounds write in hiddev_ioctl_usage() c98b6ebd9b55 kbuild: fix broken builds because of GZIP,BZIP2,LZOP variables 37432a83faab kbuild: add variables for compression tools 47a41f65afb6 kheaders: explain why include/config/autoconf.h is excluded from md5sum 7caddaa9f88b kheaders: remove the last bashism to allow sh to run it 18f48708c3f5 kheaders: optimize header copy for in-tree builds a1d0c6e2f334 kheaders: optimize md5sum calculation for in-tree builds eb914bae6e17 kheaders: remove unneeded 'cat' command piped to 'head' / 'tail' 376810e5e9e1 fbmem: pull fbcon_update_vcs() out of fb_set_var() 6a862aa31ec3 usb: dwc3: gadget: Handle ZLP for sg requests 7c8b5685662b usb: dwc3: gadget: Fix handling ZLP 4bc5d90a7dce usb: dwc3: gadget: Don't setup more than requested f8e4c5297fcd drm/i915: Fix cmd parser desc matching with masks 73992639ec78 usb: storage: Add unusual_uas entry for Sony PSZ drives 2add73c8c00d USB: cdc-acm: rework notification_buffer resizing e2e02f260496 USB: gadget: u_f: Unbreak offset calculation in VLAs 4f529c4d1e43 USB: gadget: f_ncm: add bounds checks to ncm_unwrap_ntb() f47ab852bea3 USB: gadget: u_f: add overflow checks to VLA macros 2534d3dec376 usb: host: ohci-exynos: Fix error handling in exynos_ohci_probe() de24343880a6 USB: Ignore UAS for JMicron JMS567 ATA/ATAPI Bridge ca29a2a53953 USB: quirks: Ignore duplicate endpoint on Sound Devices MixPre-D 20b3564c6748 USB: quirks: Add no-lpm quirk for another Raydium touchscreen b32ec919ee37 usb: uas: Add quirk for PNY Pro Elite ad0bc424fc0a USB: yurex: Fix bad gfp argument 3623dab2959e drm/amd/pm: correct the thermal alert temperature limit settings 85ca6f199c77 drm/amd/pm: correct Vega20 swctf limit setting 9afabefd42fc drm/amd/pm: correct Vega12 swctf limit setting 60cffee2d951 drm/amd/pm: correct Vega10 swctf limit setting 2809cf7f6eba drm/amd/powerplay: Fix hardmins not being sent to SMU for RV 20700b352d10 drm/amdgpu/gfx10: refine mgcg setting 8fc7a66619e1 drm/amdgpu: Fix buffer overflow in INFO ioctl 1adf8c19f974 x86/hotplug: Silence APIC only after all interrupts are migrated 47c8387a963e irqchip/stm32-exti: Avoid losing interrupts due to clearing pending bits by mistake 927aa9a10f12 genirq/matrix: Deal with the sillyness of for_each_cpu() on UP 70957a10e1db crypto: af_alg - Work around empty control messages without MSG_MORE aca10ab0568a device property: Fix the secondary firmware node handling in set_primary_fwnode() df2a6a4a9d68 powerpc/perf: Fix crashes with generic_compat_pmu & BHRB b260fb2a02b5 PM: sleep: core: Fix the handling of pending runtime resume requests 7ded78a8c89e arm64: vdso32: make vdso32 install conditional 3b7087e07730 xhci: Always restore EP_SOFT_CLEAR_TOGGLE even if ep reset failed 02166fea639f xhci: Do warm-reset when both CAS and XDEV_RESUME are set 3ac8545b29ae usb: host: xhci: fix ep context print mismatch in debugfs 4d3e2a3a0c64 XEN uses irqdesc::irq_data_common::handler_data to store a per interrupt XEN data pointer which contains XEN specific information. 6623c19042b6 writeback: Fix sync livelock due to b_dirty_time processing cb0c74450072 writeback: Avoid skipping inode writeback 8eab2b531fd3 writeback: Protect inode->i_io_list with inode->i_lock 2e76a3a1667c serial: 8250: change lock order in serial8250_do_startup() f53ebc7c2922 serial: 8250_exar: Fix number of ports for Commtech PCIe cards fbb55ec82dd6 serial: stm32: avoid kernel warning on absence of optional IRQ 64a05aadf936 serial: pl011: Don't leak amba_ports entry on driver register error 0806b49bba20 serial: pl011: Fix oops on -EPROBE_DEFER daae6b962a13 serial: samsung: Removes the IRQ not found warning 7c57237d74a0 vt_ioctl: change VT_RESIZEX ioctl to check for error return from vc_resize() adb76f3f7732 vt: defer kfree() of vc_screenbuf in vc_do_resize() db1bb352cc08 USB: lvtest: return proper error code in probe 96e41fc29e8a fbcon: prevent user font height or width change from causing potential out-of-bounds access cd1d270e3e4f btrfs: detect nocow for swap after snapshot delete eb576fc43a43 btrfs: fix space cache memory leak after transaction abort 1d08edc70154 btrfs: check the right error variable in btrfs_del_dir_entries_in_log 8a3509486f08 btrfs: reset compression level for lzo on remount b1a83ee0cbbf blk-mq: order adding requests to hctx->dispatch and checking SCHED_RESTART c2035d1e55aa HID: i2c-hid: Always sleep 60ms after I2C_HID_PWR_ON commands db4542b6617b block: loop: set discard granularity and alignment for block device backed loop f09dbec9c0c6 block: fix get_max_io_size() 2f4b202eb1b1 arm64: Allow booting of late CPUs affected by erratum 1418040 82b05f0838aa arm64: Move handling of erratum 1418040 into C code 7d44b707aaff powerpc/perf: Fix soft lockups due to missed interrupt accounting 9c0305c0cfa2 net: gianfar: Add of_node_put() before goto statement c656534e5c45 macvlan: validate setting of multiple remote source MAC addresses 19f669a3609c Revert "scsi: qla2xxx: Fix crash on qla2x00_mailbox_command" 48765b780ace scsi: qla2xxx: Fix null pointer access during disconnect from subsystem 36a139cf4146 scsi: qla2xxx: Check if FW supports MQ before enabling 88274626d110 scsi: qla2xxx: Fix login timeout 37528b3ee9e1 scsi: ufs: Clean up completed request without interrupt notification a39ba0fdcdfd scsi: ufs: Improve interrupt handling for shared interrupts d895b0be701c scsi: ufs: Fix possible infinite loop in ufshcd_hold 1778bebd06b4 scsi: fcoe: Fix I/O path allocation a8d26145e112 selftests: disable rp_filter for icmp_redirect.sh 957066143e6c ASoC: wm8994: Avoid attempts to read unreadable registers 1d63737b0777 s390/cio: add cond_resched() in the slow_eval_known_fn() loop 2a8c6149a49a ALSA: hda/realtek: Add model alc298-samsung-headphone 021a98a87864 can: j1939: transport: j1939_xtp_rx_dat_one(): compare own packets to detect corruptions 3803312a3c55 netfilter: avoid ipv6 -> nf_defrag_ipv6 module dependency 35238963c972 drm/amd/display: Switch to immediate mode for updating infopackets b92b415fa7b7 drm/amd/powerplay: correct UVD/VCE PG state on custom pptable uploading 73a0e6280a32 drm/amd/powerplay: correct Vega20 cached smu feature state d2da80e0a3e7 spi: stm32: always perform registers configuration prior to transfer 2844685c661a spi: stm32: fix stm32_spi_prepare_mbr in case of odd clk_rate a6daa863d15e spi: stm32: fix fifo threshold level in case of short transfer 3c15a3c4b155 spi: stm32h7: fix race condition at end of transfer a08e95e83e6f fs: prevent BUG_ON in submit_bh_wbc() 28a56c26a00d ext4: correctly restore system zone info when remount fails 8e63c86f6580 ext4: handle error of ext4_setup_system_zone() on remount e579635669da ext4: handle option set by mount flags correctly 3a53d012bd26 jbd2: abort journal if free a async write error metadata buffer 1b36d4fa4b66 ext4: handle read only external journal device 2e7312ddaf62 ext4: don't BUG on inconsistent journal feature 40827caf954c jbd2: make sure jh have b_transaction set in refile/unfile_buffer e4351ad44d7e spi: stm32: clear only asserted irq flags on interrupt d63728afe947 usb: gadget: f_tcm: Fix some resource leaks in some error paths 262f5fbad941 i2c: rcar: in slave mode, clear NACK earlier 883ed72723ef i2c: core: Don't fail PRP0001 enumeration when no ID table exist 2fc8fa50ebee null_blk: fix passing of REQ_FUA flag in null_handle_rq 88994acafd96 nvme: multipath: round-robin: fix single non-optimized path case 97f30414a2e0 nvme-fc: Fix wrong return value in __nvme_fc_init_request() 05c608f630b9 blkcg: fix memleak for iolatency 872a2b3182ee blk-mq: insert request not through ->queue_rq into sw/scheduler queue 9054d5844092 hwmon: (nct7904) Correct divide by 0 1475314530bb bfq: fix blkio cgroup leakage v4 2295664518c3 block: Fix page_is_mergeable() for compound pages 3e9eb1e893ba drm/msm/adreno: fix updating ring fence effd3b89f7e5 block: virtio_blk: fix handling single range discard request cc3a73f245cb block: respect queue limit of max discard segment 8f409e764c4b media: gpio-ir-tx: improve precision of transmitted signal due to scheduling 6ba04701b801 ALSA: usb-audio: Add capture support for Saffire 6 (USB 1.1) 5861e84d7145 cpufreq: intel_pstate: Fix EPP setting via sysfs in active mode 1b7b2d45b31e PCI: qcom: Add missing reset for ipq806x ea552383a9d5 PCI: qcom: Change duplicate PCI reset to phy reset 29ecf28be997 PCI: qcom: Add missing ipq806x clocks in PCIe driver 6d11320bed41 EDAC/{i7core,sb,pnd2,skx}: Fix error event severity 87cc96bb11b9 EDAC: skx_common: get rid of unused type var 3bf42b2e8d67 EDAC: sb_edac: get rid of unused vars 75aaa8fa7672 mm/vunmap: add cond_resched() in vunmap_pmd_range a2038eb833a5 drm/amd/display: Fix dmesg warning from setting abm level 8522b1bec88e drm/amd/display: Add additional config guards for DCN 992e51ff0e4b drm/amd/display: Trigger modesets on MST DSC connectors b730fb14434f drm/ingenic: Fix incorrect assumption about plane->index 8dc47d858fea gpu/drm: ingenic: Use the plane's src_[x,y] to configure DMA length 302b9e189962 cma: don't quit at first error when activating reserved areas aed14b1b5c0e mm/cma.c: switch to bitmap_zalloc() for cma bitmap allocation 965d3d5ce355 mm: fix kthread_use_mm() vs TLB invalidate 72574434da87 mm/shuffle: don't move pages between zones and don't read garbage memmaps 483b956a16a0 btrfs: only commit delayed items at fsync if we are logging a directory 3eddcc71fe8a btrfs: only commit the delayed inode when doing a full fsync d5f5b15d3ea4 btrfs: factor out inode items copy loop from btrfs_log_inode() a0cfda9cb3a1 s390/numa: set node distance to LOCAL_DISTANCE 67f8b390b15e drm/xen-front: Fix misused IS_ERR_OR_NULL checks 02611bcaafe5 drm/xen: fix passing zero to 'PTR_ERR' warning fe376f1b12d2 PM / devfreq: rk3399_dmc: Fix kernel oops when rockchip,pmu is absent b7cca731b486 PM / devfreq: rk3399_dmc: Disable devfreq-event device when fails a0f69c6f5e0b PM / devfreq: rk3399_dmc: Add missing of_node_put() 961bfe1277ae usb: cdns3: gadget: always zeroed TRB buffer when enable endpoint 2c0000f409ec sched/uclamp: Fix a deadlock when enabling uclamp static key 88435320ebc1 sched/uclamp: Protect uclamp fast path code with static key 93709d8ade00 Revert "ath10k: fix DMA related firmware crashes on multiple devices" da56eb03ea94 arm64: Fix __cpu_logical_map undefined issue 12a9bec2bd4e efi: provide empty efi_enter_virtual_mode implementation b2defeb19bff brcmfmac: Set timeout value when configuring power save 7aac56d8b0ee USB: sisusbvga: Fix a potential UB casued by left shifting a negative value e77f71c6341a powerpc/spufs: add CONFIG_COREDUMP dependency 653ae33b030b KVM: arm64: Fix symbol dependency in __hyp_call_panic_nvhe a84a6eb935ba media: davinci: vpif_capture: fix potential double free 6b0010ed7140 hugetlbfs: prevent filesystem stacking of hugetlbfs c67c6e1f54aa EDAC/ie31200: Fallback if host bridge device is already initialized 41191f8c57a1 scsi: fcoe: Memory leak fix in fcoe_sysfs_fcf_del() a002274db527 ceph: do not access the kiocb after aio requests 01540d5e7c1b ceph: fix potential mdsc use-after-free crash 9da791b5410e scsi: iscsi: Do not put host in iscsi_set_flashnode_param() 050292f138a3 btrfs: make btrfs_qgroup_check_reserved_leak take btrfs_inode 1f52b85f6c79 btrfs: file: reserve qgroup space after the hole punch range is locked 7d6689df48de locking/lockdep: Fix overflow in presentation of average lock-time 2adf6ec63db2 drm/nouveau: Fix reference count leak in nouveau_connector_detect 19e81f6325a9 drm/nouveau: fix reference count leak in nv50_disp_atomic_commit d23d52e38cc9 drm/nouveau/drm/noveau: fix reference count leak in nouveau_fbcon_open 45e30390f50f f2fs: fix use-after-free issue 4cba87943046 HID: quirks: add NOGET quirk for Logitech GROUP 6734eeb6c2f0 cec-api: prevent leaking memory through hole in structure bd4593030332 ALSA: hda: Add support for Loongson 7A1000 controller f4107f633a29 mips/vdso: Fix resource leaks in genvdso.c 71e7e02c0590 rtlwifi: rtl8192cu: Prevent leaking urb 3a84491364e1 ARM: dts: ls1021a: output PPS signal on FIPER2 4410fd0c378e PCI: Fix pci_create_slot() reference count leak 201838142c52 omapfb: fix multiple reference count leaks due to pm_runtime_get_sync 22d859fe1bdc f2fs: fix error path in do_recover_data() 110c5a5a6854 selftests/powerpc: Purge extra count_pmc() calls of ebb selftests 0450a50c914e scsi: target: Fix xcopy sess release leak 774cc7c882f8 xfs: Don't allow logging of XFS_ISTALE inodes 40b450375c80 scsi: lpfc: Fix shost refcount mismatch when deleting vport 815060a8ec2a drm/amdgpu/display: fix ref count leak when pm_runtime_get_sync fails 8290f9d4695f drm/amdgpu: fix ref count leak in amdgpu_display_crtc_set_config 3753eff4c69a drm/amd/display: fix ref count leak in amdgpu_drm_ioctl c911da7b6673 drm/amdgpu: fix ref count leak in amdgpu_driver_open_kms 40d0bf2b6e99 drm/radeon: fix multiple reference count leak 9c88b27ac444 drm/amdkfd: Fix reference count leaks. 1174ed705dda iommu/iova: Don't BUG on invalid PFNs f0a066af0f37 mfd: intel-lpss: Add Intel Tiger Lake PCH-H PCI IDs d98ea48810e6 scsi: target: tcmu: Fix crash on ARM during cmd completion ab2d90e58ae1 blktrace: ensure our debugfs dir exists fc93c091de22 media: pci: ttpci: av7110: fix possible buffer overflow caused by bad DMA value in debiirq() 1dc0ed18219a powerpc/xive: Ignore kmemleak false positives 88eb00cb39ce arm64: dts: qcom: msm8916: Pull down PDM GPIOs during sleep d8cc881483d8 mfd: intel-lpss: Add Intel Emmitsburg PCH PCI IDs fd5908860a17 ASoC: tegra: Fix reference count leaks. 7d60cd2a6e08 ASoC: img-parallel-out: Fix a reference count leak 8150a0e3d796 ASoC: img: Fix a reference count leak in img_i2s_in_set_fmt a53f67368c98 ALSA: hda/hdmi: Use force connectivity quirk on another HP desktop 348da2f8566b ALSA: hda/realtek: Fix pin default on Intel NUC 8 Rugged bcf40820b4fd ALSA: pci: delete repeated words in comments b45944e2b39e ALSA: hda/hdmi: Add quirk to force connectivity 266d21a57093 ipvlan: fix device features e1334c4f4aec net/sched: act_ct: Fix skb double-free in tcf_ct_handle_fragments() error flow 97a74349cf82 net: ena: Make missed_tx stat incremental 6c2e795f95cd tipc: fix uninit skb->data in tipc_nl_compat_dumpit() d429362b3de4 net/smc: Prevent kernel-infoleak in __smc_diag_dump() 4d2fe0addc38 net: sctp: Fix negotiation of the number of data streams. 4ef63e365466 net: qrtr: fix usage of idr in port assignment to socket 4ae9ebf9e8ea net: nexthop: don't allow empty NHA_GROUP 6ed89176755c net: Fix potential wrong skb->protocol in skb_vlan_untag() b5e34120b06a gre6: Fix reception with IP6_TNL_F_RCV_DSCP_COPY 730443f4c48a binfmt_flat: revert "binfmt_flat: don't offset the data start" 669fc3b38ce2 powerpc/64s: Don't init FSCR_DSCR in __init_FSCR() (From OE-Core rev: 4090a909ade3ac38bb14b978776daffc152f64d0) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>