https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 2d81dea751272a1db9c1d8887b084bc972358283 authored by Jason Self on 09 May 2014, 06:36:02 UTC
Linux-libre 3.12.19-gnu
Tip revision: 2d81dea
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