mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-19 06:54:58 +01:00
move kmod-nbd & kmod-loop from other.mk to block.mk, disable cryptoloop since it's not packaged anywhere
SVN-Revision: 8812
This commit is contained in:
parent
dbfc77de4c
commit
309b0c7817
@ -136,3 +136,35 @@ define KernelPackage/scsi-core
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,scsi-core))
|
||||
|
||||
|
||||
define KernelPackage/loop
|
||||
SUBMENU:=$(BLOCK_MENU)
|
||||
TITLE:=Loopback device support
|
||||
KCONFIG:= \
|
||||
CONFIG_BLK_DEV_LOOP \
|
||||
CONFIG_BLK_DEV_CRYPTOLOOP=n
|
||||
FILES:=$(LINUX_DIR)/drivers/block/loop.$(LINUX_KMOD_SUFFIX)
|
||||
AUTOLOAD:=$(call AutoLoad,30,loop)
|
||||
endef
|
||||
|
||||
define KernelPackage/loop/description
|
||||
Kernel module for loopback device support
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,loop))
|
||||
|
||||
|
||||
define KernelPackage/nbd
|
||||
SUBMENU:=$(BLOCK_MENU)
|
||||
TITLE:=Network block device support
|
||||
KCONFIG:=CONFIG_BLK_DEV_NBD
|
||||
FILES:=$(LINUX_DIR)/drivers/block/nbd.$(LINUX_KMOD_SUFFIX)
|
||||
AUTOLOAD:=$(call AutoLoad,30,nbd)
|
||||
endef
|
||||
|
||||
define KernelPackage/nbd/description
|
||||
Kernel module for network block device support
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,nbd))
|
||||
|
@ -156,36 +156,6 @@ endef
|
||||
$(eval $(call KernelPackage,soundcore))
|
||||
|
||||
|
||||
define KernelPackage/loop
|
||||
SUBMENU:=$(OTHER_MENU)
|
||||
TITLE:=Loopback device support
|
||||
KCONFIG:=CONFIG_BLK_DEV_LOOP
|
||||
FILES:=$(LINUX_DIR)/drivers/block/loop.$(LINUX_KMOD_SUFFIX)
|
||||
AUTOLOAD:=$(call AutoLoad,30,loop)
|
||||
endef
|
||||
|
||||
define KernelPackage/loop/description
|
||||
Kernel module for loopback device support
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,loop))
|
||||
|
||||
|
||||
define KernelPackage/nbd
|
||||
SUBMENU:=$(OTHER_MENU)
|
||||
TITLE:=Network block device support
|
||||
KCONFIG:=CONFIG_BLK_DEV_NBD
|
||||
FILES:=$(LINUX_DIR)/drivers/block/nbd.$(LINUX_KMOD_SUFFIX)
|
||||
AUTOLOAD:=$(call AutoLoad,30,nbd)
|
||||
endef
|
||||
|
||||
define KernelPackage/nbd/description
|
||||
Kernel module for network block device support
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,nbd))
|
||||
|
||||
|
||||
define KernelPackage/capi
|
||||
SUBMENU:=$(OTHER_MENU)
|
||||
TITLE:=CAPI Support
|
||||
|
Loading…
Reference in New Issue
Block a user