https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 62cb504694aaea8e7d21537f2213d7f60ead1379 authored by Jason Self on 07 January 2011, 23:08:56 UTC
Linux-libre 2.6.32.28-gnu1
Tip revision: 62cb504
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