can.mk: sort modules
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
This commit is contained in:
parent
d1aae1a054
commit
0b004ccec3
1 changed files with 96 additions and 95 deletions
|
@ -47,22 +47,6 @@ define AddDepends/can
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-raw
|
|
||||||
TITLE:=Raw CAN Protcol
|
|
||||||
KCONFIG:=CONFIG_CAN_RAW
|
|
||||||
FILES:=$(LINUX_DIR)/net/can/can-raw.ko
|
|
||||||
AUTOLOAD:=$(call AutoProbe,can-raw)
|
|
||||||
$(call AddDepends/can)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/can-raw/description
|
|
||||||
The raw CAN protocol option offers access to the CAN bus via
|
|
||||||
the BSD socket API.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,can-raw))
|
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-bcm
|
define KernelPackage/can-bcm
|
||||||
TITLE:=Broadcast Manager CAN Protcol
|
TITLE:=Broadcast Manager CAN Protcol
|
||||||
KCONFIG:=CONFIG_CAN_BCM
|
KCONFIG:=CONFIG_CAN_BCM
|
||||||
|
@ -80,6 +64,74 @@ endef
|
||||||
$(eval $(call KernelPackage,can-bcm))
|
$(eval $(call KernelPackage,can-bcm))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/can-c-can
|
||||||
|
TITLE:=BOSCH C_CAN/D_CAN drivers
|
||||||
|
KCONFIG:=CONFIG_CAN_C_CAN
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/net/can/c_can/c_can.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,c_can)
|
||||||
|
$(call AddDepends/can)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/can-c-can/description
|
||||||
|
This driver adds generic support for the C_CAN/D_CAN chips.
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,can-c-can))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/can-c-can-pci
|
||||||
|
TITLE:=PCI Bus based BOSCH C_CAN/D_CAN driver
|
||||||
|
KCONFIG:=CONFIG_CAN_C_CAN_PCI
|
||||||
|
DEPENDS:=kmod-can-c-can @PCI_SUPPORT
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/net/can/c_can/c_can_pci.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,c_can_pci)
|
||||||
|
$(call AddDepends/can)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/can-c-can-pci/description
|
||||||
|
This driver adds support for the C_CAN/D_CAN chips connected
|
||||||
|
to the PCI bus.
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,can-c-can-pci))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/can-c-can-platform
|
||||||
|
TITLE:=Platform Bus based BOSCH C_CAN/D_CAN driver
|
||||||
|
KCONFIG:=CONFIG_CAN_C_CAN_PLATFORM
|
||||||
|
DEPENDS:=kmod-can-c-can +!LINUX_3_18:kmod-regmap
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/net/can/c_can/c_can_platform.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,c_can_platform)
|
||||||
|
$(call AddDepends/can)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/can-c-can-platform/description
|
||||||
|
This driver adds support for the C_CAN/D_CAN chips connected
|
||||||
|
to the "platform bus" (Linux abstraction for directly to the
|
||||||
|
processor attached devices) which can be found on various
|
||||||
|
boards from ST Microelectronics (http://www.st.com) like the
|
||||||
|
SPEAr1310 and SPEAr320 evaluation boards & TI (www.ti.com)
|
||||||
|
boards like am335x, dm814x, dm813x and dm811x.
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,can-c-can-platform))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/can-flexcan
|
||||||
|
TITLE:=Support for Freescale FLEXCAN based chips
|
||||||
|
KCONFIG:=CONFIG_CAN_FLEXCAN
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/net/can/flexcan.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,flexcan)
|
||||||
|
$(call AddDepends/can,@TARGET_imx6)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/can-flexcan/description
|
||||||
|
Freescale FLEXCAN CAN bus controller implementation.
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,can-flexcan))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-gw
|
define KernelPackage/can-gw
|
||||||
TITLE:=CAN Gateway/Router
|
TITLE:=CAN Gateway/Router
|
||||||
KCONFIG:=CONFIG_CAN_GW
|
KCONFIG:=CONFIG_CAN_GW
|
||||||
|
@ -95,20 +147,20 @@ endef
|
||||||
$(eval $(call KernelPackage,can-gw))
|
$(eval $(call KernelPackage,can-gw))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-vcan
|
define KernelPackage/can-raw
|
||||||
TITLE:=Virtual Local CAN Interface (vcan)
|
TITLE:=Raw CAN Protcol
|
||||||
KCONFIG:=CONFIG_CAN_VCAN
|
KCONFIG:=CONFIG_CAN_RAW
|
||||||
FILES:=$(LINUX_DIR)/drivers/net/can/vcan.ko
|
FILES:=$(LINUX_DIR)/net/can/can-raw.ko
|
||||||
AUTOLOAD:=$(call AutoProbe,vcan)
|
AUTOLOAD:=$(call AutoProbe,can-raw)
|
||||||
$(call AddDepends/can)
|
$(call AddDepends/can)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/can-vcan/description
|
define KernelPackage/can-raw/description
|
||||||
Similar to the network loopback devices, vcan offers a
|
The raw CAN protocol option offers access to the CAN bus via
|
||||||
virtual local CAN interface.
|
the BSD socket API.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,can-vcan))
|
$(eval $(call KernelPackage,can-raw))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-slcan
|
define KernelPackage/can-slcan
|
||||||
|
@ -128,19 +180,20 @@ endef
|
||||||
$(eval $(call KernelPackage,can-slcan))
|
$(eval $(call KernelPackage,can-slcan))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-flexcan
|
define KernelPackage/can-usb-8dev
|
||||||
TITLE:=Support for Freescale FLEXCAN based chips
|
TITLE:=8 devices USB2CAN interface
|
||||||
KCONFIG:=CONFIG_CAN_FLEXCAN
|
KCONFIG:=CONFIG_CAN_8DEV_USB
|
||||||
FILES:=$(LINUX_DIR)/drivers/net/can/flexcan.ko
|
FILES:=$(LINUX_DIR)/drivers/net/can/usb/usb_8dev.ko
|
||||||
AUTOLOAD:=$(call AutoProbe,flexcan)
|
AUTOLOAD:=$(call AutoProbe,usb_8dev)
|
||||||
$(call AddDepends/can,@TARGET_imx6)
|
$(call AddDepends/can,+kmod-usb-core)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/can-flexcan/description
|
define KernelPackage/can-usb-8dev/description
|
||||||
Freescale FLEXCAN CAN bus controller implementation.
|
This driver supports the USB2CAN interface
|
||||||
|
from 8 devices (http://www.8devices.com).
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,can-flexcan))
|
$(eval $(call KernelPackage,can-usb-8dev))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-usb-ems
|
define KernelPackage/can-usb-ems
|
||||||
|
@ -207,71 +260,19 @@ endef
|
||||||
$(eval $(call KernelPackage,can-usb-peak))
|
$(eval $(call KernelPackage,can-usb-peak))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-usb-8dev
|
define KernelPackage/can-vcan
|
||||||
TITLE:=8 devices USB2CAN interface
|
TITLE:=Virtual Local CAN Interface (vcan)
|
||||||
KCONFIG:=CONFIG_CAN_8DEV_USB
|
KCONFIG:=CONFIG_CAN_VCAN
|
||||||
FILES:=$(LINUX_DIR)/drivers/net/can/usb/usb_8dev.ko
|
FILES:=$(LINUX_DIR)/drivers/net/can/vcan.ko
|
||||||
AUTOLOAD:=$(call AutoProbe,usb_8dev)
|
AUTOLOAD:=$(call AutoProbe,vcan)
|
||||||
$(call AddDepends/can,+kmod-usb-core)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/can-usb-8dev/description
|
|
||||||
This driver supports the USB2CAN interface
|
|
||||||
from 8 devices (http://www.8devices.com).
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,can-usb-8dev))
|
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-c-can
|
|
||||||
TITLE:=BOSCH C_CAN/D_CAN drivers
|
|
||||||
KCONFIG:=CONFIG_CAN_C_CAN
|
|
||||||
FILES:=$(LINUX_DIR)/drivers/net/can/c_can/c_can.ko
|
|
||||||
AUTOLOAD:=$(call AutoProbe,c_can)
|
|
||||||
$(call AddDepends/can)
|
$(call AddDepends/can)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/can-c-can/description
|
define KernelPackage/can-vcan/description
|
||||||
This driver adds generic support for the C_CAN/D_CAN chips.
|
Similar to the network loopback devices, vcan offers a
|
||||||
|
virtual local CAN interface.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,can-c-can))
|
$(eval $(call KernelPackage,can-vcan))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-c-can-platform
|
|
||||||
TITLE:=Platform Bus based BOSCH C_CAN/D_CAN driver
|
|
||||||
KCONFIG:=CONFIG_CAN_C_CAN_PLATFORM
|
|
||||||
DEPENDS:=kmod-can-c-can +!LINUX_3_18:kmod-regmap
|
|
||||||
FILES:=$(LINUX_DIR)/drivers/net/can/c_can/c_can_platform.ko
|
|
||||||
AUTOLOAD:=$(call AutoProbe,c_can_platform)
|
|
||||||
$(call AddDepends/can)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/can-c-can-platform/description
|
|
||||||
This driver adds support for the C_CAN/D_CAN chips connected
|
|
||||||
to the "platform bus" (Linux abstraction for directly to the
|
|
||||||
processor attached devices) which can be found on various
|
|
||||||
boards from ST Microelectronics (http://www.st.com) like the
|
|
||||||
SPEAr1310 and SPEAr320 evaluation boards & TI (www.ti.com)
|
|
||||||
boards like am335x, dm814x, dm813x and dm811x.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,can-c-can-platform))
|
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/can-c-can-pci
|
|
||||||
TITLE:=PCI Bus based BOSCH C_CAN/D_CAN driver
|
|
||||||
KCONFIG:=CONFIG_CAN_C_CAN_PCI
|
|
||||||
DEPENDS:=kmod-can-c-can @PCI_SUPPORT
|
|
||||||
FILES:=$(LINUX_DIR)/drivers/net/can/c_can/c_can_pci.ko
|
|
||||||
AUTOLOAD:=$(call AutoProbe,c_can_pci)
|
|
||||||
$(call AddDepends/can)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/can-c-can-pci/description
|
|
||||||
This driver adds support for the C_CAN/D_CAN chips connected
|
|
||||||
to the PCI bus.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,can-c-can-pci))
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue