mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
remove True option to getVar calls
getVar() now defaults to expanding by default, thus remove the True option from getVar() calls with a regex search and replace. Search made with the following regex: getVar ?\(( ?[^,()]*), True\) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
This commit is contained in:
committed by
Martin Jansa
parent
761639b9d7
commit
efd3696e70
@@ -30,8 +30,8 @@ inherit update-rc.d systemd
|
||||
python __anonymous () {
|
||||
import re
|
||||
|
||||
karch = d.getVar('KARCH', True)
|
||||
multilib = d.getVar('MLPREFIX', True)
|
||||
karch = d.getVar('KARCH')
|
||||
multilib = d.getVar('MLPREFIX')
|
||||
|
||||
if multilib and karch == 'powerpc64':
|
||||
searchstr = "lib.?32"
|
||||
|
||||
@@ -33,8 +33,8 @@ NETMAP_DRIVERS ??= ""
|
||||
NETMAP_ALL_DRIVERS = "ixgbe igb e1000e e1000 veth.c forcedeth.c virtio_net.c r8169.c"
|
||||
|
||||
python __anonymous () {
|
||||
drivers_list = d.getVar("NETMAP_DRIVERS", True).split()
|
||||
all_drivers_list = d.getVar("NETMAP_ALL_DRIVERS", True).split()
|
||||
drivers_list = d.getVar("NETMAP_DRIVERS").split()
|
||||
all_drivers_list = d.getVar("NETMAP_ALL_DRIVERS").split()
|
||||
config_drivers = "--drivers=" + ",".join(drivers_list)
|
||||
|
||||
extra_oeconf_drivers = bb.utils.contains_any('NETMAP_DRIVERS', all_drivers_list, config_drivers, '--no-drivers', d)
|
||||
@@ -70,7 +70,7 @@ do_configure_append () {
|
||||
#define NETMAP_LINUX_HAVE_E1000E_DOWN2
|
||||
EOF
|
||||
|
||||
if ${@ 'false' if (bb.utils.vercmp_string(d.getVar('KERNEL_VERSION', True) or "0", '3.17') < 0) else 'true' } ; then
|
||||
if ${@ 'false' if (bb.utils.vercmp_string(d.getVar('KERNEL_VERSION') or "0", '3.17') < 0) else 'true' } ; then
|
||||
echo OK
|
||||
cat >> ${S}/LINUX/netmap_linux_config.h <<EOF
|
||||
#define NETMAP_LINUX_ALLOC_NETDEV_4ARGS
|
||||
|
||||
@@ -30,7 +30,7 @@ SRC_URI[md5sum] = "46402dfbd7faadf6182283dbbd18b1a6"
|
||||
SRC_URI[sha256sum] = "d9173ef6d99ba798c982ea4566cb4f0e64eb23859fdbf9926a89999d8cdc0458"
|
||||
|
||||
python __anonymous () {
|
||||
endianness = d.getVar('SITEINFO_ENDIANNESS', True)
|
||||
endianness = d.getVar('SITEINFO_ENDIANNESS')
|
||||
if endianness == 'le':
|
||||
d.appendVar('EXTRA_OECONF', " ac_cv_c_endian=little")
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user