Kconfig 407 B

12345678910111213141516171819
  1. #
  2. # Network configuration
  3. #
  4. menuconfig NET
  5. bool "Networking support"
  6. if NET
  7. config NET_RANDOM_ETHADDR
  8. bool "Random ethaddr if unset"
  9. select LIB_RAND
  10. help
  11. Selecting this will allow the Ethernet interface to function
  12. even when the ethaddr variable for that interface is unset.
  13. A new MAC address will be generated on every boot and it will
  14. not be added to the environment.
  15. endif # if NET