de291cdb60
* Add dummy driver to allow independent testing of mmcblk. * Always build the mmc driver to prevent breakage. * Allow to specify the mmc driver to be used at load time. Change-Id: I4e14b912fb8f3612e252864b53733968b23ac023
20 lines
484 B
Makefile
20 lines
484 B
Makefile
# Makefile for all device drivers.
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MKIMAGEONLY} == "yes"
|
|
|
|
# memory driver must be last for ramdisk image
|
|
SUBDIR= at_wini floppy log tty pci ramdisk memory
|
|
|
|
.else
|
|
|
|
# memory driver must be last for ramdisk image
|
|
SUBDIR+= ahci amddev atl2 at_wini audio dec21140A dp8390 dpeth \
|
|
e1000 fbd filter floppy fxp hello lance log mmc orinoco pci printer \
|
|
random readclock rtl8139 rtl8169 ti1225 tty vbox acpi \
|
|
memory ramdisk
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|