https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 619514e88371abc35fa42e2c2ac5be88ddc28d96 authored by Jason Self on 28 March 2013, 19:06:51 UTC
Linux-libre 3.0.71-gnu1
Tip revision: 619514e
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