Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv25825
Modified Files:
TODO.mkntfs linux-ntfs.spec.in
Log Message:
Linux-NTFS 0.1.0-pre1
=====================
-fixed up ntfsfix and ntfsdump_logfile
-corrected stuff
-several bug fixes
-fixed (hopefully) final bug with mkntfs (sd generator was wrong due to brain'o)
-mkntfs now completed, only need to add a few command line options before first
public release.
-rpm generation file updated and autostrip modified to make use of install-stip
make target instead of stripping manually
-made bootsector check verbosity during mount dependent on --enable-debug
configure option.
Index: TODO.mkntfs
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/TODO.mkntfs,v
retrieving revision 1.3
retrieving revision 1.4
diff -U2 -r1.3 -r1.4
--- TODO.mkntfs 2001/06/08 14:09:52 1.3
+++ TODO.mkntfs 2001/06/10 15:54:20 1.4
@@ -1,17 +1,7 @@
- mkntfs should be hard linked with mkfs.ntfs for the mkfs utility.
-- need to make a copy of the boot sector to the last sector: problem, how
-to access the thing when we have an odd number of sectors? also problem, when
-getting the device size in sectors we already don't see the odd sector so we
-will silently fail. )-: change the place of decrementing the number of sectors
-to be as early as possible as when creating the volume we need to create it as
-if it had one sector less. - Investigate whether we can have an ntfs 1.2/3.0
-volume but use the NT3.51 way of storing the backup boot sector so it is in the
-middle of the volume. This saves us from having to access the last sector but
-still requires us to know how many sectors there are.
-- re: last sector. In the case when we do have an even number of sectors so that
-we don't have a free sector at the end of the volume we need to kill the last
-cluster to get a free sector at the end.
-- need to create the root directory. for this need index root and index
-allocation creation and handling functions (mutch work)
+- we don't know what the real last sector is, thus we mark the volume dirty and
+the subsequent chkdsk (which will happen on reboot into Windows automatically)
+recreates the backup boot sector if the Linux kernel lied to us about the
+number of sectors.
- implement command line parsing using the get_opt*() stuff: for now just want
clust size selection, no action, verbose and debug. rest can follow later
Index: linux-ntfs.spec.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/linux-ntfs.spec.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -U2 -r1.2 -r1.3
--- linux-ntfs.spec.in 2001/06/01 02:07:23 1.2
+++ linux-ntfs.spec.in 2001/06/10 15:54:20 1.3
@@ -49,7 +49,5 @@
%install
rm -rf "$RPM_BUILD_ROOT"
-make DESTDIR="$RPM_BUILD_ROOT" install
-strip "${RPM_BUILD_ROOT}%{bindir}"/ntfsfix
-strip "${RPM_BUILD_ROOT}%{bindir}"/ntfsdump_logfile
+make DESTDIR="$RPM_BUILD_ROOT" install-strip
|