|
From: Jan-Benedict G. <jb...@us...> - 2004-09-19 09:55:08
|
Update of /cvsroot/linux-vax/kernel-2.5/fs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21724 Modified Files: Makefile Kconfig Log Message: - Integrate ODS-2 into the build environment. Of course, it won't compile right now because it's 2.4.x source code... Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/fs/Makefile,v retrieving revision 1.1.1.34 retrieving revision 1.2 diff -u -d -r1.1.1.34 -r1.2 --- Makefile 28 Jul 2004 22:27:25 -0000 1.1.1.34 +++ Makefile 19 Sep 2004 09:54:58 -0000 1.2 @@ -91,3 +91,4 @@ obj-$(CONFIG_XFS_FS) += xfs/ obj-$(CONFIG_AFS_FS) += afs/ obj-$(CONFIG_BEFS_FS) += befs/ +obj-$(CONFIG_ODS2_FS) += ods2/ Index: Kconfig =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/fs/Kconfig,v retrieving revision 1.1.1.23 retrieving revision 1.2 diff -u -d -r1.1.1.23 -r1.2 --- Kconfig 2 Sep 2004 18:41:42 -0000 1.1.1.23 +++ Kconfig 19 Sep 2004 09:54:58 -0000 1.2 @@ -1368,6 +1368,14 @@ Say Y here if you want to try writing to UFS partitions. This is experimental, so you should back up your UFS partitions beforehand. +config ODS2_FS + tristate "VMS ODS-2 filesystem support (read-only)" + depends on EXPERIMENTAL + default n + help + Say Y if you want to read ODS-2 filesystems, which are normally used + by the VMS operating system. + endmenu menu "Network File Systems" |