summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* tiff: Extend for nativesdkChristian Eggers2020-06-041-1/+1
| | | | | | | | | | | Doxygen in meta-oe has recently been extended for nativesdk. Doxygen is often used together with mscgen which in turn depends indirectly on tiff (via gd library). (From OE-Core rev: 929cf038ec0f49e86d9ab0ec7e012320598ceb81) Signed-off-by: Christian Eggers <ceggers@arri.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* librsvg: Extend for nativesdkChristian Eggers2020-06-041-1/+1
| | | | | | | | | | | Doxygen in meta-oe has recently been extended for nativesdk. Doxygen is often used together with dot (graphviz) which in turn depends on librsvg. (From OE-Core rev: cccc14d5fe334b6995c54a80a1b65fce357e4582) Signed-off-by: Christian Eggers <ceggers@arri.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* wic: Add --offset argument for partitionsJoshua Watt2020-06-044-45/+135
| | | | | | | | | | | | | | | | | | | | Add support for an --offset argument when defining a partition. Many SoCs require that boot partitions be located at specific offsets. Prior to this argument, most WKS files were using the --align attribute to specify the location of these fixed partitions but this is not ideal because in the event that the partition couldn't be placed in the specified location, wic would move it to the next sector with that alignment, often preventing the device from booting. Unlike the --align argument, wic will fail if a partition cannot be placed at the exact offset specified with --offset. Changes in V2: * Fixed a small typo that prevented test_fixed_size_error from passing (From OE-Core rev: 467f84e12b96bc977d57575023517dd6f8ef7f29) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* diffoscope: upgrade 144 -> 146Pierre-Jean Texier2020-06-041-2/+1
| | | | | | | | | See full changelog https://diffoscope.org/news/diffoscope-146-released/ (From OE-Core rev: 942a02154c6b20a5cce583607b6f36bb7657ef0d) Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rpm: fix rpm -Kv xxx.rpm failed if signature header is larger than 64KBHongxu Jia2020-06-042-0/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commits [Place file signatures into the signature header where they belong][1] applied, run `rpm -Kv **.rpm' failed if signature header is larger than 64KB. Here are steps: 1) A unsigned rpm package, the size is 227560 bytes $ ls -al xz-src-5.2.5-r0.corei7_64.rpm -rw-------. 1 mockbuild 1000 227560 Jun 3 09:59 2) Sign the rpm package $ rpmsign --addsign ... xz-src-5.2.5-r0.corei7_64.rpm 3) The size of signed rpm is 312208 bytes $ ls -al xz-src-5.2.5-r0.corei7_64.rpm -rw-------. 1 mockbuild 1000 312208 Jun 3 09:48 4) Run `rpm -Kv' failed with signature hdr data out of range $ rpm -Kv xz-src-5.2.5-r0.corei7_64.rpm xz-src-5.2.5-r0.corei7_64.rpm: error: xz-src-5.2.5-r0.corei7_64.rpm: signature hdr data: BAD, no. of bytes(88864) out of range >From 1) and 3), the size of signed rpm package increased 312208 - 227560 = 84648, so the check of dl_max (64KB,65536) is not enough. As [1] said: This also means the signature header can be MUCH bigger than ever before,so bump up the limit (to 64MB, arbitrary something for now) So [1] missed to multiply by 1024. [1] https://github.com/rpm-software-management/rpm/commit/f558e886050c4e98f6cdde391df679a411b3f62c (From OE-Core rev: 8359bdd60afafd80d354f7f40ed648643d8db292) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* classes/buildhistory: capture package configJan Luebbe2020-06-041-0/+3
| | | | | | | | | | | | As the PACKAGECONFIG variable has a large influence on the resulting package sizes and dependencies, it's useful to capture it in the recipe-level buildhistory. This makes it straightforward to analyze the impact of PACKAGECONFIG changes on the resulting image size. (From OE-Core rev: 189fae9f2df58759e9d66a3877c9ef30df4854bf) Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* buildstats.bbclass: Do not recalculate build start timeJunling Zheng2020-06-041-1/+1
| | | | | | | | | | The build start time is recorded in __timedata_build, which we should use rather than recalculating it. (From OE-Core rev: b723e9a4de67f33f61f2e7fe36ea451a46840b3e) Signed-off-by: Junling Zheng <zhengjunling@huawei.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* buildstats.bbclass: Remove useless variablesJunling Zheng2020-06-041-2/+0
| | | | | | | | | Remove useless variables bn and bsdir in write_task_data(). (From OE-Core rev: de26d6ce9d2154b5bb51491d9f4bd590cb5a0fc7) Signed-off-by: Junling Zheng <zhengjunling@huawei.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cogl: point to correct HOMEPAGEKonrad Weihmann2020-06-041-1/+1
| | | | | | | | | As the previousy set wasn't reachable anymore (From OE-Core rev: 3ae0aa1df25c8c7511950c6fc965955bdb205cd2) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxt: fix whitespacesKonrad Weihmann2020-06-041-2/+2
| | | | | | | | | remove unnecessary whitespace and line breaks (From OE-Core rev: dd41594cb8340fb1f4df5822f42c4742d720805b) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gtk-doc: remove trailing whitespaceKonrad Weihmann2020-06-041-1/+1
| | | | | | | | | remove unnecessary trailing whitespace (From OE-Core rev: 237e03e7a62c713f9eee9e853b0b452a3260b512) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cairo: remove trailing whitespaceKonrad Weihmann2020-06-041-1/+1
| | | | | | | | | Remove trailing whitespaces after line continuation (From OE-Core rev: b44a30b7443f271771665c9282ec4cd14e57678b) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libjpeg-turbo: whitespace fixesKonrad Weihmann2020-06-041-2/+2
| | | | | | | | | Added the proper amount of blanks around equation-signs (From OE-Core rev: 3ab229aafc62e039662adc1c89637ba9c5d4016c) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* debianutils: whitespace fixesKonrad Weihmann2020-06-041-8/+8
| | | | | | | | | Added whitespaces around equation-signs (From OE-Core rev: db9275d565bf1daa01825239909620751a6f0967) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vte: Pack ${libexecdir}/vte-urlencode-cwd to vte-promptAndreas Müller2020-06-041-1/+4
| | | | | | | | | | | | | | | Have vte-prompt in my images. Since upgrade 0.60.2 all terminals complain with: | bash: /usr/libexec/vte-urlencode-cwd: No such file or directory Grepping sources shows that vte.csh and vte.sh are the only callers of vte-urlencode-cwd. Both are installed by vte-prompt so move vte-urlencode-cwd where it's used. (From OE-Core rev: 1ea62721b1c06a77b18cf210ee437c292f58104b) Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cve-check: include epoch in product version outputRalph Siemsen2020-06-041-1/+1
| | | | | | | | | | | | In the generated cve.log files, include the epoch in the product version. This better matches how versions are displayed elsewhere, in particular the bb.warn("Found unpatched CVE...") that appears on the terminal when CVEs are found. (From OE-Core rev: e1c3c0b6e5b01304e2127f5058986697e82adf93) Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/targetcontrol: Rework exception handling to avoid warningsRichard Purdie2020-06-042-5/+5
| | | | | | | | | | | | | | | | We're seeing: WARNING: bitbake/lib/bb/cookerdata.py:136: ResourceWarning: unclosed file <_io.FileIO name='tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20200601181912' mode='ab' closefd=True which can only be caused by the qemu.stop() method not being called. Tweak the error handling to fix the blanket exception handler which is likely meaning this function isn't getting called. (From OE-Core rev: ee707090848d793e3b2d82dd3861ae22222682c0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cairo: Do not try to remove nonexistent directoriesPeter Kjellerstedt2020-06-041-2/+4
| | | | | | | | | | | | | | | Commit 0e1f8fa0 (bitbake.conf: propagate 'opengl' DISTRO_FEATURE to native/nativesdk from target) changed the default PACKAGECONFIG for native and nativesdk so that it becomes empty unless "x11" is in DISTRO_FEATURES since "trace" was also removed (propbably unintentionally). This highlighted than an empty PACKAGECONFIG would lead to a build failure since /usr/bin is never created under these conditions, but the recipe still tried to remove it. (From OE-Core rev: 9bb2268677ac8f0c97433bf1f04555abe88028a9) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* logrotate: Drop obsolete setting/commentRichard Purdie2020-06-041-7/+0
| | | | | | | | | The comment applies to an old version and the WORKDIR setting matches the default so drop it. (From OE-Core rev: 7cc4c0e7665111616c7e8a1dc512b8d9022ca664) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* maintainers: Update Ross' email addressRichard Purdie2020-06-041-63/+63
| | | | | | | | Update Ross' address to a valid one. (From OE-Core rev: 22e1605ce45482c49d06a7c56a46b71f76955e31) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lz4: disable static libraryAlexander Kanavin2020-06-041-1/+1
| | | | | | | | | | | It was found to be built in a non-reproducible way. [YOCTO #13925] (From OE-Core rev: f8f3f03e7ffcefdb6a97b747a26276dec4bfa77c) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sysfsutils: rem leftover settings for libsysfs-devKonrad Weihmann2020-06-041-2/+0
| | | | | | | | | | | 22af6a2595dbec98ce4a2e3b1324ad8d400390ad removed the PACKAGES setting, but left the FILES-assignments of libsysfs-dev and -staticdev. As these have no use anymore they can be safely removed (From OE-Core rev: 941cc0cd0a69e95ca571a9a8cb0732bb06fa2b3a) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xinetd: switch to a maintained opensuse forkAlexander Kanavin2020-06-041-4/+2
| | | | | | | | | Updating to the latest release will be done later. (From OE-Core rev: 1e34883cf5ccfbde498c1b2b5afc1e26c35b1d3a) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pulseaudio: exclude pre-releases from version checksAlexander Kanavin2020-06-041-0/+1
| | | | | | | (From OE-Core rev: 0dcca58a19979f2441ad3a0beb090ba79e6234e9) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* asciidoc: bump PV to 8.6.10Alexander Kanavin2020-06-041-0/+0
| | | | | | | | | | SRCREV is unchanged, as it already points to a post-8.6.10 commit. (this was overlooked when asciidoc was switched to a py3 port) (From OE-Core rev: 7c3cf5afeb22d7dee617904d47ce6dd5fad0c2e0) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* apt: update to 1.8.2.1Alexander Kanavin2020-06-0433-851/+1010
| | | | | | | | | I took the opportunity to rewrite the recipe from scratch; there was just too much baggage in it. (From OE-Core rev: f058272de9cba188d96940c8c921cf31727fe4d1) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* help2man-native: update to 1.47.15Alexander Kanavin2020-06-041-3/+2
| | | | | | | | License-Update: http changed to https (From OE-Core rev: aa20321f086a4283ce8279eed023618f65b2576d) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libcpre2: update 10.34 -> 10.35Alexander Kanavin2020-06-042-77/+3
| | | | | | | | | | | | | | | Replace pcre-cross.patch with the (default) option to use pre-built tables; the README says it's ok, and recommended in cross-compile situations. The option was in the recipe from the start and neither the commit that adds the recipe, nor the patch to make it work explain why. License-Update: copyright years (From OE-Core rev: df85581e8ac01183b13dd7c3e926ee93f50214f2) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ethtool: upgrade 5.4 -> 5.6Alexander Kanavin2020-06-043-8/+43
| | | | | | | (From OE-Core rev: 081122f0413a547842a41860c270713201c168ac) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mpg123: fix upstream version checkAlexander Kanavin2020-06-041-0/+2
| | | | | | | (From OE-Core rev: ada73fe8eb4953bee585dc6948d270ebfc584151) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shared-mime-info: fix upstream version checkAlexander Kanavin2020-06-041-3/+0
| | | | | | | | | | Upstream has tagged a new 2.0 release properly, so no special arrangements are needed to pick that up. (From OE-Core rev: 6bf01986a07084a825db9189e26fc7cb0e588821) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meson: upgrade 0.53.2 -> 0.54.2Alexander Kanavin2020-06-0410-99/+81
| | | | | | | | | | Drop 0001-mesonbuild-environment.py-check-environment-for-vari.patch as upstream has refactored the code. (From OE-Core rev: 1264edce86cafaa64428bb42844437ac4de7df3a) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libmodulemd: update 2.9.2 -> 2.9.4Alexander Kanavin2020-06-042-28/+6
| | | | | | | | | | Replace 0002-meson.build-do-not-install-python-gi-bindings.patch with an explicitly set meson option. (From OE-Core rev: 5e87c1e89fa1311c0bbb44c45f419e5f302a1e0d) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* json-c: update 0.13.1 - > 0.14Alexander Kanavin2020-06-042-53/+3
| | | | | | | (From OE-Core rev: caf64f85b5c57d886f3c4e5f295b12d93dd6c384) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* jquery: update to 3.5.1Alexander Kanavin2020-06-041-4/+4
| | | | | | | (From OE-Core rev: d1842007c56cfcac67e8c7fb91638a411b8f27f5) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnu-config: update to latest revisionAlexander Kanavin2020-06-041-2/+2
| | | | | | | (From OE-Core rev: ac363279c40ac34f64ef97eabf9c364a00473172) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cmake: update 3.16.5 -> 3.17.3Alexander Kanavin2020-06-045-13/+12
| | | | | | | | License-Update: copyright years (From OE-Core rev: d28a97792f31e3de73a2f35ace16599c4295738d) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bison: 3.5.4 -> 3.6.2Alexander Kanavin2020-06-042-47/+2
| | | | | | | | | | Drop dont-depend-on-help2man.patch.patch, as pre-build manpages are already packaged into source tarballs. (From OE-Core rev: 59bbf308c28e841d0c91d8d01bf9cd31987c2b8a) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* automake: 1.16.1 -> 1.16.2Alexander Kanavin2020-06-042-11/+11
| | | | | | | (From OE-Core rev: 70db6675aabdda6465912a1c1f7a2a7391201517) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ptest-runner: fix upstream version checkAlexander Kanavin2020-06-041-0/+1
| | | | | | | (From OE-Core rev: fd180d21ec907726b2fcd7709b93cb8e464390d5) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gettext: update 0.20.1 -> 0.20.2Alexander Kanavin2020-06-0425-370/+319
| | | | | | | (From OE-Core rev: 2419443c02496c2f58f2d6ce093a3c2aa71eedb4) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ppp: update 2.4.7 -> 2.4.8Alexander Kanavin2020-06-048-570/+78
| | | | | | | | | | | | | Drop patches: 0001-ppp-Fix-compilation-errors-in-Makefile.patch - issue fixed upstream 0001-pppoe-include-netinet-in.h-before-linux-in.h.patch - backport cifdefroute.patch - superseded by new default route metric option ppp-2.4.7-DES-openssl.patch - openssl support added upstream (From OE-Core rev: 406895464980f62744193841651c436c6e463a37) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libexif: update to 0.6.22Alexander Kanavin2020-06-045-236/+19
| | | | | | | (From OE-Core rev: 76e8c645cb2568c2dfa014af0eeac36d8f8b60ff) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* babeltrace: correct the git SRC_URIAlexander Kanavin2020-06-042-2/+2
| | | | | | | | | The previous one seems to be gone. (From OE-Core rev: b9995f8a8f08bbcb1e0915a7420ec7fb5623d604) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rng-tools: upgrade 6.9 -> 6.10Alexander Kanavin2020-06-043-4/+100
| | | | | | | (From OE-Core rev: 368405e33a3db97a85cfd4cb06cb5a105b924d3e) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libunwind: upgrade 1.3.1 -> 1.4.0Alexander Kanavin2020-06-042-12/+19
| | | | | | | (From OE-Core rev: 494b3c8bf73b8320fc68203d2dff5d5d3f93464e) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libical: upgrade 3.0.7 -> 3.0.8Alexander Kanavin2020-06-041-2/+2
| | | | | | | (From OE-Core rev: ac561e63479716574ee980b28644415486b13fda) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libcap: upgrade 2.33 -> 2.34Alexander Kanavin2020-06-042-28/+3
| | | | | | | (From OE-Core rev: c6bf01bb5e09de205f324211090b52d81323b4ab) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* puzzles: upgrade to latest revisionAlexander Kanavin2020-06-041-1/+1
| | | | | | | (From OE-Core rev: f790152f7b22301c4eb92995e382dfc2e49bfa72) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* x264: upgrade to latest revisionAlexander Kanavin2020-06-041-1/+1
| | | | | | | (From OE-Core rev: 883ef0080a0e85d5fc3f4c7cff22d0a4360b85c8) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>