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
13 lines
318 B
Makefile
13 lines
318 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../fs/nandfs
|
|
|
|
KMOD= nandfs
|
|
SRCS= vnode_if.h \
|
|
bmap.c nandfs_bmap.c nandfs_dir.c nandfs_subr.c nandfs_vfsops.c \
|
|
nandfs_vnops.c nandfs_alloc.c nandfs_cpfile.c nandfs_dat.c \
|
|
nandfs_ifile.c nandfs_segment.c nandfs_sufile.c nandfs_buffer.c \
|
|
nandfs_cleaner.c
|
|
|
|
.include <bsd.kmod.mk>
|