-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Checked in e2fsprogs-1.07
- Loading branch information
Showing
72 changed files
with
10,278 additions
and
1,401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
|
||
FILES=`find . -name ChangeLog` | ||
FILES=`find . -name ChangeLog -print` | ||
|
||
header=/tmp/revheader | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
|
||
find . -type f \! -name \*~ \! -exec grep -q Begin-Header \{\} \; -print \ | ||
| grep -v ^./build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
Wed Mar 12 13:32:05 1997 Theodore Y. Ts'o <[email protected]> | ||
|
||
* Release of E2fsprogs version 1.07 | ||
|
||
Wed Jan 15 11:37:36 1997 Theodore Ts'o <[email protected]> | ||
|
||
* config.sub (basic_machine): Added i686-* as another name for the | ||
Pentium Pro. | ||
|
||
Tue Oct 8 02:02:03 1996 Theodore Ts'o <[email protected]> | ||
|
||
* Release of E2fsprogs version 1.06 | ||
|
||
Mon Oct 7 08:22:31 1996 Theodore Ts'o <[email protected]> | ||
|
||
* Makefile.in (all): Don't run "make check" by default. User | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,18 +8,26 @@ INSTALL = @INSTALL@ | |
@MCONFIG@ | ||
|
||
LIB_SUBDIRS=lib/et lib/ss lib/ext2fs lib/e2p lib/uuid | ||
PROG_SUBDIRS=e2fsck debugfs misc | ||
PROG_SUBDIRS=e2fsck debugfs misc tests/progs | ||
SUBDIRS=$(LIB_SUBDIRS) $(PROG_SUBDIRS) tests | ||
|
||
SUBS= include/linux/types.h | ||
|
||
all:: $(SUBS) libs progs | ||
TAR=tar | ||
|
||
all:: $(SUBS) libs progs docs | ||
|
||
progs: $(SUBS) all-progs-recursive | ||
libs: $(SUBS) all-libs-recursive | ||
|
||
docs: | ||
(cd doc; make libext2fs.info) | ||
|
||
install-doc-libs: | ||
(cd doc; make install-doc-libs) | ||
|
||
install: all-libs-recursive install-progs-recursive \ | ||
install-shlibs-libs-recursive | ||
install-shlibs-libs-recursive install-doc-libs | ||
(export MANPATH=$(DESTDIR)$(mandir); $(srcdir)/install-utils/compile_manpages) | ||
|
||
install-libs: install-libs-recursive | ||
|
@@ -64,7 +72,7 @@ mostlyclean-local: | |
$(RM) -f \#* *~ core MAKELOG | ||
clean-local: mostlyclean-local | ||
distclean-local: clean-local | ||
$(RM) -f include/linux/types.h | ||
$(RM) -f include/linux/types.h $(SUBSTITUTE) | ||
$(RM) -f config.status config.log config.cache MCONFIG Makefile | ||
realclean-local: distclean-local | ||
$(RM) -f configure | ||
|
@@ -78,7 +86,7 @@ distribution_tar_file: | |
cd .. | ||
cp -r $(srcdir)/README $(srcdir)/install-utils /tmp/dest | ||
cp $(srcdir)/INSTALL.@BINARY_TYPE@ /tmp/dest/INSTALL | ||
(cd /tmp/dest; tar cf - . ) | gzip -9 \ | ||
(cd /tmp/dest; $(TAR) cf - . ) | gzip -9 \ | ||
> e2fsprogs-@E2FSPROGS_VERSION@-@[email protected] | ||
|
||
SRCROOT = `echo e2fsprogs-@E2FSPROGS_VERSION@ | sed -e 's/-WIP//'` | ||
|
@@ -87,14 +95,14 @@ $(srcdir)/.exclude-file: | |
(cd $(srcdir)/.. ; find $(SRCROOT) \( -name \*~ -o -name \*.orig \ | ||
-o -name \*.rej \) -print > $(SRCROOT)/.exclude-file) | ||
echo "$(SRCROOT)/build" >> $(srcdir)/.exclude-file | ||
echo "$(SRCROOT)/todo" >> $(srcdir)/.exclude-file | ||
echo "$(SRCROOT)/rpm.log" >> $(srcdir)/.exclude-file | ||
echo "$(SRCROOT)/.exclude-file" >> $(srcdir)/.exclude-file | ||
echo $(SRCROOT)/e2fsprogs-@[email protected] \ | ||
>> $(srcdir)/.exclude-file | ||
|
||
|
||
source_tar_file: $(srcdir)/.exclude-file | ||
(cd $(srcdir) ; tar -C .. -c -v -f - \ | ||
(cd $(srcdir) ; $(TAR) -C .. -c -v -f - \ | ||
-X .exclude-file $(SRCROOT) | \ | ||
gzip -9 > e2fsprogs-@[email protected]) | ||
rm -f $(srcdir)/.exclude-file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,11 @@ Maintainer: Theodore Ts'o | |
Email: [email protected] | ||
Start: 0x66980000 | ||
End: 0x669fffff | ||
|
||
Library:libuuid.so | ||
Description: DCE Universally Unique ID (UUID) library | ||
Maintainer: Theodore Ts'o | ||
Email: [email protected] | ||
Start: 0x67900000 | ||
End: 0x679fffff | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.