Commit Graph

5303 Commits

Author SHA1 Message Date
ache
b6992658eb Move pre-extract target inside COOKIE
Add checksum check for extract, if checksum file present
1995-01-06 22:14:12 +00:00
ache
d58c55a232 Remove regex code, use -lgnuregex instead 1995-01-06 21:26:39 +00:00
gpalmer
1ee3e94a83 Add information about the checksumming system in ports
Reviewed by:	jkh
1995-01-06 19:24:13 +00:00
joerg
282a31080c Peter's work to work around one of the most annoying bugs in the
floppy driver (or in the hardware?).  It turned out to be caused by
spurious interrupts, right after an FDC reset.

Also major cleanup in the low-level structure, there are now functions
performing error-checks for the FDC I/O.

Submitted by:	(mostly) Peter Dufault <dufault@FreeBSD.org>
1995-01-06 15:20:00 +00:00
bde
20edaf046e Fix scaling for TIOCM[SG]DTRWAIT to work when hz != 100.
Bruce
1995-01-06 15:03:41 +00:00
bde
e34aaa3817 Fix error handling for new TIOCSDRAINWAIT ioctl. 1995-01-06 14:56:42 +00:00
bde
dd05a63f4c Handle segment registers (except %fs and %gs). 1995-01-06 14:52:06 +00:00
se
0d1f1c9f8c Submitted by: Wolfgang Stanglmeier <wolf@dentaro.GUN.de>
Reviewed by: <wollman>
First hooks and defines for the ISDN driver,
that soon will see the light ...
1995-01-05 19:51:51 +00:00
gibbs
423a40abdb Add VNINACT flag. LFS has a habbit of skipping the ufs_inactive procedure.
It used to do this by setting a global <Yuck>.  Now we set th VNINACT
flag in the vnode to force a skip of ufs_inactive.

Sorry for missing this file in my last commit folks.

Index: vnode.h
===================================================================
RCS file: /usr/cvs/src/sys/sys/vnode.h,v
retrieving revision 1.14
diff -c -r1.14 vnode.h
*** 1.14	1994/11/14 13:51:53
--- vnode.h	1994/12/03 01:06:27
***************
*** 116,121 ****
--- 116,122 ----
  #define	VALIASED	0x0800	/* vnode has an alias */
  #define	VDIROP		0x1000	/* LFS: vnode is involved in a directory op */
  #define VVMIO		0x2000	/* VMIO flag */
+ #define VNINACT		0x4000  /* LFS: skip ufs_inactive() in lfs_vunref */

  /*
   * Vnode attributes.  A field value of VNOVAL represents a field whose value
1995-01-05 16:22:17 +00:00
sos
faec1cfcb1 Added fr.sio.kbd. 1995-01-05 14:09:00 +00:00
jkh
6baa0e3d46 Whoops! How embarassing. Just now noticed that I forget to update the .Os
lines.  Done.
1995-01-05 10:37:13 +00:00
jkh
48a0c6eea5 Fix a bad formatting directive. 1995-01-05 10:31:42 +00:00
jkh
3f805a54cc Fix misleading typo in description of @unexec. 1995-01-05 10:22:51 +00:00
dg
7ad102730f Removed daily rm'ing of files in /tmp, /var/tmp, and /scratch. There is no
safe way to do this, and envites very unpleasant results. Removed fsck'ing
of all the disks on the system as it provides output that is almost always
meaningless and only envites bug reports.

Reviewed by:	Jordan Hubbard
1995-01-05 10:15:53 +00:00
asami
bf5c706ba1 Sort out dependencies. Now they look like:
patch: extract
configure: depends patch
build: configure
install: build

Does this look ok?
1995-01-05 08:15:53 +00:00
gclarkii
fafedca2a0 Convert PORTS.FAQ to ports.FAQ.
All "FAQ" items should be lowercase prefix and upcase FAQ suffix.
1995-01-05 07:27:00 +00:00
dg
cd18d277a3 Make sure that the object being collapsed doesn't go away on us...by
gaining extra references to it.

Submitted by:	John Dyson
Obtained from:
1995-01-05 04:30:40 +00:00
dg
6853f1358f Initialize map start hint to vm_map_find()...not doing so will cause it
to fail if the random thing on the stack happens to be too large.

Submitted by:	David Jones <dej@qpoint.torfree.net>
1995-01-05 03:59:38 +00:00
swallace
464dcda558 Change to
#define STANDARD_SEARCH_DIRS    "/usr/lib", "/usr/X11R6/lib", "/usr/local/lib"
Like in 2.0R, except without /usr/X386.
1995-01-05 02:36:29 +00:00
jkh
d1cdfc5740 Typo fix from Ollivier Robert.
Submitted by:	ollivier
1995-01-05 02:15:05 +00:00
jkh
6bec447346 Rename check-md5 target to checksum.
Submitted by:	gpalmer
1995-01-05 01:46:05 +00:00
swallace
ce84ce2f5d Added new function show_index() which does a 'smart' display of the index file.
Index descriptions are limited to MAXINDEXSIZE (60) chars.  Any description
beyond that is truncated.  Also, only the first line is displayed as well.
This allows pkg_info -a -I to be formated in two columns with one line
per package for easy reading.

Reviewed by:	jkh
1995-01-05 01:10:13 +00:00
ache
0ad6eb490b Add drainwait option examples 1995-01-05 00:11:52 +00:00
ache
c407bc4dfe Fight agaist hanging modems: add new drainwait option.
Reviewed by: Bruce
1995-01-05 00:03:06 +00:00
ache
e4d42a5dab Fight against hanging modems: add timeout to ttywait.
Reviewed by: Bruce
1995-01-05 00:01:07 +00:00
gibbs
57a609cb01 Remove -DDIAGNOSTIC in makefile. The DIAGNOSTIC code is severly broken and
will change if I have more time to look at it.  Keep at least 5 segments
cleaned if possible (instead of 2 which is a bare minimum for FS operation).
1995-01-04 23:54:06 +00:00
gibbs
01b36e7068 Honor the values for bsize, fsize and bps from the disklabel. 1995-01-04 23:50:30 +00:00
gibbs
948b9d9b81 Allow for the specification of bsize, fsize, and bps (blocks per segment)
for LFS filesystems.
1995-01-04 23:49:51 +00:00
gibbs
e8de8a1cf8 Change panic messges that are ffs_blah functions to say they are ffs not
ufs functions.
1995-01-04 23:48:04 +00:00
gibbs
64084dbc31 LFS stability patches. There is still a problem with directory update
ordering that can prove fatal during large batches of deletes, but this
is much better than it was.  I probably won't be putting much more time
into this until Seltzer releases her new version of LFS which has
fragment support.  This should be availible just before USENIX.
1995-01-04 23:46:34 +00:00
jkh
dcc78e4b6b Gary Palmer's patches for checksumming and description.
Submitted by:	gpalmer
1995-01-04 23:06:38 +00:00
ats
7e3a824408 Submitted by: Ollivier ROBERT
Wrong description where the printer socket lives. Changed from /dev/printer
to /var/run/printer. Bug report submitted by Ollivier ROBERT.
1995-01-04 22:55:00 +00:00
ache
f0cf9c3afa Fix BINMODE to override sys.mk defaults 1995-01-04 22:43:52 +00:00
ache
985f71bd97 Add readline/doc to SUBDIR 1995-01-04 22:38:51 +00:00
ache
1ec941f963 Remove INSTALL, now into sys.mk 1995-01-04 22:32:40 +00:00
ache
0d743302c2 Fix format error 1995-01-04 22:21:06 +00:00
ache
aad9c55aa2 Add dependances 1995-01-04 22:19:34 +00:00
ache
59218f64a0 Install infopages 1995-01-04 22:16:14 +00:00
ache
e6052a8f9b Fix building of target with multiply sources 1995-01-04 22:01:58 +00:00
ache
8f98b49f3b Fix error in clean target 1995-01-04 21:34:13 +00:00
ache
47884c8b68 Much improved variant 1995-01-04 21:29:32 +00:00
dg
b93e2d9306 Made a few cosmetic changes, and fixed a bug in handling the case of the
remote DMA not completing correctly (the packet was still queued for xmit).
1995-01-04 21:10:17 +00:00
dg
a4299a519a Corrected the list of volatile registers for outsb, outsw, and outsl.
This bug caused my ethernet driver to break, among other things no doubt.
1995-01-04 20:42:25 +00:00
pst
87cb60d0b7 Fix the GUS driver so that it will initialize properly from power-on...
no more DOS boots to start it up.

Simply did a localized nuke of the OUTB macro in this file.  This is
a kludge, since it seems it may actually be necessary in other GUS
files (tbd).

Thanks to: Amancio Hasty & Ken Hornstein
1995-01-04 20:07:27 +00:00
ache
2df53fee46 Add missing "noflush" option from standard rogue 1995-01-04 17:49:28 +00:00
jkh
0c4fcb3d1f Put depends before configure. No reason that I can see for putting it after,
and it breaks mule the way it is now.
1995-01-04 09:58:39 +00:00
jkh
8742cf9deb Some of the doc here was less than adequately fleshed-out. Make some
feeble attempt to do so.
1995-01-04 08:30:33 +00:00
jkh
b274d73442 Add section 11 detailing new `describe' target. 1995-01-04 07:38:40 +00:00
jkh
76fac81c28 Document describe target. 1995-01-04 07:35:46 +00:00
jkh
f117eb99a6 1. Add Thailand mirror.
2. Orthogonalize this thing to just use the basename.  It was a mixture of
   2.0-RELEASE and -current before, and it was just confusing.
1995-01-04 07:23:47 +00:00