Revision cc6bcf7d2ec2234e7b41770185e4dc826390185e authored by Jeffrey (Sheng-Hui) Chu on 23 November 2011, 10:33:07 UTC, committed by Jean Delvare on 23 November 2011, 10:33:07 UTC
The wrong bits were put on the wire, fix that.

This fixes kernel bug #42562.

Signed-off-by: Sheng-Hui J. Chu <jeffchu@broadcom.com>
Cc: stable@kernel.org
Signed-off-by: Jean Delvare <khali@linux-fr.org>
1 parent b4bbb02
Raw File
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