Annotation of dmsdos/patches/in-kernel-2.0.35.diff, revision 1.1

1.1     ! root        1: --- linux-orig/fs/Makefile     Thu Jun 11 14:23:31 1998
        !             2: +++ linux/fs/Makefile  Sun Aug 23 14:23:39 1998
        !             3: @@ -18,7 +18,7 @@
        !             4:  
        !             5:  MOD_LIST_NAME := FS_MODULES
        !             6:  ALL_SUB_DIRS = minix ext ext2 fat msdos vfat proc isofs nfs xiafs umsdos \
        !             7: -              hpfs sysv smbfs ncpfs ufs affs autofs
        !             8: +              hpfs sysv smbfs ncpfs ufs affs autofs dmsdos
        !             9:  
        !            10:  ifeq ($(CONFIG_QUOTA),y)
        !            11:  O_OBJS += dquot.o
        !            12: @@ -55,6 +55,14 @@
        !            13:  else
        !            14:    ifeq ($(CONFIG_FAT_FS),m)
        !            15:    MOD_SUB_DIRS += fat
        !            16: +  endif
        !            17: +endif
        !            18: +
        !            19: +ifeq ($(CONFIG_DMSDOS_FS),y)
        !            20: +SUB_DIRS += dmsdos
        !            21: +else
        !            22: +  ifeq ($(CONFIG_DMSDOS_FS),m)
        !            23: +  MOD_SUB_DIRS += dmsdos
        !            24:    endif
        !            25:  endif
        !            26:  
        !            27: --- linux-orig/fs/Config.in    Sat Jul 18 00:31:37 1998
        !            28: +++ linux/fs/Config.in Sun Aug 23 14:33:10 1998
        !            29: @@ -16,6 +16,10 @@
        !            30:  
        !            31:    # msdos filesystems
        !            32:    dep_tristate 'DOS FAT fs support' CONFIG_FAT_FS $CONFIG_NLS
        !            33: +  dep_tristate 'DMSDOS (dblspace/drvspace/stacker) support' CONFIG_DMSDOS_FS $CONFIG_FAT_FS
        !            34: +  if [ "$CONFIG_DMSDOS_FS" = "y" -o "$CONFIG_DMSDOS_FS" = "m" ]; then
        !            35: +    source fs/dmsdos/Config.in
        !            36: +  fi
        !            37:    dep_tristate 'MSDOS fs support' CONFIG_MSDOS_FS $CONFIG_FAT_FS
        !            38:    dep_tristate 'umsdos: Unix like fs on top of std MSDOS FAT fs' CONFIG_UMSDOS_FS $CONFIG_MSDOS_FS
        !            39:    dep_tristate 'VFAT (Windows-95) fs support' CONFIG_VFAT_FS $CONFIG_FAT_FS
        !            40: --- linux-orig/fs/filesystems.c        Thu Jun 11 14:23:32 1998
        !            41: +++ linux/fs/filesystems.c     Sun Aug 23 14:54:27 1998
        !            42: @@ -32,6 +32,9 @@
        !            43:  
        !            44:  extern void device_setup(void);
        !            45:  extern void binfmt_setup(void);
        !            46: +#ifdef CONFIG_DMSDOS_FS
        !            47: +extern int init_dmsdos(void);
        !            48: +#endif
        !            49:  
        !            50:  /* This may be used only once, enforced by 'static int callable' */
        !            51:  asmlinkage int sys_setup(void)
        !            52: @@ -72,6 +75,10 @@
        !            53:  
        !            54:  #ifdef CONFIG_FAT_FS
        !            55:        init_fat_fs();
        !            56: +#endif
        !            57: +
        !            58: +#ifdef CONFIG_DMSDOS_FS
        !            59: +      init_dmsdos();
        !            60:  #endif
        !            61:  
        !            62:  #ifdef CONFIG_MSDOS_FS

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.