Skip to content

Commit

Permalink
***** fdutils version 5.2 of 1997/05/16 *****
Browse files Browse the repository at this point in the history
One of the earliest 5.x version that was delivered
with Slackware up to 4.0. This commit is for historical
reasons only. The source code depends on very first
Linux 2.0 kernel sources.

Changes since 5.1:

v19970516 (5.2)
  * 5.2 Released.

v19970516
  * Fixed sunsite location in doc.

v19970430
  * Fixed typoes in doc about autodetection.

v19970428
  * Fixed manpage installation.

Changes since 5.0:

v19970427 (v5.1)
  * 5.1 Released.
  * These repeated complaints about yylineno not defined start getting
    annoying ;-)

v19970426
  * More Makefile fixes.
  * Added note to doc about Alpha site.

v19970422
  * Various Makefile fixes.

v19970421
  * Lex yylineno fixes.

Release 5.0:

v19970419 (v5.0)
  * 5.0 Released.

Originated-by: fdutils-5.2.tar.gz
Originated-md5: 2c7ad8b6c3a1811cf277e495b6f3f2fa
Originated-URL: https://mirrors.slackware.com/slackware/slackware-4.0/source/a/aaa_base/fdutils-5.2.tar.gz

Signed-off-by: Stephan Linz <[email protected]>
  • Loading branch information
Alain Knaff authored and rexut committed May 16, 1997
1 parent a3a2e4b commit 48827ea
Show file tree
Hide file tree
Showing 110 changed files with 15,842 additions and 3,950 deletions.
10 changes: 10 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
970516 5.2 Released
970516 Fixed sunsite location in doc.
970430 Fixed typoes in doc about autodetection.
970428 Fixed manpage installation
970427 5.1 Released. These repeated complaints about yylineno not
defined start getting annoying ;-)
970426 More Makefile fixes. Added note to doc about Alpha site
970422 Various Makefile fixes
970421 Lex yylineno fixes
970419 5.0 Released
408 changes: 0 additions & 408 deletions FAQ

This file was deleted.

73 changes: 0 additions & 73 deletions FINETUNING

This file was deleted.

11 changes: 6 additions & 5 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ Installation:

1. First untar the package.

2. Compile the utilities:
cd src
make
2. Run ./configure

3. Compile the utilities:
make

3. Run the MAKEFLOPPIES script to create the device files:
cd /dev
Expand All @@ -15,7 +16,7 @@ Installation:
I you have any questions, feel free to ask!

5. You might also want to get a recent version of mtools (later than
2.5.4)
3.0)

A. Knaff
( Alain.Knaff@inrialpes.fr )
( Alain.Knaff@poboxes.com )
36 changes: 36 additions & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
@SET_MAKE@

all: compile comp.doc
install: install.prog install.doc
clean: clean.prog clean.doc

compile:
$(MAKE) -C src all

install.prog: compile
$(MAKE) -C src install.bin install.conf

comp.doc:
$(MAKE) -C doc all

install.doc: doc
$(MAKE) -C doc install

clean.doc:
$(MAKE) -C doc clean

clean.prog:
$(MAKE) -C src clean

info:
$(MAKE) -C doc info

html:
$(MAKE) -C doc html

dvi:
$(MAKE) -C doc dvi


install.info:
$(MAKE) -C doc install-info
7 changes: 7 additions & 0 deletions acconfig.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

/***** begin user configuration section *****/

/* Define this if you fdmount to be usable only by the 'floppy' group */
#undef FLOPPY_ONLY


Loading

0 comments on commit 48827ea

Please sign in to comment.