Ross Burton
8569cb2758
file: explicitly disable seccomp
...
file will automatically enable seccomp if the seccomp headers are available, but
the build will fail on Opensuse Tumbleweed because the include paths are wrong.
Enabling seccomp is a bad idea because it interacts badly with pseudo (causing
build failures), so explicitly and globally disable seccomp.
(From OE-Core rev: a752faa152df031df5acaa40491299ac115109a4)
Signed-off-by: Ross Burton <ross.burton@intel.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Eugene Smirnov
8d619931ee
wic/rawcopy: Support files in sub-directories
...
If the source file is located in a subdirectory of DEPLOY_DIR
rawcopy will currently fail in sparse_copy function on
open(dst_fname, 'wb'), as the parent directory for destination
file does not exist.
This patch helps to avoid that by recursively creating
parent directories.
(From OE-Core rev: 073c435644091c2801e45c6d02afa917de575082)
Signed-off-by: Eugene Smirnov <evgenii.smirnov@here.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Hongxu Jia
c8535ece54
openssh: fix CVE-2019-16905
...
Backport a patch from upstream to fix CVE-2019-16905
a546b17bba
(From OE-Core rev: 8bd4b87071c073a0e4d265bc00df34684a355eff)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Stefan Agner
b236454b83
uninative: check .done file instead of tarball
...
In case multiple builds share UNINATIVE_DLDIR's location, one build
might be in the process of downloading the tarball while another is
just checking whether the tarball exists. Check for the done file
instead and rely on the fetchers lockfile mechanism in case two
builds are running.
(From OE-Core rev: a1c95580549cb4f77601e62c7f026b19c752d853)
Signed-off-by: Stefan Agner <stefan.agner@toradex.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Ross Burton
80739381b1
sanity: check the format of SDK_VENDOR
...
If SDK_VENDOR isn't formatted as -foosdk and is instead for example -foo-sdk
then the triple that are constructed are not in fact triples, which results in
mysterious compile errors.
Check in sanity.bbclass so this failure is detected early.
[ YOCTO #13573 ]
(From OE-Core rev: b0efd8d4d0dbc30e6505b42f5603f18fa764d732)
Signed-off-by: Ross Burton <ross.burton@intel.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Yi Zhao
3bdce139ff
libsdl2: fix CVE-2019-13616
...
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2019-13616
Patch from:
https://hg.libsdl.org/SDL/rev/e7ba650a643a
(From OE-Core rev: 70b9cdf86b9c5ed14937500619387a890a57ef20)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Alistair Francis
4bdf118a74
qemuriscv64: Build smode U-Boot
...
(From OE-Core rev: 5b7e78f6389e1659cbf22499e17ef34b2b813a08)
Signed-off-by: Alistair Francis <alistair.francis@wdc.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Alistair Francis
fdc1ccbb96
u-boot: Bump from 2019.07 to 2019.10
...
(From OE-Core rev: 460f877adbfaf2ae980228c9d545886f82656c38)
Signed-off-by: Alistair Francis <alistair.francis@wdc.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Alistair Francis
65cc5c2455
opensbi: Bump from 0.4 to 0.5
...
(From OE-Core rev: 927e16e289292d7bc4dad10d0ed722d8705fff48)
Signed-off-by: Alistair Francis <alistair.francis@wdc.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Robert Yang
123932ceaa
bluez5: Fix for --enable-btpclient
...
Fixed:
PACKAGECONFIG_append_pn-bluez5 = ' btpclient'
$ bitbake bluez5
btpclient.c:2834:7: error: 'SIGINT' undeclared (first use in this function)
(From OE-Core rev: e72cd2950b38a5fc45908c9601679e601cf60559)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Wenlin Kang
b514e1f0be
sysstat: fix CVE-2019-16167
...
This commit is another part of CVE-2019-16167, please see
https://github.com/sysstat/sysstat/issues/232 .
(From OE-Core rev: 586c045eb81b79200b46bf743f5d3fdb5f68c12d)
Signed-off-by: Wenlin Kang <wenlin.kang@windriver.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Mattias Hansson
911d784d9c
base.bbclass: add dependency on pseudo from do_prepare_recipe_sysroot
...
do_prepare_recipe_sysroot may perform groupadd, which requires pseudo.
However, do_prepare_recipe_sysroot does not depend on pseudo explicitly,
which sometimes causes a build error when building a recipe that adds
groups.
This issue only occurs when executing do_prepare_recipe_sysroot for a
recipe that adds groups before finishing a task that depends on pseudo
for a recipe that doesn't add groups.
(From OE-Core rev: 427320d7621846d57649af46bf57c88f86cac612)
Signed-off-by: Mattias Hansson <mattihn@axis.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-19 23:18:33 +01:00
Ross Burton
52a625582e
kernel-dev: don't use _append +=
...
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:17:58 +01:00
Khem Raj
e2a0c001db
glib-2.0: Fix build with clang compiler
...
(From OE-Core rev: 0ad21fe63f6873805762880cca4c37dbe71ee473)
Signed-off-by: Khem Raj <raj.khem@gmail.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:12 +01:00
Khem Raj
1144b124f3
llvm: Update to 9.0.0
...
libOptRemarks has been renamed as libRemarks
RISC-V backend is now supported
(From OE-Core rev: 7f4870132ece9efa7f1404e2620a2e05055bca12)
Signed-off-by: Khem Raj <raj.khem@gmail.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:12 +01:00
Zang Ruochen
52e5e97ab4
iso-codes:upgrade 4.3 -> 4.4
...
(From OE-Core rev: 8773a85db9b6f844910960cd1b56853867b6ab1c)
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:12 +01:00
Zang Ruochen
e57836909b
fribidi:upgrade 1.0.5 -> 1.0.7
...
-fribidi/meson.patch
Removed since this is included in 1.0.7.
(From OE-Core rev: 79297c6041342f4cb67131d08368a103d9791a9a)
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:12 +01:00
Zang Ruochen
3872716d1e
libxfont2:upgrade 2.0.3 -> 2.0.4
...
(From OE-Core rev: 88cbc6b620752b896fc6723815c7fff90d84b8f4)
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:12 +01:00
Zang Ruochen
d985c957eb
msmtp:upgrade 1.8.5 -> 1.8.6
...
(From OE-Core rev: c20ba784c9cc764b98372791b1a1432d389c3cbf)
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:12 +01:00
Zang Ruochen
87a6f9cb60
librepo:upgrade 1.10.5 -> 1.10.6
...
(From OE-Core rev: 622362d6d3e28bf4926576b19466c921d8337867)
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:12 +01:00
Zang Ruochen
f653e846e5
expat:upgrade 2.2.8 -> 2.2.9
...
(From OE-Core rev: 9650eefe45b6b5bec014245d89529b7f1b2ce172)
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:12 +01:00
Khem Raj
81544697fe
gnu-efi: Do not use gcc-only options when building with clang
...
(From OE-Core rev: 385126d1f1cc6af5882b9a926295f4f54e657613)
Signed-off-by: Khem Raj <raj.khem@gmail.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
f937d49ab3
libpcap: Clarify BSD license variant
...
The License of libpcap is BSD-3-Clause.
(From OE-Core rev: 39e7590db64f20f5280fc58e7a525771bdd1671d)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
f56347151b
p11-kit: Clarify BSD license variant
...
The license of p11-kit is BSD-3-Clause.
(From OE-Core rev: 85ed4e8ccd4ff02b75502587cff617f9d7a08801)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
ea819098cb
libpcre: Clarify BSD license variant
...
The license of the two libraries are BSD-3-Clause.
(From OE-Core rev: 04849897a3152d0fe7ffa2e86e6bf1a6faba8e88)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
774c456531
libwebp: Clarify BSD license variant
...
The license of libwebp is BSD-3-Clause.
(From OE-Core rev: 80e8ee5e73066acc6e5b7dde708e7069bb549ce3)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
c830498f90
speexdsp: Clarify BSD license variant
...
The license of speexdsp is BSD-3-Clause.
(From OE-Core rev: fc55e9819d8e3d4185615e2f1267a2ae537c62f4)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
546521830b
speex: Clarify BSD license variant
...
The license of speex is BSD-3-Clause.
(From OE-Core rev: 482e8277b9a4efac9e4ff06f2c02b5049985990c)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
976ce7fb02
libtheora: Clarify BSD license variant
...
The license of libtheora is BSD-3-Clause.
(From OE-Core rev: 9912fabffa43d8797562f20f6e2bd5dc738b800d)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
59f361aa2c
libvorbis: Clarify BSD license variant
...
The license of libvorbis is BSD-3-Clause.
(From OE-Core rev: 27a73929ee51bc7d78cc29ff800a7537f8718c54)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
b1150666a0
libogg: Clarify BSD license variant
...
The license of libogg is BSD-3-Clause.
(From OE-Core rev: 92940808022ded20af00c4898a4e8c29111bd2b7)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
771e367d4a
libxpm: Clarify BSD license variant
...
The license of libxpm is MIT.
(From OE-Core rev: 27e99076315a0539771e7b40776a885e62610bb9)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
3562af18f0
tcp-wrappers: Clarify BSD license variant
...
The license of tcp-wrappers is BSD-1-Clause.
(From OE-Core rev: de15316e77f8a91122a0af196dc652d10c895223)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
df97d5ae1c
rpcbind: Clarify BSD license variant
...
The license of rpcbind is BSD-3-Clause.
(From OE-Core rev: a91163844e4de16eabe5a1b3ad113a56f6e8d595)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
d98da1c237
lighttpd: Clarify BSD license variant
...
The license of lighttpd is BSD-3-Clause.
(From OE-Core rev: 9bd43b930645ddba81a8b209e2d15315b9f42705)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
5ef5c872fa
pbzip2: Clarify BSD license variant
...
The license of pbzip2 is BSD-4-Clause.
(From OE-Core rev: 3d89828b6ec43c2f5b0904f9ea12435525ccea77)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
57454e4487
libarchive: Clarify BSD license variant
...
The license of libarchive is BSD-2-Clause.
(From OE-Core rev: f63d9b84b478edc94c19c99f93c98c66830e9d80)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
917900ed83
libtirpc: Clarify BSD license variant
...
The license of libtirpc is BSD-3-Clause.
(From OE-Core rev: 72998a9d4cd05e4276bc974946d285d05970391e)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
d156f7e973
python-smmap: Clarify BSD license variant
...
The license of python-smmap is BSD-3-Clause.
(From OE-Core rev: cc50baa6f78a6205e33af04375019b71863c1a48)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
874701930b
python-async: Clarify BSD license variant
...
The license of python-async is BSD-3-Clause.
(From OE-Core rev: eac9b021e2de0922b0f8bf65a71ae4ce8bdc97b1)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
87300bd679
file: Clarify BSD license variant
...
The license of file is BSD-2-Clause.
(From OE-Core rev: 2bafc93d58adc9e869b873737e982192b191d1a4)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
fb8613fc4e
flex: Clarify BSD license variant
...
The license of flex is BSD-2-Clause.
(From OE-Core rev: e8118c5cf205e8bbb005486d7b3e1f7be1e27aac)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
6b475f4afb
cmake: Clarify BSD license variant
...
The license of cmake is BSD-3-Clause
(From OE-Core rev: 8621e32957ae67d096c10575a4046af372af60e9)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
c4c8725542
wpa-supplicant: Clarify BSD license variant
...
The license of wpa-supplicant is BSD-3-Clause
(From OE-Core rev: 95507898ad6a7b88c83ef376c1cb8b3b3a685c96)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Christophe PRIOUZEAU
72db0053d6
ovmf: Clarify BSD license variant
...
The license of ovmf is BSD-2-Clause
(From OE-Core rev: 8d53cbe59a10c065417ef6e87e657a5b590ea344)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Zang Ruochen
bef9a115ca
sqlite3:upgrade 3.29 -> 3.30
...
(From OE-Core rev: a1b798c5b1c62921eb3439e9fe859f90258cba3b)
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Peiran Hong
927e1549af
dbus: Change path of system_bus_socket from /var/run/dbus/ to /run/dbus/
...
Fixed a warning message during startup caused by referencing the legacy
directory /var/run instead of /run. An extra parameter is passed to the
configure script to achiveve this. Upstream cannot provide a fix due to
another Linux distribution (Slackware) uses /var/run and /run as
different directories.
Refer to https://gitlab.freedesktop.org/dbus/dbus/issues/282 for
details.
(From OE-Core rev: f31896504c0e5619f77555689e87b8324f9ccbd8)
Signed-off-by: Peiran Hong <peiran.hong@windriver.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Joerg Vehlow
7ed5aa23c7
runqemu: Remove disabling of high resolution timer
...
The option 'highres=off' sneaked itself into the runqemu script for all
configurations, where the root filesystem type is not 'cpio' or 'cpio.gz'.
See: https://bugzilla.yoctoproject.org/show_bug.cgi?id=13590
(From OE-Core rev: 3ecb6744402332f1ad143eb1eb6a94143e1700c8)
Signed-off-by: Joerg Vehlow <joerg.vehlow@aox-tech.de >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Maxime Roussin-Bélanger
4ee045ce0b
meta: add missing description in recipes-extended
...
(From OE-Core rev: 3a4a037450f2998342818248957e7500950b0a66)
Signed-off-by: Maxime Roussin-Bélanger <maxime.roussinbelanger@gmail.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00
Maxime Roussin-Bélanger
4c0be0ec31
shadow: update homepage and bugtracker
...
The previous homepage and issue tracker is no longer available.
Remove some trailing whitespace
(From OE-Core rev: 1c60c5744b02c5c4eefb240923db5c4cd7959606)
Signed-off-by: Maxime Roussin-Bélanger <maxime.roussinbelanger@gmail.com >
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org >
2019-10-15 14:16:11 +01:00