https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 5ee10bac88a6e5166ecd7c83e66aa007a863982c authored by Jason Self on 02 August 2010, 17:25:05 UTC
Linux-libre 2.6.32.17-gnu1
Tip revision: 5ee10ba
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