https://jxself.org/git/linux-libre.git
Raw File
Tip revision: c8778212775eb15c6f1245b58ae05fd12e0086c3 authored by Jason Self on 21 July 2016, 07:26:30 UTC
Linux-libre 3.12.62-gnu
Tip revision: c877821
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