From: Felix Fietkau Date: Fri, 21 Mar 2014 15:54:41 +0000 (+0000) Subject: kernel: add can.ko to the kmod-can package. X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fmkresin.git;a=commitdiff_plain;h=5041b8e46cd92534190c02106f7c5625bb4fbc51 kernel: add can.ko to the kmod-can package. Build all of the can support as modules, otherwise the kernel image is changed when a can kernel package is selected, because the can protocol is then built in into the kernel image. Signed-off-by: Jan Kardell SVN-Revision: 39989 --- diff --git a/package/kernel/linux/modules/can.mk b/package/kernel/linux/modules/can.mk index 39c1c969ad..ab7fcfa53a 100644 --- a/package/kernel/linux/modules/can.mk +++ b/package/kernel/linux/modules/can.mk @@ -11,7 +11,7 @@ define KernelPackage/can SUBMENU:=$(CAN_MENU) TITLE:=CAN bus support KCONFIG:=\ - CONFIG_CAN=y \ + CONFIG_CAN=m \ CONFIG_CAN_DEV \ CONFIG_CAN_CALC_BITTIMING=y \ CONFIG_CAN_LEDS=y \ @@ -29,8 +29,9 @@ define KernelPackage/can CONFIG_CAN_SOFTING=n \ CONFIG_NET_EMATCH_CANID=n \ CONFIG_CAN_DEBUG_DEVICES=n - FILES:=$(LINUX_DIR)/drivers/net/can/can-dev.ko - AUTOLOAD:=$(call AutoProbe,can-dev) + FILES:=$(LINUX_DIR)/drivers/net/can/can-dev.ko \ + $(LINUX_DIR)/net/can/can.ko + AUTOLOAD:=$(call AutoProbe,can can-dev) endef define KernelPackage/can/description