mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 18:04:38 +08:00
36 lines
966 B
Diff
36 lines
966 B
Diff
aufs3.9 kbuild patch
|
|
|
|
diff --git a/fs/Kconfig b/fs/Kconfig
|
|
index 780725a..d460c05 100644
|
|
--- a/fs/Kconfig
|
|
+++ b/fs/Kconfig
|
|
@@ -211,6 +211,7 @@ source "fs/sysv/Kconfig"
|
|
source "fs/ufs/Kconfig"
|
|
source "fs/exofs/Kconfig"
|
|
source "fs/f2fs/Kconfig"
|
|
+source "fs/aufs/Kconfig"
|
|
|
|
endif # MISC_FILESYSTEMS
|
|
|
|
diff --git a/fs/Makefile b/fs/Makefile
|
|
index 9d53192..e70f08f 100644
|
|
--- a/fs/Makefile
|
|
+++ b/fs/Makefile
|
|
@@ -127,3 +127,4 @@ obj-$(CONFIG_F2FS_FS) += f2fs/
|
|
obj-y += exofs/ # Multiple modules
|
|
obj-$(CONFIG_CEPH_FS) += ceph/
|
|
obj-$(CONFIG_PSTORE) += pstore/
|
|
+obj-$(CONFIG_AUFS_FS) += aufs/
|
|
diff --git a/include/uapi/linux/Kbuild b/include/uapi/linux/Kbuild
|
|
index 5c8a1d2..fea7572 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
|