kernel: remove obsolete CompareKernelPatchVer calls
[openwrt.git] / package / kernel / modules / block.mk
1 #
2 # Copyright (C) 2006-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 BLOCK_MENU:=Block Devices
9
10 define KernelPackage/aoe
11   SUBMENU:=$(BLOCK_MENU)
12   TITLE:=ATA over Ethernet support
13   KCONFIG:=CONFIG_ATA_OVER_ETH
14   FILES:=$(LINUX_DIR)/drivers/block/aoe/aoe.ko
15   AUTOLOAD:=$(call AutoLoad,30,aoe)
16 endef
17
18 define KernelPackage/aoe/description
19   Kernel support for ATA over Ethernet
20 endef
21
22 $(eval $(call KernelPackage,aoe))
23
24
25 define KernelPackage/ata-core
26   SUBMENU:=$(BLOCK_MENU)
27   TITLE:=Serial and Parallel ATA support
28   DEPENDS:=@PCI_SUPPORT +kmod-scsi-core @(!TARGET_ubicom32||!TARGET_etrax)
29   KCONFIG:=CONFIG_ATA
30   FILES:=$(LINUX_DIR)/drivers/ata/libata.ko
31   AUTOLOAD:=$(call AutoLoad,21,libata,1)
32 endef
33
34 $(eval $(call KernelPackage,ata-core))
35
36
37 define AddDepends/ata
38   SUBMENU:=$(BLOCK_MENU)
39   DEPENDS+=kmod-ata-core $(1)
40 endef
41
42
43 define KernelPackage/ata-ahci
44   TITLE:=AHCI Serial ATA support
45   KCONFIG:=CONFIG_SATA_AHCI
46   FILES:= \
47     $(LINUX_DIR)/drivers/ata/ahci.ko \
48     $(LINUX_DIR)/drivers/ata/libahci.ko
49   AUTOLOAD:=$(call AutoLoad,41,libahci ahci,1)
50   $(call AddDepends/ata)
51 endef
52
53 define KernelPackage/ata-ahci/description
54  Support for AHCI Serial ATA controllers.
55 endef
56
57 $(eval $(call KernelPackage,ata-ahci))
58
59
60 define KernelPackage/ata-artop
61   TITLE:=ARTOP 6210/6260 PATA support
62   KCONFIG:=CONFIG_PATA_ARTOP
63   FILES:=$(LINUX_DIR)/drivers/ata/pata_artop.ko
64   AUTOLOAD:=$(call AutoLoad,41,pata_artop,1)
65   $(call AddDepends/ata)
66 endef
67
68 define KernelPackage/ata-artop/description
69  PATA support for ARTOP 6210/6260 host controllers.
70 endef
71
72 $(eval $(call KernelPackage,ata-artop))
73
74
75 define KernelPackage/ata-marvell-sata
76   TITLE:=Marvell Serial ATA support
77   KCONFIG:=CONFIG_SATA_MV
78   FILES:=$(LINUX_DIR)/drivers/ata/sata_mv.ko
79   AUTOLOAD:=$(call AutoLoad,41,sata_mv,1)
80   $(call AddDepends/ata)
81 endef
82
83 define KernelPackage/ata-marvell-sata/description
84  SATA support for marvell chipsets
85 endef
86
87 $(eval $(call KernelPackage,ata-marvell-sata))
88
89
90 define KernelPackage/ata-nvidia-sata
91   TITLE:=Nvidia Serial ATA support
92   KCONFIG:=CONFIG_SATA_NV
93   FILES:=$(LINUX_DIR)/drivers/ata/sata_nv.ko
94   AUTOLOAD:=$(call AutoLoad,41,sata_nv,1)
95   $(call AddDepends/ata)
96 endef
97
98 $(eval $(call KernelPackage,ata-nvidia-sata))
99
100
101 define KernelPackage/ata-pdc202xx-old
102   SUBMENU:=$(BLOCK_MENU)
103   TITLE:=Older Promise PATA controller support
104   DEPENDS:=kmod-ata-core
105   KCONFIG:= \
106        CONFIG_ATA_SFF=y \
107        CONFIG_PATA_PDC_OLD
108   FILES:=$(LINUX_DIR)/drivers/ata/pata_pdc202xx_old.ko
109   AUTOLOAD:=$(call AutoLoad,41,pata_pdc202xx_old,1)
110 endef
111
112 define KernelPackage/ata-pdc202xx-old/description
113  This option enables support for the Promise 20246, 20262, 20263,
114  20265 and 20267 adapters.
115 endef
116
117 $(eval $(call KernelPackage,ata-pdc202xx-old))
118
119
120 define KernelPackage/ata-piix
121   TITLE:=Intel PIIX PATA/SATA support
122   KCONFIG:=CONFIG_ATA_PIIX
123   FILES:=$(LINUX_DIR)/drivers/ata/ata_piix.ko
124   AUTOLOAD:=$(call AutoLoad,41,ata_piix,1)
125   $(call AddDepends/ata)
126 endef
127
128 define KernelPackage/ata-piix/description
129  SATA support for Intel ICH5/6/7/8 series host controllers and
130  PATA support for Intel ESB/ICH/PIIX3/PIIX4 series host controllers.
131 endef
132
133 $(eval $(call KernelPackage,ata-piix))
134
135
136 define KernelPackage/ata-sil
137   TITLE:=Silicon Image SATA support
138   KCONFIG:=CONFIG_SATA_SIL
139   FILES:=$(LINUX_DIR)/drivers/ata/sata_sil.ko
140   AUTOLOAD:=$(call AutoLoad,41,sata_sil,1)
141   $(call AddDepends/ata)
142 endef
143
144 define KernelPackage/ata-sil/description
145  Support for Silicon Image Serial ATA controllers.
146 endef
147
148 $(eval $(call KernelPackage,ata-sil))
149
150
151 define KernelPackage/ata-sil24
152   TITLE:=Silicon Image 3124/3132 SATA support
153   KCONFIG:=CONFIG_SATA_SIL24
154   FILES:=$(LINUX_DIR)/drivers/ata/sata_sil24.ko
155   AUTOLOAD:=$(call AutoLoad,41,sata_sil24,1)
156   $(call AddDepends/ata)
157 endef
158
159 define KernelPackage/ata-sil24/description
160  Support for Silicon Image 3124/3132 Serial ATA controllers.
161 endef
162
163 $(eval $(call KernelPackage,ata-sil24))
164
165
166 define KernelPackage/ata-sis
167   TITLE:=SIS SATA support
168   KCONFIG:=CONFIG_SATA_SIS
169   FILES:=$(LINUX_DIR)/drivers/ata/sata_sis.ko
170   AUTOLOAD:=$(call AutoLoad,41,sata_sis,1)
171   $(call AddDepends/ata)
172 endef
173
174 define KernelPackage/ata-sis/description
175  Support for SIS Serial ATA controllers.
176 endef
177
178 $(eval $(call KernelPackage,ata-sis))
179
180
181 define KernelPackage/ata-via-sata
182   TITLE:=VIA SATA support
183   KCONFIG:=CONFIG_SATA_VIA
184   FILES:=$(LINUX_DIR)/drivers/ata/sata_via.ko
185   AUTOLOAD:=$(call AutoLoad,41,sata_via,1)
186   $(call AddDepends/ata)
187 endef
188
189 define KernelPackage/ata-via-sata/description
190  This option enables support for VIA Serial ATA.
191 endef
192
193 $(eval $(call KernelPackage,ata-via-sata))
194
195
196 define KernelPackage/block2mtd
197   SUBMENU:=$(BLOCK_MENU)
198   TITLE:=Block device MTD emulation
199   KCONFIG:=CONFIG_MTD_BLOCK2MTD
200   FILES:=$(LINUX_DIR)/drivers/mtd/devices/block2mtd.ko
201 endef
202
203 $(eval $(call KernelPackage,block2mtd))
204
205
206 define KernelPackage/dm
207   SUBMENU:=$(BLOCK_MENU)
208   TITLE:=Device Mapper
209   # All the "=n" are unnecessary, they're only there
210   # to stop the config from asking the question.
211   # MIRROR is M because I've needed it for pvmove.
212   KCONFIG:= \
213         CONFIG_BLK_DEV_MD=n \
214         CONFIG_DM_DEBUG=n \
215         CONFIG_DM_UEVENT=n \
216         CONFIG_DM_DELAY=n \
217         CONFIG_DM_MULTIPATH=n \
218         CONFIG_DM_ZERO=n \
219         CONFIG_DM_SNAPSHOT=n \
220         CONFIG_DM_LOG_USERSPACE=n \
221         CONFIG_MD=y \
222         CONFIG_BLK_DEV_DM \
223         CONFIG_DM_CRYPT \
224         CONFIG_DM_MIRROR
225   FILES:=$(LINUX_DIR)/drivers/md/dm-*.ko
226   AUTOLOAD:=$(call AutoLoad,30,dm-mod dm-log dm-region-hash dm-mirror dm-crypt)
227 endef
228
229 define KernelPackage/dm/description
230  Kernel module necessary for LVM2 support
231 endef
232
233 $(eval $(call KernelPackage,dm))
234
235
236 define KernelPackage/md-mod
237   SUBMENU:=$(BLOCK_MENU)
238   TITLE:=MD RAID
239   KCONFIG:= \
240        CONFIG_MD=y \
241        CONFIG_BLK_DEV_MD=m \
242        CONFIG_MD_AUTODETECT=y \
243        CONFIG_MD_FAULTY=n
244   FILES:=$(LINUX_DIR)/drivers/md/md-mod.ko
245   AUTOLOAD:=$(call AutoLoad,27,md-mod)
246 endef
247
248 define KernelPackage/md-mod/description
249  Kernel RAID md module (md-mod.ko).
250  You will need to select at least one RAID level module below.
251 endef
252
253 $(eval $(call KernelPackage,md-mod))
254
255
256 define KernelPackage/md/Depends
257   SUBMENU:=$(BLOCK_MENU)
258   DEPENDS:=kmod-md-mod $(1)
259 endef
260
261
262 define KernelPackage/md-linear
263 $(call KernelPackage/md/Depends,)
264   TITLE:=RAID Linear Module
265   KCONFIG:=CONFIG_MD_LINEAR
266   FILES:=$(LINUX_DIR)/drivers/md/linear.ko
267   AUTOLOAD:=$(call AutoLoad,28,linear)
268 endef
269
270 define KernelPackage/md-linear/description
271  RAID "Linear" or "Append" driver module (linear.ko)
272 endef
273
274 $(eval $(call KernelPackage,md-linear))
275
276
277 define KernelPackage/md-raid0
278 $(call KernelPackage/md/Depends,)
279   TITLE:=RAID0 Module
280   KCONFIG:=CONFIG_MD_RAID0
281   FILES:=$(LINUX_DIR)/drivers/md/raid0.ko
282   AUTOLOAD:=$(call AutoLoad,28,raid0)
283 endef
284
285 define KernelPackage/md-raid0/description
286  RAID Level 0 (Striping) driver module (raid0.ko)
287 endef
288
289 $(eval $(call KernelPackage,md-raid0))
290
291
292 define KernelPackage/md-raid1
293 $(call KernelPackage/md/Depends,)
294   TITLE:=RAID1 Module
295   KCONFIG:=CONFIG_MD_RAID1
296   FILES:=$(LINUX_DIR)/drivers/md/raid1.ko
297   AUTOLOAD:=$(call AutoLoad,28,raid1)
298 endef
299
300 define KernelPackage/md-raid1/description
301  RAID Level 1 (Mirroring) driver (raid1.ko)
302 endef
303
304 $(eval $(call KernelPackage,md-raid1))
305
306
307 define KernelPackage/md-raid10
308 $(call KernelPackage/md/Depends,)
309   TITLE:=RAID10 Module
310   KCONFIG:=CONFIG_MD_RAID10
311   FILES:=$(LINUX_DIR)/drivers/md/raid10.ko
312   AUTOLOAD:=$(call AutoLoad,28,raid10)
313 endef
314
315 define KernelPackage/md-raid10/description
316  RAID Level 10 (Mirroring+Striping) driver module (raid10.ko)
317 endef
318
319 $(eval $(call KernelPackage,md-raid10))
320
321
322 define KernelPackage/md-raid456
323 $(call KernelPackage/md/Depends,)
324   TITLE:=RAID Level 456 Driver
325   KCONFIG:= \
326        CONFIG_XOR_BLOCKS \
327        CONFIG_ASYNC_CORE \
328        CONFIG_ASYNC_MEMCPY \
329        CONFIG_ASYNC_XOR \
330        CONFIG_ASYNC_PQ \
331        CONFIG_ASYNC_RAID6_RECOV \
332        CONFIG_ASYNC_RAID6_TEST=n \
333        CONFIG_MD_RAID6_PQ \
334        CONFIG_MD_RAID456 \
335        CONFIG_MULTICORE_RAID456=n
336   FILES:= \
337         $(LINUX_DIR)/crypto/xor.ko \
338         $(LINUX_DIR)/crypto/async_tx/async_tx.ko \
339         $(LINUX_DIR)/crypto/async_tx/async_memcpy.ko \
340         $(LINUX_DIR)/crypto/async_tx/async_xor.ko \
341         $(LINUX_DIR)/crypto/async_tx/async_pq.ko \
342         $(LINUX_DIR)/crypto/async_tx/async_raid6_recov.ko \
343         $(LINUX_DIR)/drivers/md/raid456.ko \
344         $(LINUX_DIR)/lib/raid6/raid6_pq.ko
345   AUTOLOAD:=$(call AutoLoad,28, xor async_tx async_memcpy async_xor raid6_pq async_pq async_raid6_recov raid456)
346 endef
347
348 define KernelPackage/md-raid456/description
349  RAID Level 4,5,6 kernel module (raid456.ko)
350
351  Includes the following modules required by
352  raid456.ko:
353     xor.ko
354     async_tx.ko
355     async_xor.ko
356     async_memcpy.ko
357     async_pq.ko
358     async_raid5_recov.ko
359     raid6_pq.ko 
360 endef
361
362 $(eval $(call KernelPackage,md-raid456))
363
364
365 define KernelPackage/md-multipath
366 $(call KernelPackage/md/Depends,)
367   TITLE:=MD Multipath Module
368   KCONFIG:=CONFIG_MD_MULTIPATH
369   FILES:=$(LINUX_DIR)/drivers/md/multipath.ko
370   AUTOLOAD:=$(call AutoLoad,29,multipath)
371 endef
372
373 define KernelPackage/md-multipath/description
374  Multipath driver module (multipath.ko)
375 endef
376
377 $(eval $(call KernelPackage,md-multipath))
378
379
380 define KernelPackage/ide-core
381   SUBMENU:=$(BLOCK_MENU)
382   TITLE:=IDE (ATA/ATAPI) device support
383   DEPENDS:=@PCI_SUPPORT
384   KCONFIG:= \
385         CONFIG_IDE \
386         CONFIG_BLK_DEV_IDE \
387         CONFIG_BLK_DEV_IDEDISK \
388         CONFIG_IDE_GD \
389         CONFIG_IDE_GD_ATA=y \
390         CONFIG_IDE_GD_ATAPI=n \
391         CONFIG_IDEPCI_PCIBUS_ORDER=y \
392         CONFIG_BLK_DEV_IDEDMA_PCI=y \
393         CONFIG_BLK_DEV_IDEPCI=y
394   FILES:= \
395         $(LINUX_DIR)/drivers/ide/ide-core.ko \
396         $(LINUX_DIR)/drivers/ide/ide-gd_mod.ko
397   AUTOLOAD:= \
398         $(call AutoLoad,20,ide-core,1) \
399         $(call AutoLoad,40,ide-gd_mod,1)
400 endef
401
402 define KernelPackage/ide-core/description
403  Kernel support for IDE, useful for usb mass storage devices (e.g. on WL-HDD)
404  Includes:
405  - ide-core
406  - ide-gd_mod
407 endef
408
409 $(eval $(call KernelPackage,ide-core))
410
411
412 define AddDepends/ide
413   SUBMENU:=$(BLOCK_MENU)
414   DEPENDS+=kmod-ide-core $(1)
415 endef
416
417
418 define KernelPackage/ide-generic
419   SUBMENU:=$(BLOCK_MENU)
420   DEPENDS:=@PCI_SUPPORT
421   TITLE:=Kernel support for generic PCI IDE chipsets
422   KCONFIG:=CONFIG_BLK_DEV_GENERIC
423   FILES:=$(LINUX_DIR)/drivers/ide/ide-pci-generic.ko
424   AUTOLOAD:=$(call AutoLoad,30,ide-pci-generic,1)
425   $(call AddDepends/ide)
426 endef
427
428 $(eval $(call KernelPackage,ide-generic))
429
430
431 define KernelPackage/ide-generic-old
432   SUBMENU:=$(BLOCK_MENU)
433   TITLE:=Kernel support for generic (legacy) IDE chipsets
434   KCONFIG:=CONFIG_IDE_GENERIC
435   FILES:=$(LINUX_DIR)/drivers/ide/ide-generic.ko
436   AUTOLOAD:=$(call AutoLoad,30,ide-generic,1)
437   $(call AddDepends/ide)
438 endef
439
440 $(eval $(call KernelPackage,ide-generic-old))
441
442
443 define KernelPackage/ide-aec62xx
444   TITLE:=Acard AEC62xx IDE driver
445   DEPENDS:=@PCI_SUPPORT
446   KCONFIG:=CONFIG_BLK_DEV_AEC62XX
447   FILES:=$(LINUX_DIR)/drivers/ide/aec62xx.ko
448   AUTOLOAD:=$(call AutoLoad,30,aec62xx,1)
449   $(call AddDepends/ide)
450 endef
451
452 define KernelPackage/ide-aec62xx/description
453  Support for Acard AEC62xx (Artop ATP8xx) IDE controllers.
454 endef
455
456 $(eval $(call KernelPackage,ide-aec62xx,1))
457
458
459 define KernelPackage/ide-pdc202xx
460   TITLE:=Promise PDC202xx IDE driver
461   DEPENDS:=@PCI_SUPPORT
462   KCONFIG:=CONFIG_BLK_DEV_PDC202XX_OLD
463   FILES:=$(LINUX_DIR)/drivers/ide/pdc202xx_old.ko
464   AUTOLOAD:=$(call AutoLoad,30,pdc202xx_old,1)
465   $(call AddDepends/ide)
466 endef
467
468 define KernelPackage/ide-pdc202xx/description
469  Support for the Promise Ultra 33/66/100 (PDC202{46|62|65|67|68}) IDE
470  controllers.
471 endef
472
473 $(eval $(call KernelPackage,ide-pdc202xx))
474
475
476 define KernelPackage/ide-it821x
477   TITLE:=ITE IT821x IDE driver
478   DEPENDS:=@PCI_SUPPORT
479   KCONFIG:=CONFIG_BLK_DEV_IT821X
480   FILES=$(LINUX_DIR)/drivers/ide/it821x.ko
481   AUTOLOAD:=$(call AutoLoad,30,it821x,1)
482   $(call AddDepends/ide)
483 endef
484
485 define KernelPackage/ide-it821x/description
486   Kernel module for the ITE IDE821x IDE controllers.
487 endef
488
489 $(eval $(call KernelPackage,ide-it821x))
490
491
492 define KernelPackage/cs5535
493   TITLE:=NSC/AMD CS5535 chipset support
494   DEPENDS:=@TARGET_x86
495   KCONFIG:=CONFIG_BLK_DEV_CS5535
496   FILES=$(LINUX_DIR)/drivers/ide/cs5535.ko
497   AUTOLOAD:=$(call AutoLoad,30,cs5535,1)
498   $(call AddDepends/ide)
499 endef
500
501 define KernelPackage/cs5535/description
502   Kernel module for the NSC/AMD CS5535 companion chip
503 endef
504
505 $(eval $(call KernelPackage,cs5535))
506
507
508 define KernelPackage/cs5536
509   TITLE:=AMD CS5536 chipset support
510   DEPENDS:=@TARGET_x86
511   KCONFIG:=CONFIG_BLK_DEV_CS5536
512   FILES=$(LINUX_DIR)/drivers/ide/cs5536.ko
513   AUTOLOAD:=$(call AutoLoad,30,cs5536,1)
514   $(call AddDepends/ide)
515 endef
516
517 define KernelPackage/cs5536/description
518   Kernel module for the AMD CS5536 Geode LX companion chip
519 endef
520
521 $(eval $(call KernelPackage,cs5536))
522
523
524 define KernelPackage/pata-cs5535
525   TITLE:=CS5535 PATA support
526   DEPENDS:=@TARGET_x86 @PCI_SUPPORT
527   KCONFIG:=CONFIG_PATA_CS5535
528   FILES=$(LINUX_DIR)/drivers/ata/pata_cs5535.ko
529   AUTOLOAD:=$(call AutoLoad,30,pata_cs5535,1)
530   $(call AddDepends/ata)
531 endef
532
533 define KernelPackage/pata-cs5535/description
534   Kernel module for the NSC/AMD CS5535 companion chip
535 endef
536
537 $(eval $(call KernelPackage,pata-cs5535))
538
539
540 define KernelPackage/pata-cs5536
541   TITLE:=CS5536 PATA support
542   DEPENDS:=@TARGET_x86 @PCI_SUPPORT
543   KCONFIG:=CONFIG_PATA_CS5536
544   FILES=$(LINUX_DIR)/drivers/ata/pata_cs5536.ko
545   AUTOLOAD:=$(call AutoLoad,30,pata_cs5536,1)
546   $(call AddDepends/ata)
547 endef
548
549 define KernelPackage/pata-cs5536/description
550   Kernel module for the AMD CS5536 Geode LX companion chip
551 endef
552
553 $(eval $(call KernelPackage,pata-cs5536))
554
555
556 define KernelPackage/libsas
557   SUBMENU:=$(BLOCK_MENU)
558   TITLE:=SAS Domain Transport Attributes
559   DEPENDS:=@TARGET_x86
560   KCONFIG:=CONFIG_SCSI_SAS_LIBSAS \
561         CONFIG_SCSI_SAS_ATTRS \
562         CONFIG_SCSI_SAS_ATA=y \
563         CONFIG_SCSI_SAS_HOST_SMP=y \
564         CONFIG_SCSI_SAS_LIBSAS_DEBUG=y
565   FILES:= \
566         $(LINUX_DIR)/drivers/scsi/scsi_transport_sas.ko \
567         $(LINUX_DIR)/drivers/scsi/libsas/libsas.ko
568   AUTOLOAD:=$(call AutoLoad,29,scsi_transport_sas libsas,1)
569 endef
570
571 define KernelPackage/libsas/description
572   SAS Domain Transport Attributes support.
573 endef
574
575 $(eval $(call KernelPackage,libsas,1))
576
577
578 define KernelPackage/loop
579   SUBMENU:=$(BLOCK_MENU)
580   TITLE:=Loopback device support
581   KCONFIG:= \
582         CONFIG_BLK_DEV_LOOP \
583         CONFIG_BLK_DEV_CRYPTOLOOP=n
584   FILES:=$(LINUX_DIR)/drivers/block/loop.ko
585   AUTOLOAD:=$(call AutoLoad,30,loop)
586 endef
587
588 define KernelPackage/loop/description
589  Kernel module for loopback device support
590 endef
591
592 $(eval $(call KernelPackage,loop))
593
594
595 define KernelPackage/mvsas
596   SUBMENU:=$(BLOCK_MENU)
597   TITLE:=Marvell 88SE6440 SAS/SATA driver
598   DEPENDS:=@TARGET_x86 +kmod-libsas
599   KCONFIG:= \
600         CONFIG_SCSI_MVSAS \
601         CONFIG_SCSI_MVSAS_TASKLET=n
602   FILES:=$(LINUX_DIR)/drivers/scsi/mvsas/mvsas.ko
603   AUTOLOAD:=$(call AutoLoad,40,mvsas,1)
604 endef
605
606 define KernelPackage/mvsas/description
607   Kernel support for the Marvell SAS SCSI adapters
608 endef
609
610 $(eval $(call KernelPackage,mvsas))
611
612
613 define KernelPackage/nbd
614   SUBMENU:=$(BLOCK_MENU)
615   TITLE:=Network block device support
616   KCONFIG:=CONFIG_BLK_DEV_NBD
617   FILES:=$(LINUX_DIR)/drivers/block/nbd.ko
618   AUTOLOAD:=$(call AutoLoad,30,nbd)
619 endef
620
621 define KernelPackage/nbd/description
622  Kernel module for network block device support
623 endef
624
625 $(eval $(call KernelPackage,nbd))
626
627
628 define KernelPackage/scsi-core
629   SUBMENU:=$(BLOCK_MENU)
630   TITLE:=SCSI device support
631   KCONFIG:= \
632         CONFIG_SCSI \
633         CONFIG_BLK_DEV_SD
634   FILES:= \
635         $(if $(findstring y,$(CONFIG_SCSI)),,$(LINUX_DIR)/drivers/scsi/scsi_mod.ko) \
636         $(LINUX_DIR)/drivers/scsi/sd_mod.ko
637   AUTOLOAD:=$(call AutoLoad,20,scsi_mod,1) $(call AutoLoad,40,sd_mod,1)
638 endef
639
640 $(eval $(call KernelPackage,scsi-core))
641
642
643 define KernelPackage/scsi-generic
644   SUBMENU:=$(BLOCK_MENU)
645   TITLE:=Kernel support for SCSI generic
646   DEPENDS:=+kmod-scsi-core
647   KCONFIG:= \
648         CONFIG_CHR_DEV_SG
649   FILES:= \
650         $(LINUX_DIR)/drivers/scsi/sg.ko
651   AUTOLOAD:=$(call AutoLoad,65,sg)
652 endef
653
654 $(eval $(call KernelPackage,scsi-generic))
655
656
657 define KernelPackage/scsi-cdrom
658   SUBMENU:=$(BLOCK_MENU)
659   TITLE:=Kernel support for CD / DVD drives
660   DEPENDS:=+kmod-scsi-core
661   KCONFIG:= \
662     CONFIG_BLK_DEV_SR \
663     CONFIG_BLK_DEV_SR_VENDOR=n
664   FILES:= \
665     $(LINUX_DIR)/drivers/cdrom/cdrom.ko \
666     $(LINUX_DIR)/drivers/scsi/sr_mod.ko
667   AUTOLOAD:=$(call AutoLoad,30,cdrom) $(call AutoLoad,45,sr_mod)
668 endef
669
670 $(eval $(call KernelPackage,scsi-cdrom))
671