mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
36 lines
961 B
Diff
36 lines
961 B
Diff
aufs3.0 kbuild patch
|
|
|
|
diff --git a/fs/Kconfig b/fs/Kconfig
|
|
index 19891aa..b660b64 100644
|
|
--- a/fs/Kconfig
|
|
+++ b/fs/Kconfig
|
|
@@ -208,6 +208,7 @@ source "fs/pstore/Kconfig"
|
|
source "fs/sysv/Kconfig"
|
|
source "fs/ufs/Kconfig"
|
|
source "fs/exofs/Kconfig"
|
|
+source "fs/aufs/Kconfig"
|
|
|
|
endif # MISC_FILESYSTEMS
|
|
|
|
diff --git a/fs/Makefile b/fs/Makefile
|
|
index fb68c2b..c031a85 100644
|
|
--- a/fs/Makefile
|
|
+++ b/fs/Makefile
|
|
@@ -124,3 +124,4 @@ obj-$(CONFIG_GFS2_FS) += gfs2/
|
|
obj-$(CONFIG_EXOFS_FS) += exofs/
|
|
obj-$(CONFIG_CEPH_FS) += ceph/
|
|
obj-$(CONFIG_PSTORE) += pstore/
|
|
+obj-$(CONFIG_AUFS_FS) += aufs/
|
|
diff --git a/include/linux/Kbuild b/include/linux/Kbuild
|
|
index 01f6362..8b3b9f1 100644
|
|
--- a/include/linux/Kbuild
|
|
+++ b/include/linux/Kbuild
|
|
@@ -65,6 +65,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
|