1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 18:17:32 +02:00

kernel: add scsi cdrom support

This closes #9125.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26548 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
hauke 2011-04-09 15:59:03 +00:00
parent d2bb507b50
commit bdb465749d

View File

@ -599,6 +599,7 @@ $(eval $(call KernelPackage,scsi-core))
define KernelPackage/scsi-generic
SUBMENU:=$(BLOCK_MENU)
TITLE:=Kernel support for SCSI generic
DEPENDS:=+!TARGET_x86:kmod-scsi-core
KCONFIG:= \
CONFIG_CHR_DEV_SG
FILES:= \
@ -607,3 +608,20 @@ define KernelPackage/scsi-generic
endef
$(eval $(call KernelPackage,scsi-generic))
define KernelPackage/scsi-cdrom
SUBMENU:=$(BLOCK_MENU)
TITLE:=Kernel support for CD / DVD drives
DEPENDS:=+!TARGET_x86:kmod-scsi-core
KCONFIG:= \
CONFIG_BLK_DEV_SR \
CONFIG_BLK_DEV_SR_VENDOR=n
FILES:= \
$(LINUX_DIR)/drivers/cdrom/cdrom.ko \
$(LINUX_DIR)/drivers/scsi/sr_mod.ko
AUTOLOAD:=$(call AutoLoad,30,cdrom) $(call AutoLoad,45,sr_mod)
endef
$(eval $(call KernelPackage,scsi-cdrom))