Whamcloud - gitweb
po: update sv.po (from translationproject.org)
[tools/e2fsprogs.git] / doc / RelNotes / v1.05.txt
1 E2fsprogs 1.05 (September 7, 1996)
2 ==================================
3
4 Add support for new fields in the ext2 superblock --- volume name,
5 volume UUID, and last mounted field.  Dumpe2fs displays these fields,
6 tune2fs and mke2fs allows you to set them.  E2fsck will automatically
7 generate a UUID for those volumes that don't have them.  
8
9 Put in support for e2fsck to recognize HURD specific ext2 features ---
10 most notably, the translator block.  The e2fsprogs tools will now use
11 the creator_os field in the superblock to correctly handle different
12 OS-specific variants of the ext2 filesystem.
13
14 E2fsck now fixes inodes which have a the deletion time set, but which
15 have a non-zero i_link_count field by offering to clear the deletion
16 time.  Previously e2fsck assumed that the inode was deleted (per 0.3c
17 ext2 kernel behavior) and offered to unlink the file.
18
19 If e2fsck sets the clean bit, but nothing else, set the exit code
20 FSCK_NONDESTRUCT.  After all, e2fsck did fix a filesystem error --- it
21 set the filesystem valid bit when it was previously cleared.  :-) This
22 was needed to make the HURD fsck driver happy.
23
24 If the  user  refuses to attach an  unattached  inode, e2fsck  will no
25 longer set the inode's link count.  Otherwise, the  inode would end up
26 getting marked as unused, which might cause loss of data later.
27
28 Make the message issued by e2fsck when the superblock is corrupt less
29 confusing for users.  It now mentions that another reason for the
30 "corrupt superblock" message might be that the partition might not be
31 an ext2 filesystem at all (it might swap, msdos filesystem, ufs, etc.)
32
33 Make the libext2 library more robust so that e2fsck won't coredump on
34 an illegal superblock where the blocksize is zero.  (f_crashdisk is
35 the test case).
36
37 By default, create filesystems where the default checkinterval is 6
38 months (180 days).  Linux servers can be robust enough that 20 reboots
39 can be a long, long time.
40
41 Added configure flag --enable-old-bitops, which forces the bitops to
42 use the old (native) bitmask operations.  By default on the sparc
43 platform, the standard ext2 bit ordering is now used.
44
45 Added a new feature to e2fsck to byte-swap filesystems; this can be
46 used to convert old m68k filesystems to use the standard byte-order
47 storage for the superblock, inodes, and directory blocks.  This
48 function is invoked by using the '-s' option to e2fsck.
49
50 Debugfs's "dump" command has been enhanced so that it writes out the
51 exact size of the file so that the nulls at the end of the file are
52 eliminated.  The command also accept a new "-p" option which will
53 attempt to preserve the ownership, permissions, and file
54 modification/access times.
55
56 Debugfs has two new options, -f and -R.  The -R option allows the user
57 to execute a single debugfs command from the command line.  The -f
58 option allows the user to specify a "command file" containing debugfs
59 commands which will get executed.
60
61 Dumpe2fs now pretty prints the check interval, instead of just
62 printing the check interval as a number of seconds.
63
64 Fix bugs in debugfs: the params command when no filesystem is opened
65 no longer causes a core dump.  It is now possible to unlink a file
66 when a pathname containing a '/' is specified.
67
68 Tune2fs has a new -C option which sets the number of times the
69 filesystem has been mounted.
70
71 Fix the chattr '-v' option so that it actually works.  Chattr was
72 being buggy about the -v option parsing.
73
74 Programmers' notes:
75 -------------------
76
77 The directory lib/uuid contains a set of library routines to generate
78 DCE compatible UUIDs.  
79
80 Extended ext2fs_namei() to handle symbolic links.  Added new function
81 ext2fs_nami_follow() which will follow last symbolic link in the case
82 where the pathname points to a sym link.
83
84 The ext2fs_block_iterate function will now return the HURD translator
85 block, if present.  The new flag BLOCK_FLAG_DATA_ONLY will cause the
86 iterator to return data blocks only.  The ext2fs.h file now defines
87 constants BLOCK_COUNT_IND, BLOCK_COUNT_DIND, BLOCK_COUNT_TIND, and
88 BLOCK_COUNT_TRANSLATOR, which are the magic values passed in the block
89 count field of the iterator callback function.
90
91 The test script driver now takes an optional second argument, which is
92 the test case to be run.  This allows you to run a test case without
93 needing to run the entire test suite.
94
95 On Linux ELF systems, install the .so files in the correct places
96 (/usr/lib).  The .so files must be stored in the same directory as the
97 .a files.
98
99 Fixed miscellaneous HURD compilation issues with header file being
100 included in the right order.
101
102 Fixed debugfs so that it resets optind to zero, not one, since setting
103 optind to zero is more correct.
104