https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 9a3183bc7c0d94c89a8f5166f2368d1a29142f0f authored by Jason Self on 18 February 2011, 00:00:24 UTC
Linux-libre 2.6.32.29-gnu1
Tip revision: 9a3183b
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