]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/net/Kconfig
karo: merge with Ka-Ro specific tree for secure boot support
[karo-tx-uboot.git] / drivers / net / Kconfig
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c5736b0c3775e79ee5cafe8e1f083458883622ee 100644 (file)
@@ -0,0 +1,33 @@
+menuconfig NETDEVICES
+       bool "Network device support"
+       depends on NET
+
+if NETDEVICES
+
+config MII
+       bool
+
+config FEC_MXC
+       bool "Freescale FEC ethernet controller"
+       select MII
+
+config GET_FEC_MAC_ADDR_FROM_IIM
+       bool "Read FEC MAC address from fuses"
+       depends on FEC_MXC
+
+if FEC_MXC
+
+config FEC_MXC_MULTI
+       bool "Support multiple ethernet interfaces"
+       depends on MX28 || MX6
+
+config FEC_MXC_PHYADDR
+       int "FEC Ethernet PHY address"
+               default 0
+       depends on !FEC_MXC_MULTI
+
+endif
+
+source "drivers/net/phy/Kconfig"
+
+endif