diff options
Diffstat (limited to 'meta-networking')
3 files changed, 6 insertions, 6 deletions
diff --git a/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb b/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb index e9b726c5fb..d24b81bc19 100644 --- a/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb +++ b/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb | |||
| @@ -30,8 +30,8 @@ inherit update-rc.d systemd | |||
| 30 | python __anonymous () { | 30 | python __anonymous () { |
| 31 | import re | 31 | import re |
| 32 | 32 | ||
| 33 | karch = d.getVar('KARCH', True) | 33 | karch = d.getVar('KARCH') |
| 34 | multilib = d.getVar('MLPREFIX', True) | 34 | multilib = d.getVar('MLPREFIX') |
| 35 | 35 | ||
| 36 | if multilib and karch == 'powerpc64': | 36 | if multilib and karch == 'powerpc64': |
| 37 | searchstr = "lib.?32" | 37 | searchstr = "lib.?32" |
diff --git a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb index e9eea56cd8..82b9b059d4 100644 --- a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb +++ b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb | |||
| @@ -33,8 +33,8 @@ NETMAP_DRIVERS ??= "" | |||
| 33 | NETMAP_ALL_DRIVERS = "ixgbe igb e1000e e1000 veth.c forcedeth.c virtio_net.c r8169.c" | 33 | NETMAP_ALL_DRIVERS = "ixgbe igb e1000e e1000 veth.c forcedeth.c virtio_net.c r8169.c" |
| 34 | 34 | ||
| 35 | python __anonymous () { | 35 | python __anonymous () { |
| 36 | drivers_list = d.getVar("NETMAP_DRIVERS", True).split() | 36 | drivers_list = d.getVar("NETMAP_DRIVERS").split() |
| 37 | all_drivers_list = d.getVar("NETMAP_ALL_DRIVERS", True).split() | 37 | all_drivers_list = d.getVar("NETMAP_ALL_DRIVERS").split() |
| 38 | config_drivers = "--drivers=" + ",".join(drivers_list) | 38 | config_drivers = "--drivers=" + ",".join(drivers_list) |
| 39 | 39 | ||
| 40 | extra_oeconf_drivers = bb.utils.contains_any('NETMAP_DRIVERS', all_drivers_list, config_drivers, '--no-drivers', d) | 40 | extra_oeconf_drivers = bb.utils.contains_any('NETMAP_DRIVERS', all_drivers_list, config_drivers, '--no-drivers', d) |
| @@ -70,7 +70,7 @@ do_configure_append () { | |||
| 70 | #define NETMAP_LINUX_HAVE_E1000E_DOWN2 | 70 | #define NETMAP_LINUX_HAVE_E1000E_DOWN2 |
| 71 | EOF | 71 | EOF |
| 72 | 72 | ||
| 73 | if ${@ 'false' if (bb.utils.vercmp_string(d.getVar('KERNEL_VERSION', True) or "0", '3.17') < 0) else 'true' } ; then | 73 | if ${@ 'false' if (bb.utils.vercmp_string(d.getVar('KERNEL_VERSION') or "0", '3.17') < 0) else 'true' } ; then |
| 74 | echo OK | 74 | echo OK |
| 75 | cat >> ${S}/LINUX/netmap_linux_config.h <<EOF | 75 | cat >> ${S}/LINUX/netmap_linux_config.h <<EOF |
| 76 | #define NETMAP_LINUX_ALLOC_NETDEV_4ARGS | 76 | #define NETMAP_LINUX_ALLOC_NETDEV_4ARGS |
diff --git a/meta-networking/recipes-support/memcached/memcached_1.4.17.bb b/meta-networking/recipes-support/memcached/memcached_1.4.17.bb index 293f8d4c6d..2b36ba4f86 100644 --- a/meta-networking/recipes-support/memcached/memcached_1.4.17.bb +++ b/meta-networking/recipes-support/memcached/memcached_1.4.17.bb | |||
| @@ -30,7 +30,7 @@ SRC_URI[md5sum] = "46402dfbd7faadf6182283dbbd18b1a6" | |||
| 30 | SRC_URI[sha256sum] = "d9173ef6d99ba798c982ea4566cb4f0e64eb23859fdbf9926a89999d8cdc0458" | 30 | SRC_URI[sha256sum] = "d9173ef6d99ba798c982ea4566cb4f0e64eb23859fdbf9926a89999d8cdc0458" |
| 31 | 31 | ||
| 32 | python __anonymous () { | 32 | python __anonymous () { |
| 33 | endianness = d.getVar('SITEINFO_ENDIANNESS', True) | 33 | endianness = d.getVar('SITEINFO_ENDIANNESS') |
| 34 | if endianness == 'le': | 34 | if endianness == 'le': |
| 35 | d.appendVar('EXTRA_OECONF', " ac_cv_c_endian=little") | 35 | d.appendVar('EXTRA_OECONF', " ac_cv_c_endian=little") |
| 36 | else: | 36 | else: |
