https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 6fedada7bb7a01d4aabd6238a558400f339923c6 authored by Jason Self on 28 November 2011, 22:48:31 UTC
Linux-libre 3.1.4-gnu1
Tip revision: 6fedada
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