https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 59eba6c46b838d9ca9ed301b505abef1236f309e authored by Jason Self on 17 May 2012, 19:56:28 UTC
Linux-libre 2.6.34.12-gnu1
Tip revision: 59eba6c
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