https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 52526f0de990576ec59bff0b9b4ca575223fdefd authored by Jason Self on 07 April 2014, 08:51:49 UTC
Linux-libre 3.12.17-gnu
Tip revision: 52526f0
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