]> Git Repo - J-u-boot.git/blobdiff - net/Kconfig
Convert CONFIG_SYS_FAULT_ECHO_LINK_DOWN to Kconfig
[J-u-boot.git] / net / Kconfig
index 8ddea2823acd567f700fc6708a709cebe73f5baf..650551606d329ccd8f9d78ec86c8a134f46d1f8e 100644 (file)
@@ -8,6 +8,17 @@ menuconfig NET
 
 if NET
 
+config ARP_TIMEOUT
+       int "Milliseconds before trying ARP again"
+       default 5000
+
+config NET_RETRY_COUNT
+       int "Number of timeouts before giving up"
+       default 5
+       help
+         This variable defines the number of retries for network operations
+         like ARP, RARP, TFTP, or BOOTP before giving up the operation.
+
 config PROT_UDP
        bool "Enable generic udp framework"
        help
@@ -55,6 +66,13 @@ config NET_MAXDEFRAG
          used for reassembly, and thus an upper bound for the size of
          IP datagrams that can be received.
 
+config SYS_FAULT_ECHO_LINK_DOWN
+       bool "Echo the inverted Ethernet link state to the fault LED"
+       help
+         Echo the inverted Ethernet link state to the fault LED.  Note, if
+         this option is active, then CONFIG_SYS_FAULT_MII_ADDR also needs to
+         be configured.
+
 config TFTP_BLOCKSIZE
        int "TFTP block size"
        default 1468
@@ -110,9 +128,17 @@ config KEEP_SERVERADDR
 
 config UDP_CHECKSUM
        bool "Check the 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
          "UDP wrong checksum 29374a23 30ff3826"
 
+config BOOTP_SERVERIP
+       bool "Use the 'serverip' env var for tftp, not bootp"
+       help
+         Enable this if the TFTP server will be the 'serverip' environment
+         variable, not the BOOTP server. This affects the operation of both
+         bootp and tftp.
+
 endif   # if NET
This page took 0.031306 seconds and 4 git commands to generate.