Kconfig (b470ebc9e0e57f53d1db9c49b8a3de4086babd05) | Kconfig (a8700c3dd0a48f379d269ac6ddcf8bd857042771) |
---|---|
1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Network device configuration 4# 5 6menuconfig NETDEVICES 7 default y if UML 8 depends on NET --- 80 unchanged lines hidden (view full) --- 89 select ARM_CRYPTO if ARM 90 select ARM64_CRYPTO if ARM64 91 select CRYPTO_CHACHA20_NEON if ARM || (ARM64 && KERNEL_MODE_NEON) 92 select CRYPTO_POLY1305_NEON if ARM64 && KERNEL_MODE_NEON 93 select CRYPTO_POLY1305_ARM if ARM 94 select CRYPTO_BLAKE2S_ARM if ARM 95 select CRYPTO_CURVE25519_NEON if ARM && KERNEL_MODE_NEON 96 select CRYPTO_CHACHA_MIPS if CPU_MIPS32_R2 | 1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Network device configuration 4# 5 6menuconfig NETDEVICES 7 default y if UML 8 depends on NET --- 80 unchanged lines hidden (view full) --- 89 select ARM_CRYPTO if ARM 90 select ARM64_CRYPTO if ARM64 91 select CRYPTO_CHACHA20_NEON if ARM || (ARM64 && KERNEL_MODE_NEON) 92 select CRYPTO_POLY1305_NEON if ARM64 && KERNEL_MODE_NEON 93 select CRYPTO_POLY1305_ARM if ARM 94 select CRYPTO_BLAKE2S_ARM if ARM 95 select CRYPTO_CURVE25519_NEON if ARM && KERNEL_MODE_NEON 96 select CRYPTO_CHACHA_MIPS if CPU_MIPS32_R2 |
97 select CRYPTO_POLY1305_MIPS if CPU_MIPS32 || (CPU_MIPS64 && 64BIT) | 97 select CRYPTO_POLY1305_MIPS if MIPS |
98 help 99 WireGuard is a secure, fast, and easy to use replacement for IPSec 100 that uses modern cryptography and clever networking tricks. It's 101 designed to be fairly general purpose and abstract enough to fit most 102 use cases, while at the same time remaining extremely simple to 103 configure. See www.wireguard.com for more info. 104 105 It's safe to say Y or M here, as the driver is very lightweight and --- 468 unchanged lines hidden (view full) --- 574 575source "drivers/net/hyperv/Kconfig" 576 577config NETDEVSIM 578 tristate "Simulated networking device" 579 depends on DEBUG_FS 580 depends on INET 581 depends on IPV6 || IPV6=n | 98 help 99 WireGuard is a secure, fast, and easy to use replacement for IPSec 100 that uses modern cryptography and clever networking tricks. It's 101 designed to be fairly general purpose and abstract enough to fit most 102 use cases, while at the same time remaining extremely simple to 103 configure. See www.wireguard.com for more info. 104 105 It's safe to say Y or M here, as the driver is very lightweight and --- 468 unchanged lines hidden (view full) --- 574 575source "drivers/net/hyperv/Kconfig" 576 577config NETDEVSIM 578 tristate "Simulated networking device" 579 depends on DEBUG_FS 580 depends on INET 581 depends on IPV6 || IPV6=n |
582 depends on PSAMPLE || PSAMPLE=n |
|
582 select NET_DEVLINK 583 help 584 This driver is a developer testing tool and software model that can 585 be used to test various control path networking APIs, especially 586 HW-offload related. 587 588 To compile this driver as a module, choose M here: the module 589 will be called netdevsim. --- 14 unchanged lines hidden --- | 583 select NET_DEVLINK 584 help 585 This driver is a developer testing tool and software model that can 586 be used to test various control path networking APIs, especially 587 HW-offload related. 588 589 To compile this driver as a module, choose M here: the module 590 will be called netdevsim. --- 14 unchanged lines hidden --- |