mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 01:34:37 +08:00
36 lines
977 B
Diff
36 lines
977 B
Diff
aufs3.16 kbuild patch
|
|
|
|
diff --git a/fs/Kconfig b/fs/Kconfig
|
|
index 312393f..78632ed 100644
|
|
--- a/fs/Kconfig
|
|
+++ b/fs/Kconfig
|
|
@@ -209,6 +209,7 @@ source "fs/ufs/Kconfig"
|
|
source "fs/exofs/Kconfig"
|
|
source "fs/f2fs/Kconfig"
|
|
source "fs/efivarfs/Kconfig"
|
|
+source "fs/aufs/Kconfig"
|
|
|
|
endif # MISC_FILESYSTEMS
|
|
|
|
diff --git a/fs/Makefile b/fs/Makefile
|
|
index 4030cbf..5bd169a 100644
|
|
--- a/fs/Makefile
|
|
+++ b/fs/Makefile
|
|
@@ -125,3 +125,4 @@ obj-y += exofs/ # Multiple modules
|
|
obj-$(CONFIG_CEPH_FS) += ceph/
|
|
obj-$(CONFIG_PSTORE) += pstore/
|
|
obj-$(CONFIG_EFIVAR_FS) += efivarfs/
|
|
+obj-$(CONFIG_AUFS_FS) += aufs/
|
|
diff --git a/include/uapi/linux/Kbuild b/include/uapi/linux/Kbuild
|
|
index 24e9033..fe9a8d4 100644
|
|
--- a/include/uapi/linux/Kbuild
|
|
+++ b/include/uapi/linux/Kbuild
|
|
@@ -56,6 +56,7 @@ header-y += atmppp.h
|
|
header-y += atmsap.h
|
|
header-y += atmsvc.h
|
|
header-y += audit.h
|
|
+header-y += aufs_type.h
|
|
header-y += auto_fs.h
|
|
header-y += auto_fs4.h
|
|
header-y += auxvec.h
|