Changeset 4498
- Timestamp:
- 07/31/10 09:41:30 (1 month ago)
- Files:
-
- trunk/CREDITS (modified) (1 diff)
- trunk/doc/man/autoinstallscript.conf.content.sgml (modified) (2 diffs)
- trunk/doc/manual_source/usage.sgml (modified) (3 diffs)
- trunk/etc/autoinstallscript.template (modified) (2 diffs)
- trunk/etc/client.conf (modified) (2 diffs)
- trunk/sbin/si_getimage (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/CREDITS
r4351 r4498 2 2 # "SystemImager" 3 3 # 4 # Copyright (C) 1999-20 06Brian Elliott Finley4 # Copyright (C) 1999-2010 Brian Elliott Finley 5 5 # 6 6 # $Id$ trunk/doc/man/autoinstallscript.conf.content.sgml
r4294 r4498 8 8 </author> 9 9 <copyright> 10 <year>2002 </year>10 <year>2002-2010</year> 11 11 <holder>&dhusername;</holder> 12 12 </copyright> … … 356 356 filesystem you want created on the partition specified on "mount_dev" 357 357 (or "real_dev"). Valid filesystem types supported by SystemImager are: 358 ext2, ext3, msdos, reiserfs, vfat, jfs, xfs358 ext2, ext3, ext4, msdos, reiserfs, vfat, jfs, xfs 359 359 </para> 360 360 trunk/doc/manual_source/usage.sgml
r4453 r4498 280 280 # "SystemImager" 281 281 # 282 # Copyright (C) 1999-20 02 Bald Guy Software <brian.finley@baldguysoftware.com>282 # Copyright (C) 1999-2010 Brian Elliott Finley 283 283 # 284 284 # This file is: /local.cfg … … 333 333 points. <command>si_getimage</command> pulls out the mount points for the filesystems that 334 334 are unsupported and creates an exclusion list. The filesystems 335 SystemImager currently supports ext2, ext3, reiserfs, xfs, jfs and335 SystemImager currently supports ext2, ext3, ext4, reiserfs, xfs, jfs and 336 336 vfat. All other filesytems will be ignored, including proc, nfs, 337 337 devpts, iso9660, etc. … … 776 776 mounted. It pulls out the mount points for the filesystems that are unsupported and 777 777 creates an exclusion list. Currently supported filesystems are ext2, 778 ext3, and reiserfs.778 ext3, ext4, and reiserfs. 779 779 All other filesystems are unsupported, including proc, 780 780 devpts, iso9660, etc. trunk/etc/autoinstallscript.template
r4480 r4498 6 6 # vi:set filetype=sh: 7 7 # 8 # Copyright (C) 1999-20 06Brian Elliott Finley8 # Copyright (C) 1999-2010 Brian Elliott Finley 9 9 # 10 10 # 28.07.2005 Erich Focht : SCSI device detection and generation of … … 187 187 modprobe ext2 188 188 modprobe ext3 189 modprobe ext4 189 190 modprobe fat 190 191 modprobe jfs trunk/etc/client.conf
r4269 r4498 2 2 # "SystemImager" 3 3 # 4 # Copyright (C) 2002 Bald Guy Software <brian.finley@baldguysoftware.com>4 # Copyright (C) 2002-2010 Brian Elliott Finley 5 5 # 6 6 # $Id$ … … 16 16 fstype = ext2 17 17 fstype = ext3 18 fstype = ext4 18 19 fstype = reiserfs 19 20 fstype = dosfs trunk/sbin/si_getimage
r4407 r4498 4 4 # "SystemImager" 5 5 # 6 # Copyright (C) 1999-20 04Brian Elliott Finley6 # Copyright (C) 1999-2010 Brian Elliott Finley 7 7 # 8 8 # $Id$ … … 227 227 $warning = <<"EOF"; 228 228 This 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.229 making the assumption that all filesystems considered part of the 230 system image are using ext2, ext3, ext4, jfs, FAT, reiserfs, or xfs. 231 231 232 232 This program will not get /proc, NFS, or other filesystems … … 386 386 @mounted_filesystems = grep (!/\s+ext2\s+/, @mounted_filesystems); 387 387 @mounted_filesystems = grep (!/\s+ext3\s+/, @mounted_filesystems); 388 @mounted_filesystems = grep (!/\s+ext4\s+/, @mounted_filesystems); 388 389 @mounted_filesystems = grep (!/\s+reiserfs\s+/, @mounted_filesystems); 389 390 @mounted_filesystems = grep (!/\s+jfs\s+/, @mounted_filesystems);
