https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 7730df8189d1fadf36ec02940c2fe953e84737b4 authored by Jason Self on 02 November 2015, 08:35:12 UTC
Linux-libre 3.12.50-gnu
Tip revision: 7730df8
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