2b6ee22130
of Szeged, Hungary. The commit includes: - Flash layer, which gives a common API to access flash devices - NAND controller subsystem for the flash layer - An example OMAP driver which is used on BeagleBoard or alike ARM boards
16 lines
252 B
Makefile
16 lines
252 B
Makefile
# $NetBSD: Makefile,v 1.1 2011/02/26 18:07:31 ahoka Exp $
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.PATH: ${S}/dev/nand
|
|
|
|
KMOD= nand
|
|
IOCONF= nand.ioconf
|
|
SRCS= nand.c
|
|
SRCS+= nand_io.c
|
|
SRCS+= nand_bbt.c
|
|
SRCS+= nand_crc.c
|
|
SRCS+= hamming.c
|
|
|
|
.include <bsd.kmodule.mk>
|