Merge tag 'for-v2022.10' of https://source.denx.de/u-boot/custodians/u-boot-i2c
[platform/kernel/u-boot.git] / net / Kconfig
index af6856f..564ea8b 100644 (file)
@@ -25,6 +25,15 @@ config PROT_UDP
          Enable a generic udp framework that allows defining a custom
          handler for udp protocol.
 
+config BOOTDEV_ETH
+       bool "Enable bootdev for ethernet"
+       depends on BOOTSTD
+       default y
+       help
+         Provide a bootdev for ethernet so that is it possible to boot
+         an operationg system over the network, using the PXE (Preboot
+         Execution Environment) protocol.
+
 config BOOTP_SEND_HOSTNAME
        bool "Send hostname to DNS server"
        help
@@ -149,7 +158,7 @@ config UDP_CHECKSUM
        default y if SANDBOX
        help
          Enable this to verify the checksum on UDP packets. If the checksum
-         is wrong then the packet is discussed and an error is shown, like
+         is wrong then the packet is discarded and an error is shown, like
          "UDP wrong checksum 29374a23 30ff3826"
 
 config BOOTP_SERVERIP
@@ -160,3 +169,12 @@ config BOOTP_SERVERIP
          bootp and tftp.
 
 endif   # if NET
+
+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.