https://jxself.org/git/linux-libre.git
Raw File
Tip revision: a3f643d6b0055e8eb5e7bb9dd26009d64b9791f4 authored by Jason Self on 23 June 2011, 22:29:18 UTC
Linux-libre 2.6.33.15-gnu1
Tip revision: a3f643d
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