Author: hauke Date: 2015-11-15 23:14:45 +0100 (Sun, 15 Nov 2015) New Revision: 47482
Modified: trunk/package/kernel/linux/modules/block.mk Log: kernel: support for scsi tape devices Support for scsi tape devices as kernel module. This allow to use scsi tape devices in openwrt. Signed-off-by: Giuseppe Magnotta <[email protected]> [moved to block.mk] Signed-off-by: Hauke Mehrtens <[email protected]> Modified: trunk/package/kernel/linux/modules/block.mk =================================================================== --- trunk/package/kernel/linux/modules/block.mk 2015-11-15 22:09:13 UTC (rev 47481) +++ trunk/package/kernel/linux/modules/block.mk 2015-11-15 22:14:45 UTC (rev 47482) @@ -654,3 +654,17 @@ endef $(eval $(call KernelPackage,scsi-cdrom)) + + +define KernelPackage/scsi-tape + SUBMENU:=$(OTHER_MENU) + TITLE:=Kernel support for scsi tape drives + DEPENDS:=+kmod-scsi-core + KCONFIG:= \ + CONFIG_CHR_DEV_ST + FILES:= \ + $(LINUX_DIR)/drivers/scsi/st.ko + AUTOLOAD:=$(call AutoLoad,45,st) +endef + +$(eval $(call KernelPackage,scsi-tape)) _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
