package/kernel: create packages for the rtl8366* drivers
This allows to enable rtl8366 switches family support, which are optional (present on few boards). Based on a patch by Roman Yeryomin <roman@advem.lv> SVN-Revision: 29388
This commit is contained in:
parent
80221fcd2a
commit
6a0b84e671
1 changed files with 45 additions and 0 deletions
|
@ -157,6 +157,51 @@ endef
|
|||
|
||||
$(eval $(call KernelPackage,switch-ip17xx))
|
||||
|
||||
define KernelPackage/switch-rtl8366_smi
|
||||
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
||||
TITLE:=Realtek RTL8366 SMI switch interface support
|
||||
DEPENDS:=@GPIO_SUPPORT +kmod-swconfig
|
||||
KCONFIG:=CONFIG_RTL8366_SMI
|
||||
FILES:=$(LINUX_DIR)/drivers/net/phy/rtl8366_smi.ko
|
||||
AUTOLOAD:=$(call AutoLoad,42,rtl8366_smi)
|
||||
endef
|
||||
|
||||
define KernelPackage/switch-rtl8366_smi/description
|
||||
Realtek RTL8366 series SMI switch interface support
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,switch-rtl8366_smi))
|
||||
|
||||
define KernelPackage/switch-rtl8366rb
|
||||
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
||||
TITLE:=Realtek RTL8366RB switch support
|
||||
DEPENDS:=+kmod-switch-rtl8366_smi
|
||||
KCONFIG:=CONFIG_RTL8366RB_PHY
|
||||
FILES:=$(LINUX_DIR)/drivers/net/phy/rtl8366rb.ko
|
||||
AUTOLOAD:=$(call AutoLoad,43,rtl8366rb)
|
||||
endef
|
||||
|
||||
define KernelPackage/switch-rtl8366rb/description
|
||||
Realtek RTL8366RB switch support
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,switch-rtl8366rb))
|
||||
|
||||
define KernelPackage/switch-rtl8366s
|
||||
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
||||
TITLE:=Realtek RTL8366S switch support
|
||||
DEPENDS:=+kmod-switch-rtl8366_smi
|
||||
KCONFIG:=CONFIG_RTL8366S_PHY
|
||||
FILES:=$(LINUX_DIR)/drivers/net/phy/rtl8366s.ko
|
||||
AUTOLOAD:=$(call AutoLoad,43,rtl8366s)
|
||||
endef
|
||||
|
||||
define KernelPackage/switch-rtl8366s/description
|
||||
Realtek RTL8366S switch support
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,switch-rtl8366s))
|
||||
|
||||
define KernelPackage/natsemi
|
||||
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
||||
TITLE:=National Semiconductor DP8381x series
|
||||
|
|
Loading…
Reference in a new issue