From: Gabor Juhos Date: Wed, 20 Feb 2013 19:14:20 +0000 (+0000) Subject: package/kernel: add package for the Gianfar PTP driver X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=f40a1ae1078bf9dc1d97966d527b87a4b0ebcfd3 package/kernel: add package for the Gianfar PTP driver PTP for gianfar can be built as a module. Create a package for it. [juhosg: remove the mp85xx specific patch] Patchwork: http://patchwork.openwrt.org/patch/3344/ Signed-off-by: Wojciech Dubowik Signed-off-by: Gabor Juhos SVN-Revision: 35706 --- diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index f63d6705d9..13a0ec4afc 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -636,3 +636,20 @@ define KernelPacakge/ptp/description endef $(eval $(call KernelPackage,ptp)) + + +define KernelPackage/ptp-gianfar + SUBMENU:=$(OTHER_MENU) + TITLE:=Freescale Gianfar PTP support + DEPENDS:=@TARGET_mpc85xx +kmod-gianfar +kmod-ptp + KCONFIG:=CONFIG_PTP_1588_CLOCK_GIANFAR + FILES:=$(LINUX_DIR)/drivers/net/ethernet/freescale/gianfar_ptp.ko + AUTOLOAD:=$(call AutoLoad,51,gianfar_ptp) +endef + +define KernelPacakge/ptp-gianfar/description + Kernel module for IEEE 1588 support for Freescale + Gianfar Ethernet drivers. +endef + +$(eval $(call KernelPackage,ptp-gianfar))