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
291 B
Makefile
12 lines
291 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/nand
|
|
|
|
KMOD= nandsim
|
|
SRCS= nandsim.c nandsim_chip.c nandsim_swap.c nandsim_ctrl.c nandsim_log.c\
|
|
bus_if.h device_if.h vnode_if.h nfc_if.h nand_if.h
|
|
MFILES= kern/bus_if.m kern/device_if.m\
|
|
dev/nand/nfc_if.m dev/nand/nand_if.m
|
|
|
|
.include <bsd.kmod.mk>
|