Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.2 13 lines 423 B view raw
1# SPDX-License-Identifier: GPL-2.0 2 3EROFS_VERSION = "1.0pre1" 4 5ccflags-y += -Wall -DEROFS_VERSION=\"$(EROFS_VERSION)\" 6 7obj-$(CONFIG_EROFS_FS) += erofs.o 8# staging requirement: to be self-contained in its own directory 9ccflags-y += -I $(srctree)/$(src)/include 10erofs-objs := super.o inode.o data.o namei.o dir.o utils.o 11erofs-$(CONFIG_EROFS_FS_XATTR) += xattr.o 12erofs-$(CONFIG_EROFS_FS_ZIP) += unzip_vle.o unzip_vle_lz4.o 13