https://jxself.org/git/linux-libre.git
Raw File
Tip revision: ced9b8ad9cf6ad62c7df3bd8e38dfa7377dc8f73 authored by Jason Self on 06 January 2012, 22:15:53 UTC
Linux-libre 3.0.16-gnu1
Tip revision: ced9b8a
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