https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 588a565fe2912a18ffc1c8168aed52d0fc1f995f authored by Jason Self on 31 July 2014, 21:55:46 UTC
Linux-libre 3.10.51-gnu
Tip revision: 588a565
Makefile
#
# Makefile for the linux RomFS filesystem routines.
#

obj-$(CONFIG_ROMFS_FS) += romfs.o

romfs-y := storage.o super.o

ifneq ($(CONFIG_MMU),y)
romfs-$(CONFIG_ROMFS_ON_MTD) += mmap-nommu.o
endif

back to top