Hard link mkfs.ntfs and mkfs.ntfs.8 with mkntfs and mkntfs.8

edge.strict_endians
szaka 2005-08-15 20:48:48 +00:00
parent 3c6381db2f
commit a9e02e7687
5 changed files with 19 additions and 1 deletions

View File

@ -33,6 +33,7 @@ xx/xx/2005 - 1.12.0-WIP
ntfs_mft_record_alloc. (Yura)
- Make ntfsmount use new APIs for file and directory creation/deletion.
Implement utime operation. (Yura)
- Hard link mkfs.ntfs and mkfs.ntfs.8 with mkntfs and mkntfs.8 (Szaka).
08/08/2005 - 1.11.2 - ntfsdecrypt now works and lots of fixes and improvements.

View File

@ -8,7 +8,6 @@ Thanks,
* mkntfs *
**********
- mkntfs should be hard linked with mkfs.ntfs for the mkfs utility.
- Got a report that creating a floppy with mkntfs failed. Difference between
this floppy and the floppy created by the special tool found on the net was
said to be that the bitmap is 256kib on the special floppy while mkntfs will

View File

@ -116,6 +116,7 @@ esac
AC_PROG_CC
AC_PROG_GCC_TRADITIONAL
AC_PROG_INSTALL
AC_PATH_PROG(LN, ln, ln)
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL

View File

@ -90,6 +90,7 @@ rm -rf "$RPM_BUILD_ROOT"
%{bindir}/ntfs[^m][^o]*
%{sbindir}/*
%{mandir}/man8/mkntfs.8*
%{mandir}/man8/mkfs.ntfs.8*
%{mandir}/man8/ntfs[^m][^o]*.8*
%{_libdir}/libntfs.*so*
@ -111,6 +112,9 @@ rm -rf "$RPM_BUILD_ROOT"
%{_libdir}/gnome-vfs-2.0/modules/libntfs-gnomevfs.*a*
%changelog
* Mon Aug 15 2005 Szabolcs Szakacsits <szaka@sienet.hu>
- Add mkfs.ntfs.
* Mon Jul 18 2005 Anton Altaparmakov <aia21@cantab.net>
- Add ntfsmount fuse module in separate rpm ntfsprogs-fuse.

View File

@ -134,3 +134,16 @@ libs:
extra: extras
extras: libs $(EXTRA_PROGRAMS)
# mkfs.ntfs[.8] hard links
install-exec-hook:
$(LN) -f $(DESTDIR)$(sbindir)/mkntfs $(DESTDIR)$(sbindir)/mkfs.ntfs
install-data-hook:
$(LN) -f $(DESTDIR)$(man8dir)/mkntfs.8 $(DESTDIR)$(man8dir)/mkfs.ntfs.8
uninstall-local:
rm -f $(DESTDIR)$(sbindir)/mkfs.ntfs
rm -f $(DESTDIR)$(man8dir)/mkfs.ntfs.8