<div dir="ltr"><div><div><div>Hi,<br><br></div>I would like to submit a patch to add the scsi tape to the kernel modules.<br><br></div>For me it's useful because my openwrt device will manage also backup.<br><br></div>This is against trunk (main devel tree) repository<br><br>diff --git a/package/kernel/linux/modules/<a href="http://other.mk">other.mk</a> b/package/kernel/linux/modules/<a href="http://other.mk">other.mk</a><br>index 55fb6f1..e26390d 100644<br>--- a/package/kernel/linux/modules/<a href="http://other.mk">other.mk</a><br>+++ b/package/kernel/linux/modules/<a href="http://other.mk">other.mk</a><br>@@ -969,3 +969,17 @@ define KernelPackage/echo/description<br> endef<br> <br> $(eval $(call KernelPackage,echo))<br>+<br>+<br>+define KernelPackage/scsi-tape<br>+  SUBMENU:=$(OTHER_MENU)<br>+  TITLE:=Kernel support for scsi tape drives<br>+  DEPENDS:=+kmod-scsi-core<br>+  KCONFIG:= \<br>+    CONFIG_CHR_DEV_ST<br>+  FILES:= \<br>+    $(LINUX_DIR)/drivers/scsi/st.ko<br>+  AUTOLOAD:=$(call AutoLoad,45,st)<br>+endef<br>+<br>+$(eval $(call KernelPackage,scsi-tape))<br></div>