port more modules over to the new system

SVN-Revision: 5220
This commit is contained in:
Felix Fietkau
2006-10-19 02:05:17 +00:00
parent 144572780b
commit d2e30add61
5 changed files with 185 additions and 250 deletions

View File

@@ -1,4 +1,4 @@
#
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
@@ -99,3 +99,24 @@ endef
$(eval $(call KernelPackage,soundcore))
define KernelPackage/loop
TITLE:=Loopback device support
DESCRIPTION:=Kernel module for loopback device support
KCONFIG:=$(CONFIG_BLK_DEV_LOOP)
SUBMENU:=$(EMENU)
AUTOLOAD:=$(call AutoLoad,30,loop)
FILES:=$(MODULES_DIR)/kernel/drivers/block/loop.$(LINUX_KMOD_SUFFIX)
endef
$(eval $(call KernelPackage,loop))
define KernelPackage/nbd
TITLE:=Network block device support
DESCRIPTION:=Kernel module for network block device support
KCONFIG:=$(CONFIG_BLK_DEV_NBD)
SUBMENU:=$(EMENU)
AUTOLOAD:=$(call AutoLoad,30,nbd)
FILES:=$(MODULES_DIR)/kernel/drivers/block/nbd.$(LINUX_KMOD_SUFFIX)
endef
$(eval $(call KernelPackage,nbd))