https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 96b521e53b4fb49138d572dbe53ca80c5e909a44 authored by Jason Self on 23 January 2016, 04:34:03 UTC
Linux-libre 3.10.95-gnu
Tip revision: 96b521e
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