
It was not used or tested on x86 in practice, and the automated arm tests should obviate the need for a dummy-only x86 implementation. It should be noted that this change is merely the simplest way to deal with conflicts with live update (for the second time now). Change-Id: I6e066c4659c6213cd556144271784588356b140f
19 lines
361 B
Makefile
19 lines
361 B
Makefile
# Makefile for the mmc driver.
|
|
PROGS= mmc emmc
|
|
MAN.mmc=
|
|
MAN.emmc=
|
|
|
|
SRCS.mmc= mmcblk.c mmchost_dummy.c sdhcreg.h sdmmcreg.h
|
|
SRCS.mmc += mmchost_mmchs.c
|
|
SRCS.emmc= emmc.c mmcblk.c
|
|
|
|
DPADD+= ${LIBBLOCKDRIVER} ${LIBSYS}
|
|
LDADD+= -lblockdriver -lsys
|
|
CLEANFILES+=.depend mmcblk.d
|
|
|
|
#
|
|
# This is a system driver.
|
|
CPPFLAGS+= -D_SYSTEM=1
|
|
|
|
.include <minix.service.mk>
|