Linux Audio

Check our new training course

Embedded Linux training

Mar 10-20, 2025, special US time zones
Register
Loading...
v4.6
 1#
 2# Makefile for the linux RomFS filesystem routines.
 3#
 4
 5obj-$(CONFIG_ROMFS_FS) += romfs.o
 6
 7romfs-y := storage.o super.o
 8
 9ifneq ($(CONFIG_MMU),y)
10romfs-$(CONFIG_ROMFS_ON_MTD) += mmap-nommu.o
11endif
12
v3.5.6
 1#
 2# Makefile for the linux RomFS filesystem routines.
 3#
 4
 5obj-$(CONFIG_ROMFS_FS) += romfs.o
 6
 7romfs-y := storage.o super.o
 8
 9ifneq ($(CONFIG_MMU),y)
10romfs-$(CONFIG_ROMFS_ON_MTD) += mmap-nommu.o
11endif
12