📄 linux
字号:
diff --exclude-from=/tmp/x --new-file -ur linux.orig/fs/Config.in linux/fs/Config.in--- linux.orig/fs/Config.in Fri Nov 8 19:14:21 1996+++ linux/fs/Config.in Sun Dec 1 21:35:54 1996@@ -51,6 +51,7 @@ fi tristate 'ISO9660 cdrom filesystem support' CONFIG_ISO9660_FS tristate 'OS/2 HPFS filesystem support (read only)' CONFIG_HPFS_FS+tristate 'WinNT NTFS filesystem support (read only)' CONFIG_NTFS_FS tristate 'System V and Coherent filesystem support' CONFIG_SYSV_FS if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then tristate 'Amiga FFS filesystem support (EXPERIMENTAL)' CONFIG_AFFS_FSdiff --exclude-from=/tmp/x --new-file -ur linux.orig/fs/Makefile linux/fs/Makefile--- linux.orig/fs/Makefile Fri Nov 8 22:55:05 1996+++ linux/fs/Makefile Sun Dec 1 22:15:04 1996@@ -17,7 +17,7 @@ MOD_LIST_NAME := FS_MODULES ALL_SUB_DIRS = minix ext ext2 fat msdos vfat proc isofs nfs xiafs umsdos \- hpfs sysv smbfs ncpfs ufs affs+ hpfs ntfs sysv smbfs ncpfs ufs affs ifeq ($(CONFIG_QUOTA),y) O_OBJS += dquot.o@@ -138,6 +138,14 @@ else ifeq ($(CONFIG_HPFS_FS),m) MOD_SUB_DIRS += hpfs+ endif+endif++ifeq ($(CONFIG_NTFS_FS),y)+SUB_DIRS += ntfs+else+ ifeq ($(CONFIG_NTFS_FS),m)+ MOD_SUB_DIRS += ntfs endif endif diff --exclude-from=/tmp/x --new-file -ur linux.orig/fs/filesystems.c linux/fs/filesystems.c--- linux.orig/fs/filesystems.c Fri Nov 8 19:14:22 1996+++ linux/fs/filesystems.c Sun Dec 1 21:38:03 1996@@ -106,6 +106,10 @@ init_hpfs_fs(); #endif +#ifdef CONFIG_NTFS_FS+ init_ntfs_fs();+#endif+ #ifdef CONFIG_AFFS_FS init_affs_fs(); #endifdiff --exclude-from=/tmp/x --new-file -ur linux.orig/fs/ntfs/Makefile linux/fs/ntfs/Makefile--- linux.orig/fs/ntfs/Makefile Fri Nov 1 23:46:00 1996+++ linux/fs/ntfs/Makefile Sun Dec 1 22:27:01 1996@@ -1,13 +1,8 @@-# Make front end for the NTFS driver.-# Replace with appropriate platform specific Makefile if desired+# Makefile for the NTFS driver. -all:- @echo Please specify a platform: 'make linux' or 'make bsd'+O_TARGET := ntfs.o+O_OBJS := ntfs_fs.o inode.o dir.o super.o attr.o util.o+M_OBJS := $(O_TARGET)+EXTRA_CFLAGS += -D_LOOSE_KERNEL_NAMES -linux:- ln -s linux.mk makefile- ${MAKE} ${MFLAGS}--bsd:- ln -s bsd.mk makefile- ${MAKE} ${MFLAGS}+include $(TOPDIR)/Rules.makediff --exclude-from=/tmp/x --new-file -ur linux.orig/fs/ntfs/config.h linux/fs/ntfs/config.h--- linux.orig/fs/ntfs/config.h Thu Jan 1 01:00:00 1970+++ linux/fs/ntfs/config.h Sun Dec 1 22:16:12 1996@@ -0,0 +1 @@+/*empty*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -