7f725bcd5c
The NAND Flash environment consists of several distinct components: - NAND framework (drivers harness for NAND controllers and NAND chips) - NAND simulator (NANDsim) - NAND file system (NAND FS) - Companion tools and utilities - Documentation (manual pages) This work is still experimental. Please use with caution. Obtained from: Semihalf Supported by: FreeBSD Foundation, Juniper Networks
12 lines
223 B
Makefile
12 lines
223 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= nandtool
|
|
SRCS= nandtool.c nand_read.c nand_write.c nand_erase.c nand_info.c
|
|
SRCS+= nand_readoob.c nand_writeoob.c
|
|
BINDIR= /usr/sbin
|
|
DPADD= ${LIBGEOM}
|
|
LDADD= -lgeom
|
|
MAN= nandtool.8
|
|
|
|
.include <bsd.prog.mk>
|