Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | botan: Add recipe | Khem Raj | 2018-09-29 | 1 | -0/+55 | |
| | | | | | | | | botan is a common crypto library used by various infrastructures e.g. qtcreator chromium etc. Its beneficial to build it once for the system and let apps use it if possible Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | mongodb: Consolidate COMPATIBLE_HOST | Khem Raj | 2018-09-29 | 1 | -13/+6 | |
| | | | | | | | | Its only available on fewer arches so express that via COMPATIBLE_HOST wiredtiger is only for 64bit, so add it directly to config args based on bitness Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | libblockdev: correct PACKAGECONFIG | Hongxu Jia | 2018-09-27 | 1 | -4/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | Since commit `6cc057d libblockdev: make various features optional' applied, it introduced issues: 1. As configure.ac told us, mpath/dm/lvm/lvm-dbus should have the same depends, runtime depends [configure.ac] |AS_IF([test "x$with_dm" != "xno" -o "x$with_lvm" != "xno" -o "x$with_lvm_dbus" != "xno" -o "x$with_mpath" != "xno"], | [LIBBLOCKDEV_PKG_CHECK_MODULES([DEVMAPPER], [devmapper >= 1.02.93])], | []) [configure.ac] 2. Remove duplicated PACKAGECONFIG tags `lvm-dbus' 3. Remove `lvm-dbus' from PACKAGECONFIG since recipe lvm2 does not support dbus 4. Align with previous configure options, we should add `mpath' Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | php: fix linker errors by setting `ac_cv_func_dlopen=no` | Max Kellermann | 2018-09-27 | 1 | -1/+1 | |
| | | | | | | | | | | | | | The autoconf variable `ac_cv_func_dlopen` controls whether `dlopen()` is available without linking `libdl.so`. But that doesn't work: tmp-glibc/work/aarch64-oe-linux/php/7.2.10-r0/recipe-sysroot-native/usr/bin/aarch64-oe-linux/../../libexec/aarch64-oe-linux/gcc/aarch64-oe-linux/8.2.0/ld: ext/sqlite3/libsqlite/sqlite3.o: undefined reference to symbol 'dlsym@@GLIBC_2.17' tmp-glibc/work/aarch64-oe-linux/php/7.2.10-r0/recipe-sysroot-native/usr/bin/aarch64-oe-linux/../../libexec/aarch64-oe-linux/gcc/aarch64-oe-linux/8.2.0/ld: tmp-glibc/work/aarch64-oe-linux/php/7.2.10-r0/recipe-sysroot/lib/libdl.so.2: error adding symbols: DSO missing from command line Leave `ac_cv_lib_dl_dlopen=yes`, because that's the one which controls whether `-ldl` is needed. Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | php: add "--without-sqlite3 --without-pdo-sqlite" | Max Kellermann | 2018-09-27 | 1 | -1/+1 | |
| | | | | | | | | Removing "sqlite3" from `PACKAGECONFIG` doesn't actually disable SQLite, because those options default to "yes". It just switches from the system SQLite to PHP's internal SQLite copy. Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | efivar: make CC_FOR_BUILD value complete | Mingli Yu | 2018-09-27 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | Update CC_FOR_BUILD=${BUILD_CC} to CC_FOR_BUILD="${BUILD_CC}" to guarantee the BUILD_CC value passed to CC_FOR_BUILD completely to avoid below build failure when ccache enabled: | NOTE: make -j 48 -C src makeguids CC_FOR_BUILD=ccache gcc | make: Entering directory '/mybuild/tmp-glibc/work/x86_64-linux/efivar-native/0.36-r0/git/src' | ccache -isystem/mybuild/tmp-glibc/work/x86_64-linux/efivar-native/0.36-r0/recipe-sysroot-native/usr/include -O2 -pipe ... -DEFIVAR_BUILD_ENVIRONMENT -o makeguids makeguids.c guid.c -ldl | ccache: invalid option -- 'i' Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | kernel-selftest: Remove bpf on x86/32bit | Khem Raj | 2018-09-26 | 1 | -0/+1 | |
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | eventlog: remove recipe | Mingli Yu | 2018-09-26 | 1 | -23/+0 | |
| | | | | | | | | | | | | | | | | | eventlog is not external lib anymore and it has been already integrated to syslog-ng as below commit in syslog-ng repo https://github.com/balabit/syslog-ng.git -------------------------------------- Author: kokan <peter.kokai@balabit.com> Date: Tue Nov 21 22:16:49 2017 +0100 eventlog: now part of the project, not external lib -------------------------------------- Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | php5: 5.6.36 -> 5.6.38 | Hongxu Jia | 2018-09-26 | 2 | -2/+1288 | |
| | | | | | | | | | | | | | | | | 1. Support openssl 1.1.x 2. 5.6.38 ChangeLog (http://php.net/ChangeLog-5.php#5.6.38) - Fixed bug #76582 (XSS due to the header Transfer-Encoding: chunked). - Fixed bug #76423 (Int Overflow lead to Heap OverFlow in exif_thumbnail_extract of exif.c). (CVE-2018-14883) - Fixed bug #76557 (heap-buffer-overflow (READ of size 48) while reading exif data). (CVE-2018-14851) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | libmms: drop obsolete "Requires:glib-2.0" from pkg-config file | Max Kellermann | 2018-09-26 | 1 | -0/+8 | |
| | | | | | Signed-off-by: Max Kellermann <max.kellermann@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | protobuf: make python-protobuf dependency optional and default to off | Paul Eggleton | 2018-09-25 | 1 | -2/+5 | |
| | | | | | | | | | | | | | | | | | | | | A dependency on python-protobuf was added in commit 5f6fcfd36272768a3ff9078c07c572cf5dc01ccd for the sole purpose of providing a ptest, however python-protobuf is in meta-python and thus this means that meta-oe would depend on meta-python by default (assuming your distro enables ptest by default), and we don't want that - meta-oe isn't supposed to depend upon any layer other than openembedded-core. Luckily we can still have a ptest even without the python support, so add a PACKAGECONFIG and leave it disabled by default. Note: the PACKAGECONFIG here is not particularly useful since it's only about what goes into the -ptest package and thus also the dependency. I contemplated just using LANG_SUPPORT instead, but PACKAGECONFIG does have the advantage that it's introspectable and fairly well understood so in the end I went with it. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | mozjs: upgrade to 52.9.1 | Hong Liu | 2018-09-25 | 1 | -3/+3 | |
| | | | | | | | | | | Upgrade mozjs from 52.8.1 to 52.9.1 Signed-off-by: Hong Liu <hongl.fnst@cn.fujitsu.com> renamed: mozjs_52.8.1.bb -> mozjs_52.9.1.bb Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | nodejs: upgrade to 8.12.0 | Hong Liu | 2018-09-25 | 1 | -2/+2 | |
| | | | | | | | Upgrade nodejs from 8.11.4 to 8.12.0. Signed-off-by: Hong Liu <hongl.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | umip: support openssl 1.1.x | Hongxu Jia | 2018-09-25 | 2 | -1/+90 | |
| | | | | | | | | Long time no maintain from upstream since 2013, backport a fix from openSUSE Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | mailx: support openssl 1.1.x | Hongxu Jia | 2018-09-25 | 2 | -1/+74 | |
| | | | | | | | | Long time no maintain from upstream since 2013-06-04, backport a fix from openSUSE Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | sip: Fix packaging so python module ends up in the right place. | Philip Balister | 2018-09-24 | 1 | -5/+31320 | |
| | | | | | | | * The patch is generated by diffing the last release with the sip Hg repo tip. Also have to run the build script to update configure.py. Signed-off-by: Philip Balister <philip@balister.org> | |||||
* | php: Upgrade 7.2.9 -< 7.2.10 | Changqing Li | 2018-09-24 | 2 | -3/+3 | |
| | | | | | | | | 1. Upgrade 7.2.9 -> 7.2.10 2. php 5.x not support valgrind config, so move it to php_7.x.bb Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | kernel-selftest: Newer kernels 4.18+ need llc from llvm | Khem Raj | 2018-09-24 | 1 | -1/+1 | |
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | lvm2: Add RDEPEND on lvm2 to lvm2-udevrules | Alex Kiernan | 2018-09-24 | 1 | -0/+1 | |
| | | | | | | | | | | | Some of the rules installed as part of lvm2-udevrules need to run dmsetup, so add the dependency on lvm2 in order to ensure these can execute correctly. This fixes cryptsetup hanging when creating volumes. Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | openct: Remove apparently unnecessary pkg_postinst. | Patrick Vacek | 2018-09-24 | 1 | -4/+0 | |
| | | | | | | This prevents an error about "Postinstall scriptlets". Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | xerces-c: split one dpg package | Hongxu Jia | 2018-09-24 | 1 | -6/+3 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | upower: avoid scary messages in journal/syslog | Andreas Müller | 2018-09-24 | 2 | -1/+35 | |
| | | | | | | | | | | | | When inserting/removing USB device not handled by upower (Mouse/Keyboard/USB-Sticks..) upower spams on later kernels: | Sep 17 15:38:46 imx6qdl-variscite-som upowerd[553]: unhandled action 'bind' on /sys/devices/soc0/soc/2100000.aips-bus/2184200.usb/ci_hdrc.1/usb1/1-1/1-1.2 | Sep 17 15:38:46 imx6qdl-variscite-som upowerd[553]: unhandled action 'bind' on /sys/devices/soc0/soc/2100000.aips-bus/2184200.usb/ci_hdrc.1/usb1/1-1/1-1.2/1-1.2:1.0 | Sep 17 15:38:46 imx6qdl-variscite-som upowerd[553]: unhandled action 'bind' on /sys/devices/soc0/soc/2100000.aips-bus/2184200.usb/ci_hdrc.1/usb1/1-1/1-1.2/1-1.2:1.0/0003:41> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | libblockdev: make various features optional | Max Kellermann | 2018-09-24 | 1 | -7/+7 | |
| | | | | | Signed-off-by: Max Kellermann <max.kellermann@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | libmicrohttpd: add PACKAGECONFIG[https] | Max Kellermann | 2018-09-24 | 1 | -2/+3 | |
| | | | | | Signed-off-by: Max Kellermann <max.kellermann@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | syslog-ng: split one dpg package | Hongxu Jia | 2018-09-18 | 1 | -2/+2 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | pidgin: split one dpg package | Hongxu Jia | 2018-09-18 | 1 | -6/+3 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | mariadb: split one dpg package | Hongxu Jia | 2018-09-18 | 1 | -5/+4 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | postgresql: split one dpg package | Hongxu Jia | 2018-09-18 | 1 | -55/+19 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | dbench: split one dpg package | Hongxu Jia | 2018-09-18 | 1 | -2/+3 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | lmsensors: split one dpg package | Hongxu Jia | 2018-09-18 | 1 | -8/+7 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | v4l-utils: split one dpg package | Hongxu Jia | 2018-09-18 | 1 | -2/+3 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | fontforge: split one dpg package | Hongxu Jia | 2018-09-17 | 1 | -2/+3 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | wvstreams: split one dpg package | Hongxu Jia | 2018-09-17 | 1 | -8/+6 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | gpsd: split one dpg package | Hongxu Jia | 2018-09-17 | 1 | -3/+3 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | konkretcmpi: split one dpg package | Hongxu Jia | 2018-09-17 | 1 | -2/+3 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | scsirastools: split one dpg package | Hongxu Jia | 2018-09-17 | 1 | -5/+3 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | gnuplot: split one dpg package | Hongxu Jia | 2018-09-17 | 1 | -2/+4 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | isomd5sum: split one dpg package | Hongxu Jia | 2018-09-17 | 1 | -2/+3 | |
| | | | | | | | | | | | Multiple -dbg packages per recipe is not encouraged, and only one is recommended and the code only works properly in some cases for one. Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages requiring. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | syslog-ng: fix segment fault during startup on arm64 | Changqing Li | 2018-09-17 | 2 | -0/+76 | |
| | | | | | | | | | | | | | service start failed since segment fault on arch arm64, syslog-ng have a submodule ivykis, from ivykis V0.42, it use pthread_atfork, but for arm64, this symbol is not included by libpthread, so cause segment fault. refer systemd, replace pthread_atfork with __register_atfork to fix this problem. Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | mpv: Remove lua from packageconfig for aarch64 | Khem Raj | 2018-09-16 | 1 | -0/+2 | |
| | | | | | | luajit is not buildable on aarch64 Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | libdevmapper: Install dmsetup | Andrew Bresticker | 2018-09-14 | 2 | -6/+23 | |
| | | | | | | | | | | | | | Commit 6aa1dd223a140 ("lvm2/libdevmapper: fix invoking lvcreate failed") moved installation of dmsetup back to lvm2 from libdevmapper, but dmsetup had intentionally been moved to libdevmapper in commit 269d009a81d4 ("lvm2: libdevicemapper package needs udev rules and dmsetup"). Add it back to libdevmapper by explicitly installing it in do_install(), and refresh explicitly-do-not-install-libdm.patch so that we also explicitly do not install dmsetup as part of lvm2. Signed-off-by: Andrew Bresticker <abrestic@waymo.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | fbset-modes: drop allarch inherit | Martin Jansa | 2018-09-14 | 1 | -2/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * setting PACKAGE_ARCH to MACHINE_ARCH together with allarch doesn't work well anymore since: http://git.openembedded.org/openembedded-core/commit/?id=a23c482cab4f874f4a6a6889716123569eb5ece9 * fixes: === Comparing signatures for task do_configure.sigdata between qemux86 and qemuarm === ERROR: fbset-modes different signature for task do_configure.sigdata between qemux86 and qemuarm Task dependencies changed from: ['AR', 'AS', 'B', 'BASEDEPENDS', 'BUILD_AR', 'BUILD_AS', 'BUILD_AS_ARCH', 'BUILD_CC', 'BUILD_CCLD', 'BUILD_CC_ARCH', 'BUILD_CFLAGS', 'BUILD_CPP', 'BUILD_CPPFLAGS', 'BUILD_CXX', 'BUILD_CXXFLAGS', 'BUILD_FC', 'BUILD_LD', 'BUILD_LDFLAGS', 'BUILD_LD_ARCH', 'BUILD_NM', 'BUILD_OPTIMIZATION', 'BUILD_PREFIX', 'BUILD_RANLIB', 'BUILD_STRIP', 'CC', 'CCLD', 'CFLAGS', 'CLEANBROKEN', 'CONFIGURESTAMPFILE', 'CPP', 'CPPFLAGS', 'CXX', 'CXXFLAGS', 'DEPENDS', 'DISABLE_STATIC', 'DISTRO', 'EXTRA_OECONF', 'EXTRA_OEMAKE', 'FC', 'HOST_AS_ARCH', 'HOST_CC_ARCH', 'HOST_LD_ARCH', 'HOST_PREFIX', 'ICECC_AS', 'ICECC_CC', 'ICECC_CXX', 'ICECC_VERSION', 'ICECC_WHICH_AS', 'ICE_PATH', 'LC_ALL', 'LD', 'LDFLAGS', 'LOGFIFO', 'MAKE', 'MLPREFIX', 'NM', 'OBJCOPY', 'OBJDUMP', 'P', 'PACKAGECONFIG', 'PACKAGE_ARCH', 'PERL_HASH_SEED', 'PKG_CONFIG_DIR', 'PKG_CONFIG_DISABLE_UNINSTALLED', 'PKG_CONFIG_LIBDIR', 'PKG_CONFIG_PATH', 'PKG_CONFIG_SYSROOT_DIR', 'PKG_CONFIG_SYSTEM_INCLUDE_PATH', 'PKG_CONFIG_SYSTEM_LIBRARY_PATH', 'PN', 'PSEUDO_DISABLED', 'PV', 'PYTHONHASHSEED', 'QA_LOGFILE', 'QA_SANE', 'RANLIB', 'READELF', 'RECIPE_SYSROOT_NATIVE', 'S', 'SOURCE_DATE_EPOCH', 'STAGING_BASE_LIBDIR_NATIVE', 'STAGING_BINDIR', 'STAGING_DATADIR', 'STAGING_DIR_NATIVE', 'STAGING_INCDIR_NATIVE', 'STAGING_LIBDIR_NATIVE', 'STRINGS', 'STRIP', 'T', 'TARGET_ARCH', 'TARGET_AS_ARCH', 'TARGET_CC_ARCH', 'TARGET_CFLAGS', 'TARGET_CPPFLAGS', 'TARGET_CXXFLAGS', 'TARGET_LDFLAGS', 'TARGET_LD_ARCH', 'TARGET_OS', 'TARGET_PREFIX', 'TARGET_SYS', 'TARGET_VENDOR', 'TOOLCHAIN_OPTIONS', 'TZ', 'UNKNOWN_CONFIGURE_WHITELIST', 'base_bindir', 'base_dep_prepend', 'base_do_configure', 'base_libdir', 'base_libdir_native', 'base_prefix', 'base_sbindir', 'baselib', 'bbfatal_log', 'bbnote', 'bbwarn', 'bindir', 'bindir_cross', 'create_path', 'datadir', 'die', 'do_configure[umask]', 'do_qa_configure', 'docdir', 'exec_prefix', 'get_cross_kernel_cc', 'get_icecc', 'icecc_dep_prepend', 'icecc_dir', 'icecc_get_and_check_tool', 'icecc_get_external_tool', 'icecc_get_path_tool', 'icecc_get_tool', 'icecc_get_tool_link', 'icecc_is_allarch', 'icecc_is_cross_canadian', 'icecc_is_kernel', 'icecc_is_native', 'icecc_path', 'icecc_version', 'includedir', 'includedir_native', 'infodir', 'libdir', 'libdir_native', 'libexecdir', 'localstatedir', 'mandir', 'nonarch_base_libdir', 'nonarch_libdir', 'oe_runmake', 'oe_runmake_call', 'oldincludedir', 'package_qa_handle_error', 'package_qa_write_error', 'prefix', 'prefix_native', 'root_prefix', 'sbindir', 'servicedir', 'set_icecc_env', 'sharedstatedir', 'sysconfdir', 'systemd_system_unitdir', 'systemd_unitdir', 'systemd_user_unitdir', 'use_icecc'] to: ['ABIEXTENSION', 'AR', 'ARMPKGARCH', 'ARMPKGARCH_tune-armv5te', 'ARMPKGSFX_DSP', 'ARMPKGSFX_EABI', 'ARMPKGSFX_ENDIAN', 'ARMPKGSFX_FPU', 'ARMPKGSFX_THUMB', 'ARM_INSTRUCTION_SET', 'ARM_M_OPT', 'ARM_THUMB_OPT', 'ARM_THUMB_SUFFIX', 'AS', 'ASNEEDED', 'B', 'BASEDEPENDS', 'BASE_DEFAULT_DEPS', 'BUILD_AR', 'BUILD_AS', 'BUILD_AS_ARCH', 'BUILD_CC', 'BUILD_CCLD', 'BUILD_CC_ARCH', 'BUILD_CFLAGS', 'BUILD_CPP', 'BUILD_CPPFLAGS', 'BUILD_CXX', 'BUILD_CXXFLAGS', 'BUILD_FC', 'BUILD_LD', 'BUILD_LDFLAGS', 'BUILD_LD_ARCH', 'BUILD_NM', 'BUILD_OPTIMIZATION', 'BUILD_PREFIX', 'BUILD_RANLIB', 'BUILD_STRIP', 'CC', 'CCLD', 'CFLAGS', 'CLEANBROKEN', 'CONFIGURESTAMPFILE', 'CPP', 'CPPFLAGS', 'CXX', 'CXXFLAGS', 'DEBUG_BUILD', 'DEBUG_FLAGS', 'DEBUG_OPTIMIZATION', 'DEBUG_PREFIX_MAP', 'DEFAULTTUNE', 'DEPENDS', 'DISABLE_STATIC', 'DISTRO', 'EXTENDPE', 'EXTRA_OECONF', 'EXTRA_OEMAKE', 'FC', 'FULL_OPTIMIZATION', 'GCCPIE', 'HOST_AS_ARCH', 'HOST_CC_ARCH', 'HOST_LD_ARCH', 'HOST_PREFIX', 'ICECC_AS', 'ICECC_CC', 'ICECC_CXX', 'ICECC_VERSION', 'ICECC_WHICH_AS', 'ICE_PATH', 'LC_ALL', 'LD', 'LDFLAGS', 'LIBCEXTENSION', 'LINKER_HASH_STYLE', 'LOGFIFO', 'MACHINE', 'MACHINE_ARCH', 'MAKE', 'MLPREFIX', 'NM', 'OBJCOPY', 'OBJDUMP', 'P', 'PACKAGECONFIG', 'PACKAGE_ARCH', 'PE', 'PERL_HASH_SEED', 'PKG_CONFIG_DIR', 'PKG_CONFIG_DISABLE_UNINSTALLED', 'PKG_CONFIG_LIBDIR', 'PKG_CONFIG_PATH', 'PKG_CONFIG_SYSROOT_DIR', 'PKG_CONFIG_SYSTEM_INCLUDE_PATH', 'PKG_CONFIG_SYSTEM_LIBRARY_PATH', 'PN', 'PR', 'PREFERRED_ARM_INSTRUCTION_SET', 'PSEUDO_DISABLED', 'PV', 'PYTHONHASHSEED', 'QA_LOGFILE', 'QA_SANE', 'RANLIB', 'READELF', 'RECIPE_SYSROOT_NATIVE', 'S', 'SECURITY_CFLAGS', 'SECURITY_LDFLAGS', 'SECURITY_PIE_CFLAGS', 'SECURITY_STACK_PROTECTOR', 'SECURITY_STRINGFORMAT', 'SELECTED_OPTIMIZATION', 'SOURCE_DATE_EPOCH', 'STAGING_BASE_LIBDIR_NATIVE', 'STAGING_BINDIR', 'STAGING_DATADIR', 'STAGING_DIR_NATIVE', 'STAGING_INCDIR_NATIVE', 'STAGING_LIBDIR_NATIVE', 'STRINGS', 'STRIP', 'T', 'TARGET_ARCH', 'TARGET_AS_ARCH', 'TARGET_CC_ARCH', 'TARGET_CFLAGS', 'TARGET_CPPFLAGS', 'TARGET_CXXFLAGS', 'TARGET_LDFLAGS', 'TARGET_LD_ARCH', 'TARGET_LINK_HASH_STYLE', 'TARGET_OS', 'TARGET_PREFIX', 'TARGET_SYS', 'TARGET_VENDOR', 'TOOLCHAIN_OPTIONS', 'TUNE_ARCH', 'TUNE_ASARGS', 'TUNE_CCARGS', 'TUNE_CCARGS_MFLOAT', 'TUNE_CCARGS_MFPU', 'TUNE_FEATURES', 'TUNE_FEATURES_tune-armv5', 'TUNE_FEATURES_tune-armv5t', 'TUNE_FEATURES_tune-armv5te', 'TUNE_LDARGS', 'TUNE_PKGARCH', 'TZ', 'UNKNOWN_CONFIGURE_WHITELIST', 'base_bindir', 'base_dep_prepend', 'base_do_configure', 'base_libdir', 'base_libdir_native', 'base_prefix', 'base_sbindir', 'baselib', 'bbfatal_log', 'bbnote', 'bbwarn', 'bindir', 'bindir_cross', 'create_path', 'datadir', 'die', 'do_configure[umask]', 'do_qa_configure', 'docdir', 'exec_prefix', 'get_cross_kernel_cc', 'get_icecc', 'icecc_dep_prepend', 'icecc_dir', 'icecc_get_and_check_tool', 'icecc_get_external_tool', 'icecc_get_path_tool', 'icecc_get_tool', 'icecc_get_tool_link', 'icecc_is_allarch', 'icecc_is_cross_canadian', 'icecc_is_kernel', 'icecc_is_native', 'icecc_path', 'icecc_version', 'includedir', 'includedir_native', 'infodir', 'lcl_maybe_fortify', 'libdir', 'libdir_native', 'libexecdir', 'localstatedir', 'mandir', 'nonarch_base_libdir', 'nonarch_libdir', 'oe_runmake', 'oe_runmake_call', 'oldincludedir', 'package_qa_handle_error', 'package_qa_write_error', 'prefix', 'prefix_native', 'root_prefix', 'sbindir', 'servicedir', 'set_icecc_env', 'sharedstatedir', 'sysconfdir', 'systemd_system_unitdir', 'systemd_unitdir', 'systemd_user_unitdir', 'use_icecc'] basehash changed from ac2e156620321beef53eb90cea8574bc to 5ab527b38214c867bd9574174151c0bf List of dependencies for variable TARGET_OS changed from 'set()' to '{'ABIEXTENSION', 'LIBCEXTENSION'}' List of dependencies for variable TARGET_LD_ARCH changed from 'set()' to '{'TUNE_LDARGS'}' List of dependencies for variable TARGET_LDFLAGS changed from 'set()' to '{'SECURITY_LDFLAGS', 'ASNEEDED', 'TARGET_LINK_HASH_STYLE'}' List of dependencies for variable BASEDEPENDS changed from '{'base_dep_prepend'}' to '{'BASE_DEFAULT_DEPS', 'base_dep_prepend'}' changed items: {'BASE_DEFAULT_DEPS'} List of dependencies for variable TARGET_PREFIX changed from 'set()' to '{'TARGET_SYS'}' List of dependencies for variable TARGET_AS_ARCH changed from 'set()' to '{'TUNE_ASARGS'}' List of dependencies for variable PACKAGE_ARCH changed from 'set()' to '{'MACHINE_ARCH'}' List of dependencies for variable TARGET_CXXFLAGS changed from 'set()' to '{'TARGET_CFLAGS'}' List of dependencies for variable TARGET_ARCH changed from 'set()' to '{'TUNE_ARCH'}' List of dependencies for variable TARGET_CC_ARCH changed from 'set()' to '{'SECURITY_CFLAGS', 'TUNE_CCARGS'}' List of dependencies for variable LDFLAGS changed from 'set()' to '{'TARGET_LDFLAGS'}' List of dependencies for variable TARGET_CFLAGS changed from 'set()' to '{'SELECTED_OPTIMIZATION', 'TARGET_CPPFLAGS'}' Dependency on variable PR was added Dependency on variable PE was added Dependency on variable ARM_THUMB_OPT was added Dependency on variable BASE_DEFAULT_DEPS was added Dependency on variable DEFAULTTUNE was added Dependency on variable EXTENDPE was added Dependency on variable ARMPKGARCH was added Dependency on variable MACHINE_ARCH was added Dependency on variable TUNE_FEATURES_tune-armv5 was added Dependency on variable TUNE_FEATURES was added Dependency on variable TARGET_LINK_HASH_STYLE was added Dependency on variable lcl_maybe_fortify was added Dependency on variable DEBUG_OPTIMIZATION was added Dependency on variable SECURITY_PIE_CFLAGS was added Dependency on variable SELECTED_OPTIMIZATION was added Dependency on variable TUNE_CCARGS_MFLOAT was added Dependency on variable SECURITY_CFLAGS was added Dependency on variable FULL_OPTIMIZATION was added Dependency on variable SECURITY_STRINGFORMAT was added Dependency on variable ASNEEDED was added Dependency on variable ARMPKGSFX_FPU was added Dependency on variable GCCPIE was added Dependency on variable PREFERRED_ARM_INSTRUCTION_SET was added Dependency on variable TUNE_FEATURES_tune-armv5te was added Dependency on variable SECURITY_LDFLAGS was added Dependency on variable TUNE_CCARGS_MFPU was added Dependency on variable TUNE_ARCH was added Dependency on variable ABIEXTENSION was added Dependency on variable LINKER_HASH_STYLE was added Dependency on variable ARM_M_OPT was added Dependency on variable ARM_INSTRUCTION_SET was added Dependency on variable DEBUG_BUILD was added Dependency on variable DEBUG_PREFIX_MAP was added Dependency on variable TUNE_PKGARCH was added Dependency on variable TUNE_FEATURES_tune-armv5t was added Dependency on variable ARM_THUMB_SUFFIX was added Dependency on variable SECURITY_STACK_PROTECTOR was added Dependency on variable LIBCEXTENSION was added Dependency on variable TUNE_CCARGS was added Dependency on variable ARMPKGSFX_DSP was added Dependency on variable ARMPKGARCH_tune-armv5te was added Dependency on variable ARMPKGSFX_ENDIAN was added Dependency on variable MACHINE was added Dependency on variable TUNE_LDARGS was added Dependency on variable TUNE_ASARGS was added Dependency on variable ARMPKGSFX_EABI was added Dependency on variable ARMPKGSFX_THUMB was added Dependency on variable DEBUG_FLAGS was added Variable TARGET_OS value changed from 'linux' to 'linux${LIBCEXTENSION}${ABIEXTENSION}' Variable TARGET_LD_ARCH value changed from 'none' to '${TUNE_LDARGS}' Variable TARGET_LDFLAGS value changed: "[-none-] {+-Wl,-O1 ${TARGET_LINK_HASH_STYLE} ${ASNEEDED} ${SECURITY_LDFLAGS}+}" Variable TARGET_AS_ARCH value changed from 'none' to '${TUNE_ASARGS}' Variable TARGET_PREFIX value changed from '' to '${TARGET_SYS}-' Variable PACKAGE_ARCH value changed from 'all' to '${MACHINE_ARCH}' Variable TARGET_CXXFLAGS value changed from 'none' to '${TARGET_CFLAGS}' Variable TARGET_ARCH value changed from 'allarch' to '${TUNE_ARCH}' Variable TARGET_CPPFLAGS value changed from 'none' to '' Variable TARGET_CC_ARCH value changed: "[-none-] {+${TUNE_CCARGS} ${SECURITY_CFLAGS}+}" Variable LDFLAGS value changed from '' to '${TARGET_LDFLAGS}' Variable TARGET_CFLAGS value changed: "[-none-] {+${TARGET_CPPFLAGS} ${SELECTED_OPTIMIZATION}+}" runtaskdeps changed: fbset/fbset-modes.bb.do_patch with hash 9332ef5e19ea111b5da7669ddc8c0637 changed to fbset/fbset-modes.bb.do_patch with hash 9a59ced6a021e0bbaa28f25f7617f9e7 fbset/fbset-modes.bb.do_prepare_recipe_sysroot with hash 2c39514f57b3f732b820bcbb703142aa changed to fbset/fbset-modes.bb.do_prepare_recipe_sysroot with hash 7d5ab8f06ede5d28de82a4a2b1072c6a Hash for dependent task fbset/fbset-modes.bb.do_patch changed from 9332ef5e19ea111b5da7669ddc8c0637 to 9a59ced6a021e0bbaa28f25f7617f9e7 Hash for dependent task fbset/fbset-modes.bb.do_prepare_recipe_sysroot changed from 2c39514f57b3f732b820bcbb703142aa to 7d5ab8f06ede5d28de82a4a2b1072c6a Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | thrift: Refresh patches | Khem Raj | 2018-09-14 | 6 | -28/+36 | |
| | | | | | | Make devtool happy patches Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | kernel-selftest: Fix build on musl | Khem Raj | 2018-09-14 | 3 | -54/+5 | |
| | | | | | | | | | | | * (Depends upon a linux-libc-headers patch proposed to oe-core) * Delete unused patch * Mark Clang 6.0 as minimum required version * Do not hardcode python3 interpreter path Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Hongzhi.Song <hongzhi.song@windriver.com> Cc: Martin Jansa <Martin.Jansa@gmail.com> | |||||
* | pmdk: Initial commit of the PMDK SDK | Alistair Francis | 2018-09-12 | 7 | -0/+242 | |
| | | | | | Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | snappy: modify cmake variable to generate shared library | Hongzhi.Song | 2018-09-12 | 1 | -0/+3 | |
| | | | | | | | | | | | FILES_${PN}-xxx under packages-split/ depend on FILES_${PN}. But the FILES_${PN} is empty. This is because snappy doesn't generate shared library by default. So we should modify cmake variable to generate shared library. Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | gd: Fix CVE-2018-1000222 | Mingli Yu | 2018-09-12 | 2 | -0/+83 | |
| | | | | | | | check return value in gdImageBmpPtr Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | lcdproc: Update to master tip | Khem Raj | 2018-09-11 | 2 | -46/+4 | |
| | | | | | | | | | | * Do not build on musl/arm since it does not build due to musl not implementing ioperm() function on ARM Drop 0001-include-asm-ioctl.h-explicitly.patch its fixed differently upstream already Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | opencv: Fix build with clang | Khem Raj | 2018-09-11 | 3 | -0/+64 | |
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||||
* | start-stop-daemon: Recognise musleabi triplet in dpkg | Khem Raj | 2018-09-11 | 2 | -0/+40 | |
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> |