Changeset 4498

Show
Ignore:
Timestamp:
07/31/10 09:41:30 (1 month ago)
Author:
finley
Message:

* Handle ext4.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CREDITS

    r4351 r4498  
    22#   "SystemImager"  
    33# 
    4 #   Copyright (C) 1999-2006 Brian Elliott Finley 
     4#   Copyright (C) 1999-2010 Brian Elliott Finley 
    55# 
    66#   $Id$ 
  • trunk/doc/man/autoinstallscript.conf.content.sgml

    r4294 r4498  
    88    </author> 
    99    <copyright> 
    10       <year>2002</year> 
     10      <year>2002-2010</year> 
    1111      <holder>&dhusername;</holder> 
    1212    </copyright> 
     
    356356                filesystem you want created on the partition specified on "mount_dev"  
    357357                (or "real_dev").  Valid filesystem types supported by SystemImager are: 
    358         ext2, ext3, msdos, reiserfs, vfat, jfs, xfs 
     358        ext2, ext3, ext4, msdos, reiserfs, vfat, jfs, xfs 
    359359      </para> 
    360360 
  • trunk/doc/manual_source/usage.sgml

    r4453 r4498  
    280280# "SystemImager" 
    281281# 
    282 #  Copyright (C) 1999-2002 Bald Guy Software &lt;brian.finley@baldguysoftware.com&gt; 
     282#  Copyright (C) 1999-2010 Brian Elliott Finley 
    283283# 
    284284# This file is: /local.cfg 
     
    333333          points.  <command>si_getimage</command> pulls out the mount points for the filesystems that 
    334334          are unsupported and creates an exclusion list.  The filesystems 
    335           SystemImager currently supports ext2, ext3, reiserfs, xfs, jfs and 
     335          SystemImager currently supports ext2, ext3, ext4, reiserfs, xfs, jfs and 
    336336          vfat. All other filesytems will be ignored, including proc, nfs, 
    337337          devpts, iso9660, etc. 
     
    776776              mounted.  It pulls out the mount points for the filesystems that are unsupported and  
    777777              creates an exclusion list. Currently supported filesystems are ext2,  
    778               ext3, and reiserfs.  
     778              ext3, ext4, and reiserfs.  
    779779              All other filesystems are unsupported, including proc,  
    780780              devpts, iso9660, etc. 
  • trunk/etc/autoinstallscript.template

    r4480 r4498  
    66#    vi:set filetype=sh: 
    77# 
    8 #   Copyright (C) 1999-2006 Brian Elliott Finley 
     8#   Copyright (C) 1999-2010 Brian Elliott Finley 
    99# 
    1010#   28.07.2005 Erich Focht : SCSI device detection and generation of 
     
    187187modprobe ext2 
    188188modprobe ext3 
     189modprobe ext4 
    189190modprobe fat 
    190191modprobe jfs 
  • trunk/etc/client.conf

    r4269 r4498  
    22# "SystemImager" 
    33# 
    4 #  Copyright (C) 2002 Bald Guy Software <brian.finley@baldguysoftware.com> 
     4#  Copyright (C) 2002-2010 Brian Elliott Finley 
    55# 
    66#  $Id$ 
     
    1616fstype = ext2 
    1717fstype = ext3 
     18fstype = ext4 
    1819fstype = reiserfs 
    1920fstype = dosfs 
  • trunk/sbin/si_getimage

    r4407 r4498  
    44# "SystemImager"  
    55# 
    6 #  Copyright (C) 1999-2004 Brian Elliott Finley  
     6#  Copyright (C) 1999-2010 Brian Elliott Finley  
    77# 
    88#  $Id$ 
     
    227227$warning =  <<"EOF"; 
    228228This program will get the \"$image\" system image from \"$source_host\" 
    229 making the assumption that all filesystems considered part 
    230 of the system image are using ext2, ext3, jfs, FAT, reiserfs, or xfs. 
     229making the assumption that all filesystems considered part of the 
     230system image are using ext2, ext3, ext4, jfs, FAT, reiserfs, or xfs. 
    231231 
    232232This program will not get /proc, NFS, or other filesystems 
     
    386386    @mounted_filesystems = grep (!/\s+ext2\s+/, @mounted_filesystems); 
    387387    @mounted_filesystems = grep (!/\s+ext3\s+/, @mounted_filesystems); 
     388    @mounted_filesystems = grep (!/\s+ext4\s+/, @mounted_filesystems); 
    388389    @mounted_filesystems = grep (!/\s+reiserfs\s+/, @mounted_filesystems); 
    389390    @mounted_filesystems = grep (!/\s+jfs\s+/, @mounted_filesystems);