diff options
-rw-r--r-- | Kconfig | 2 | ||||
-rw-r--r-- | boot/Kconfig | 2 | ||||
-rw-r--r-- | net/Kconfig | 18 |
3 files changed, 11 insertions, 11 deletions
@@ -747,7 +747,7 @@ source "env/Kconfig" choice prompt "Networking stack" - default NET + default NET_LWIP config NO_NET bool "No networking support" diff --git a/boot/Kconfig b/boot/Kconfig index 23f3411d7a6..27877fc4a9b 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -497,7 +497,7 @@ config BOOTMETH_GLOBAL config BOOTMETH_ANDROID bool "Bootdev support for Android" depends on X86 || ARM || SANDBOX - depends on CMDLINE + depends on CMDLINE && FASTBOOT select ANDROID_AB select ANDROID_BOOT_IMAGE select CMD_BCB diff --git a/net/Kconfig b/net/Kconfig index 165b29efa49..e1377465d0c 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -244,15 +244,6 @@ config BOOTDEV_ETH an operating system over the network, using the PXE (Preboot Execution Environment) protocol. -config SYS_RX_ETH_BUFFER - int "Number of receive packet buffers" - default 4 - help - Defines the number of Ethernet receive buffers. On some Ethernet - controllers it is recommended to set this value to 8 or even higher, - since all buffers can be full shortly after enabling the interface on - high Ethernet traffic. - config TFTP_BLOCKSIZE int "TFTP block size" default 1468 @@ -264,3 +255,12 @@ config TFTP_BLOCKSIZE You can also activate CONFIG_IP_DEFRAG to set a larger block. endif # if NET || NET_LWIP + +config SYS_RX_ETH_BUFFER + int "Number of receive packet buffers" + default 4 + help + Defines the number of Ethernet receive buffers. On some Ethernet + controllers it is recommended to set this value to 8 or even higher, + since all buffers can be full shortly after enabling the interface on + high Ethernet traffic. |