From: Felix Fietkau Date: Sat, 23 Jan 2016 20:01:26 +0000 (+0000) Subject: kernel: add a package for bcm-phy-lib.ko, fixes build errors with kmod-phy-broadcom X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=768442f451304c7979e8a206197d7f7b52826eaa;p=openwrt-github%2F.git kernel: add a package for bcm-phy-lib.ko, fixes build errors with kmod-phy-broadcom Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48464 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/kernel/linux/modules/netdevices.mk b/package/kernel/linux/modules/netdevices.mk index ef3cf85ef8..417a6a6114 100644 --- a/package/kernel/linux/modules/netdevices.mk +++ b/package/kernel/linux/modules/netdevices.mk @@ -148,11 +148,24 @@ endef $(eval $(call KernelPackage,gw16083)) +define KernelPackage/phylib-broadcom + SUBMENU:=$(NETWORK_DEVICES_MENU) + TITLE:=Broadcom Ethernet PHY library + KCONFIG:=CONFIG_BCM_NET_PHYLIB + HIDDEN:=1 + DEPENDS:=+kmod-libphy + FILES:=$(LINUX_DIR)/drivers/net/phy/bcm-phy-lib.ko + AUTOLOAD:=$(call AutoLoad,17,bcm-phy-lib) +endef + +$(eval $(call KernelPackage,phylib-broadcom)) + + define KernelPackage/phy-broadcom SUBMENU:=$(NETWORK_DEVICES_MENU) TITLE:=Broadcom Ethernet PHY driver KCONFIG:=CONFIG_BROADCOM_PHY - DEPENDS:=+kmod-libphy + DEPENDS:=+kmod-libphy +kmod-phylib-broadcom FILES:=$(LINUX_DIR)/drivers/net/phy/broadcom.ko AUTOLOAD:=$(call AutoLoad,18,broadcom) endef