VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
b24413180f560 (Greg Kroah-Hartman       2017-11-01 15:07:57 +0100   1) # SPDX-License-Identifier: GPL-2.0
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700   2) #
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700   3) # Makefile for the Linux filesystems.
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700   4) #
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700   5) # 14 Sep 2000, Christoph Hellwig <hch@infradead.org>
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700   6) # Rewritten to use lists instead of if-statements.
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700   7) # 
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700   8) 
9361401eb7619 (David Howells            2006-09-30 20:45:40 +0200   9) obj-y :=	open.o read_write.o file_table.o super.o \
9361401eb7619 (David Howells            2006-09-30 20:45:40 +0200  10) 		char_dev.o stat.o exec.o pipe.o namei.o fcntl.o \
f776c738883bc (Al Viro                  2013-03-12 09:46:27 -0400  11) 		ioctl.o readdir.o select.o dcache.o inode.o \
ebf3f09c63490 (Thomas Petazzoni         2008-10-15 22:05:12 -0700  12) 		attr.o bad_inode.o file.o filesystems.o namespace.o \
9361401eb7619 (David Howells            2006-09-30 20:45:40 +0200  13) 		seq_file.o xattr.o libfs.o fs-writeback.o \
7a5cf791a7476 (Al Viro                  2018-03-05 19:15:50 -0500  14) 		pnode.o splice.o sync.o utimes.o d_path.o \
bbe7449e2599b (Phillip Potter           2019-01-21 00:54:27 +0000  15) 		stack.o fs_struct.o statfs.o fs_pin.o nsfs.o \
5287b07f6d7cc (Kees Cook                2020-10-02 10:38:16 -0700  16) 		fs_types.o fs_context.o fs_parser.o fsopen.o init.o \
c4728cfbed0f5 (Linus Torvalds           2020-10-23 11:33:41 -0700  17) 		kernel_read_file.o remap_range.o
9361401eb7619 (David Howells            2006-09-30 20:45:40 +0200  18) 
9361401eb7619 (David Howells            2006-09-30 20:45:40 +0200  19) ifeq ($(CONFIG_BLOCK),y)
2667bcbbd5ed7 (Jens Axboe               2014-05-19 11:02:18 -0600  20) obj-y +=	buffer.o block_dev.o direct-io.o mpage.o
9361401eb7619 (David Howells            2006-09-30 20:45:40 +0200  21) else
9361401eb7619 (David Howells            2006-09-30 20:45:40 +0200  22) obj-y +=	no-block.o
9361401eb7619 (David Howells            2006-09-30 20:45:40 +0200  23) endif
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  24) 
0226f4923f6c9 (Al Viro                  2011-12-06 12:21:54 -0500  25) obj-$(CONFIG_PROC_FS) += proc_namespace.o
0226f4923f6c9 (Al Viro                  2011-12-06 12:21:54 -0500  26) 
272eb01485dda (Eric Paris               2008-12-17 13:59:41 -0500  27) obj-y				+= notify/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  28) obj-$(CONFIG_EPOLL)		+= eventpoll.o
dadd2299ab61f (David Howells            2018-11-05 17:40:31 +0000  29) obj-y				+= anon_inodes.o
fba2afaaec790 (Davide Libenzi           2007-05-10 22:23:13 -0700  30) obj-$(CONFIG_SIGNALFD)		+= signalfd.o
b215e28399289 (Davide Libenzi           2007-05-10 22:23:16 -0700  31) obj-$(CONFIG_TIMERFD)		+= timerfd.o
e1ad7468c77dd (Davide Libenzi           2007-05-10 22:23:19 -0700  32) obj-$(CONFIG_EVENTFD)		+= eventfd.o
a14c151e567cb (Andrea Arcangeli         2015-09-04 15:46:54 -0700  33) obj-$(CONFIG_USERFAULTFD)	+= userfaultfd.o
ebf3f09c63490 (Thomas Petazzoni         2008-10-15 22:05:12 -0700  34) obj-$(CONFIG_AIO)               += aio.o
2b188cc1bb857 (Jens Axboe               2019-01-07 10:46:33 -0700  35) obj-$(CONFIG_IO_URING)		+= io_uring.o
771b53d033e86 (Jens Axboe               2019-10-22 10:25:58 -0600  36) obj-$(CONFIG_IO_WQ)		+= io-wq.o
6cd176a51e52e (Matthew Wilcox           2015-02-16 15:59:25 -0800  37) obj-$(CONFIG_FS_DAX)		+= dax.o
0b81d07790726 (Jaegeuk Kim              2015-05-15 16:26:10 -0700  38) obj-$(CONFIG_FS_ENCRYPTION)	+= crypto/
671e67b47e9ff (Eric Biggers             2019-07-22 09:26:21 -0700  39) obj-$(CONFIG_FS_VERITY)		+= verity/
bfcd17a6c5529 (Thomas Petazzoni         2008-08-06 15:12:22 +0200  40) obj-$(CONFIG_FILE_LOCKING)      += locks.o
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  41) obj-$(CONFIG_BINFMT_AOUT)	+= binfmt_aout.o
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  42) obj-$(CONFIG_BINFMT_EM86)	+= binfmt_em86.o
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  43) obj-$(CONFIG_BINFMT_MISC)	+= binfmt_misc.o
2535e0d723e4d (Josh Triplett            2013-04-30 15:27:44 -0700  44) obj-$(CONFIG_BINFMT_SCRIPT)	+= binfmt_script.o
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  45) obj-$(CONFIG_BINFMT_ELF)	+= binfmt_elf.o
b9d36d5d00029 (Roland McGrath           2008-01-30 13:31:46 +0100  46) obj-$(CONFIG_COMPAT_BINFMT_ELF)	+= compat_binfmt_elf.o
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  47) obj-$(CONFIG_BINFMT_ELF_FDPIC)	+= binfmt_elf_fdpic.o
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  48) obj-$(CONFIG_BINFMT_FLAT)	+= binfmt_flat.o
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  49) 
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  50) obj-$(CONFIG_FS_MBCACHE)	+= mbcache.o
5c8ebd57b6a51 (Christoph Hellwig        2013-12-20 05:16:37 -0800  51) obj-$(CONFIG_FS_POSIX_ACL)	+= posix_acl.o
a257cdd0e2179 (Andreas Gruenbacher      2005-06-22 17:16:26 +0000  52) obj-$(CONFIG_NFS_COMMON)	+= nfs_common/
046d662f48183 (Alex Kelly               2012-10-04 17:15:23 -0700  53) obj-$(CONFIG_COREDUMP)		+= coredump.o
146732ce104dd (Josh Triplett            2013-04-29 15:07:22 -0700  54) obj-$(CONFIG_SYSCTL)		+= drop_caches.o
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  55) 
990d6c2d7aee9 (Aneesh Kumar K.V         2011-01-29 18:43:26 +0530  56) obj-$(CONFIG_FHANDLE)		+= fhandle.o
1c230208f53de (Darrick J. Wong          2019-07-15 08:50:57 -0700  57) obj-y				+= iomap/
990d6c2d7aee9 (Aneesh Kumar K.V         2011-01-29 18:43:26 +0530  58) 
884d179dff3aa (Jan Kara                 2009-01-26 15:28:09 +0100  59) obj-y				+= quota/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  60) 
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  61) obj-$(CONFIG_PROC_FS)		+= proc/
ba341d55a420a (Tejun Heo                2014-02-03 14:09:17 -0500  62) obj-$(CONFIG_KERNFS)		+= kernfs/
ba341d55a420a (Tejun Heo                2014-02-03 14:09:17 -0500  63) obj-$(CONFIG_SYSFS)		+= sysfs/
cef0893dcf1fd (Joel Becker              2006-05-03 11:38:53 -0700  64) obj-$(CONFIG_CONFIGFS_FS)	+= configfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  65) obj-y				+= devpts/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  66) 
e7fd41792fc0e (David Teigland           2006-01-18 09:30:29 +0000  67) obj-$(CONFIG_DLM)		+= dlm/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  68)  
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  69) # Do not add any filesystems before this line
3d3c95046742e (David Howells            2020-05-13 17:41:20 +0100  70) obj-$(CONFIG_NETFS_SUPPORT)	+= netfs/
06b3db1b9bccd (David Howells            2009-04-03 16:42:36 +0100  71) obj-$(CONFIG_FSCACHE)		+= fscache/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  72) obj-$(CONFIG_REISERFS_FS)	+= reiserfs/
d8ae4601a4b7e (Theodore Ts'o            2009-02-28 09:50:01 -0500  73) obj-$(CONFIG_EXT4_FS)		+= ext4/
9172796bc3754 (Darrick J. Wong          2015-10-15 10:33:21 -0400  74) # We place ext4 before ext2 so that clean ext3 root fs's do NOT mount using the
9172796bc3754 (Darrick J. Wong          2015-10-15 10:33:21 -0400  75) # ext2 driver, which doesn't know about journalling!  Explicitly request ext2
9172796bc3754 (Darrick J. Wong          2015-10-15 10:33:21 -0400  76) # by giving the rootfstype= parameter.
9172796bc3754 (Darrick J. Wong          2015-10-15 10:33:21 -0400  77) obj-$(CONFIG_EXT2_FS)		+= ext2/
dab291af8d630 (Mingming Cao             2006-10-11 01:21:01 -0700  78) obj-$(CONFIG_JBD2)		+= jbd2/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  79) obj-$(CONFIG_CRAMFS)		+= cramfs/
fcef6fb6c5cf5 (Phillip Lougher          2009-01-05 08:46:27 +0000  80) obj-$(CONFIG_SQUASHFS)		+= squashfs/
8e3f715a7f004 (Robert P. J. Day         2007-10-16 23:29:27 -0700  81) obj-y				+= ramfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  82) obj-$(CONFIG_HUGETLBFS)		+= hugetlbfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  83) obj-$(CONFIG_CODA_FS)		+= coda/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  84) obj-$(CONFIG_MINIX_FS)		+= minix/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  85) obj-$(CONFIG_FAT_FS)		+= fat/
b9d1e2e6265f5 (Namjae Jeon              2020-03-02 15:21:42 +0900  86) obj-$(CONFIG_EXFAT_FS)		+= exfat/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  87) obj-$(CONFIG_BFS_FS)		+= bfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  88) obj-$(CONFIG_ISO9660_FS)	+= isofs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  89) obj-$(CONFIG_HFSPLUS_FS)	+= hfsplus/ # Before hfs to find wrapped HFS+
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  90) obj-$(CONFIG_HFS_FS)		+= hfs/
237fead619984 (Michael Halcrow          2006-10-04 02:16:22 -0700  91) obj-$(CONFIG_ECRYPT_FS)		+= ecryptfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  92) obj-$(CONFIG_VXFS_FS)		+= freevxfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  93) obj-$(CONFIG_NFS_FS)		+= nfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  94) obj-$(CONFIG_EXPORTFS)		+= exportfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  95) obj-$(CONFIG_NFSD)		+= nfsd/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  96) obj-$(CONFIG_LOCKD)		+= lockd/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  97) obj-$(CONFIG_NLS)		+= nls/
955405d1174ee (Gabriel Krisman Bertazi  2019-04-25 13:38:44 -0400  98) obj-$(CONFIG_UNICODE)		+= unicode/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700  99) obj-$(CONFIG_SYSV_FS)		+= sysv/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 100) obj-$(CONFIG_CIFS)		+= cifs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 101) obj-$(CONFIG_HPFS_FS)		+= hpfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 102) obj-$(CONFIG_NTFS_FS)		+= ntfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 103) obj-$(CONFIG_UFS_FS)		+= ufs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 104) obj-$(CONFIG_EFS_FS)		+= efs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 105) obj-$(CONFIG_JFFS2_FS)		+= jffs2/
0d7eff873caae (Artem Bityutskiy         2008-07-14 19:08:38 +0300 106) obj-$(CONFIG_UBIFS_FS)		+= ubifs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 107) obj-$(CONFIG_AFFS_FS)		+= affs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 108) obj-$(CONFIG_ROMFS_FS)		+= romfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 109) obj-$(CONFIG_QNX4FS_FS)		+= qnx4/
5d026c7242201 (Kai Bankett              2012-02-17 05:59:20 +0100 110) obj-$(CONFIG_QNX6FS_FS)		+= qnx6/
2a3ae0a1212dc (Ian Kent                 2018-06-07 17:11:31 -0700 111) obj-$(CONFIG_AUTOFS_FS)		+= autofs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 112) obj-$(CONFIG_ADFS_FS)		+= adfs/
04578f174f43d (Miklos Szeredi           2005-09-09 13:10:22 -0700 113) obj-$(CONFIG_FUSE_FS)		+= fuse/
ef94b1864d1ed (Miklos Szeredi           2014-11-20 16:39:59 +0100 114) obj-$(CONFIG_OVERLAY_FS)	+= overlayfs/
07f01962e3d37 (Mike Marshall            2015-07-17 10:38:17 -0400 115) obj-$(CONFIG_ORANGEFS_FS)       += orangefs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 116) obj-$(CONFIG_UDF_FS)		+= udf/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 117) obj-$(CONFIG_SUN_OPENPROMFS)	+= openpromfs/
63ca8ce2a2641 (Bob Copeland             2008-07-25 19:45:17 -0700 118) obj-$(CONFIG_OMFS_FS)		+= omfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 119) obj-$(CONFIG_JFS_FS)		+= jfs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 120) obj-$(CONFIG_XFS_FS)		+= xfs/
93fa58cb83133 (Eric Van Hensbergen      2005-09-09 13:04:18 -0700 121) obj-$(CONFIG_9P_FS)		+= 9p/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 122) obj-$(CONFIG_AFS_FS)		+= afs/
0c4fb877641c5 (Ryusuke Konishi          2009-04-06 19:01:41 -0700 123) obj-$(CONFIG_NILFS2_FS)		+= nilfs2/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 124) obj-$(CONFIG_BEFS_FS)		+= befs/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 125) obj-$(CONFIG_HOSTFS)		+= hostfs/
9ae326a69004d (David Howells            2009-04-03 16:42:41 +0100 126) obj-$(CONFIG_CACHEFILES)	+= cachefiles/
^1da177e4c3f4 (Linus Torvalds           2005-04-16 15:20:36 -0700 127) obj-$(CONFIG_DEBUG_FS)		+= debugfs/
4282d60689d4f (Steven Rostedt (Red Hat) 2015-01-20 11:36:55 -0500 128) obj-$(CONFIG_TRACING)		+= tracefs/
b4e40a5188193 (Mark Fasheh              2005-12-15 14:31:24 -0800 129) obj-$(CONFIG_OCFS2_FS)		+= ocfs2/
60582d1e93364 (Chris Mason              2008-09-25 12:25:16 -0400 130) obj-$(CONFIG_BTRFS_FS)		+= btrfs/
f7825dcf8c730 (David Teigland           2006-01-16 16:43:37 +0000 131) obj-$(CONFIG_GFS2_FS)           += gfs2/
a14d53937cc85 (Jaegeuk Kim              2012-11-02 17:25:27 +0900 132) obj-$(CONFIG_F2FS_FS)		+= f2fs/
9030aaf9bf0a1 (Sage Weil                2009-10-06 11:31:15 -0700 133) obj-$(CONFIG_CEPH_FS)		+= ceph/
ca01d6dd2d7a2 (Tony Luck                2010-12-28 14:25:21 -0800 134) obj-$(CONFIG_PSTORE)		+= pstore/
d68772b7c83f4 (Matt Fleming             2013-02-08 16:27:24 +0000 135) obj-$(CONFIG_EFIVAR_FS)		+= efivarfs/
47e4937a4a7ca (Gao Xiang                2019-08-23 05:36:59 +0800 136) obj-$(CONFIG_EROFS_FS)		+= erofs/
0fd1695766484 (Hans de Goede            2019-12-12 15:09:14 +0100 137) obj-$(CONFIG_VBOXSF_FS)		+= vboxsf/
8dcc1a9d90c10 (Damien Le Moal           2019-12-25 16:07:44 +0900 138) obj-$(CONFIG_ZONEFS_FS)		+= zonefs/