1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-01 00:21:51 +02:00

add libsas and mvsas required for VIA NAS7800

SVN-Revision: 16941
This commit is contained in:
Florian Fainelli 2009-07-21 11:37:12 +00:00
parent 2a93dc020f
commit 998465b1d9

@ -389,3 +389,35 @@ define KernelPackage/axonram/description
endef
$(eval $(call KernelPackage,axonram))
define KernelPackage/libsas
SUBMENU:=$(BLOCK_MENU)
TITLE:=SAS Domain Transport Attributes
DEPENDS:=+kmod-scsi-core
KCONFIG:=CONFIG_SCSI_SAS_LIBSAS \
CONFIG_SCSI_SAS_HOST_SMP=y \
CONFIG_SCSI_SAS_LIBSAS_DEBUG=y
FILES:=$(LINUX_DIR)/drivers/scsi/libsas/libsas.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,29,libsas)
endef
define KernelPackage/libsas/description
SAS Domain Transport Attributes support.
endef
$(eval $(call KernelPackage,libsas))
define KernelPackage/mvsas
SUBMENU:=$(BLOCK_MENU)
TITLE:=Marvell 88SE6440 SAS/SATA driver
DEPENDS:=@TARGET_x86 +kmod-libsas
KCONFIG:=CONFIG_SCSI_MVSAS
FILES:=$(LINUX_DIR)/drivers/scsi/mvsas.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,40,mvsas)
endef
define KernelPackage/mvsas/description
Kernel support for the Marvell SAS SCSI adapters
endef
$(eval $(call KernelPackage,mvsas))