Dynamically determine which ramdisk to use

.Also, rename ext2_ramdisk to ramdisk_ext2.
This commit is contained in:
Thomas Veerman
2012-06-06 11:49:36 +00:00
parent f09c2e014f
commit 03ea1c1676
7 changed files with 27 additions and 16 deletions

View File

@@ -14,8 +14,13 @@ SUBDIR= at_wini floppy log tty pci ext2_ramdisk ramdisk memory
SUBDIR+= ahci amddev atl2 at_wini audio dec21140A dp8390 dpeth \
e1000 fbd filter floppy fxp hello lance log orinoco pci printer \
random readclock rtl8139 rtl8169 ti1225 tty vbox acpi \
ext2_ramdisk ramdisk memory
memory
.endif
.if ${MKBUILDEXT2RD} != "yes"
SUBDIR+= ramdisk
.else
SUBDIR+= ramdisk_ext2
.endif
.include <bsd.subdir.mk>