summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Corrected kernel base address.dg1994-08-232-2/+2
|
* Once again, slattach sources ported from 1.1.5 with fixes.rich1994-08-233-172/+122
| | | | | Reviewed by: davidg, bde Submitted by: rich
* Slattach ported from 1.1.5 plus Bruce Evans suggested fix (closerich1994-08-233-120/+511
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FDs and fork before redialing) to prevent dialer from hanging with newer sio.c. Also moved history from the source to the cvs log (here) per David G's suggestion. This compiles but needs testing now... Rich /* * Hacks to support "-a|c|n" flags on the command line which enable VJ * header compresion and disable ICMP. * If this is good all rights go to B & L Jolitz, otherwise send your * comments to Reagan (/dev/null). * * nerd@percival.rain.com (Michael Galassi) 92.09.03 * * Hacked to change from sgtty to POSIX termio style serial line control * and added flag to enable cts/rts style flow control. * * blymn@awadi.com.au (Brett Lymn) 93.04.04 * * Put slattach in it's own process group so it can't be killed * accidentally. Close the connection on SIGHUP and SIGINT. Write a * syslog entry upon opening and closing the connection. Rich Murphey * and Brad Huntting. * * Add '-r command' option: runs 'command' upon recieving SIGHUP * resulting from loss of carrier. Log any errors after forking. * Rich 8/13/93 * * This version of slattach includes many changes by David Greenman, Brian * Smith, Chris Bradley, and me (Michael Galassi). None of them are * represented as functional anywhere outside of RAINet though they do work * for us. Documentation is limited to the usage message for now. If you * make improovments please pass them back. * * Added '-u UCMD' which runs 'UCMD <old> <new>' whenever the slip * unit number changes where <old> and <new> are the old and new unit * numbers, respectively. Also added the '-z' option which forces * invocation of the redial command (-r CMD) upon startup regardless * of whether the com driver claims (sometimes mistakenly) that * carrier is present. Also added '-e ECMD' which runs ECMD before * exiting. * * marc@escargot.rain.com (Marc Frajola) 93/09/10 * * Minor fixes to allow passive SLIP links to work (connections with * modem control that do not have an associated dial command). Added * code to re-check for carrier after dial command has been executed. * Added SIGTERM handler to properly handle normal kill signals. Fixed * bug in logic that caused message about no -u command to be logged * even when -u was specified and the sl number changes. Tried to get * rid of redundant syslog()'s to minimize console log output. Improved * logging of improper command line options or number of command * arguments. Removed spurious newline characters from syslog() calls. * * gjung@gjbsd.franken.de * * sighup_handler changed to set CLOCAL before running redial_cmd. * added flag exiting, so exit_handler is not run twice. Fork * before reopening tty. */
* Ran ft.c through ident.paul1994-08-2315-1744/+1776
| | | | | | | | | | | | | Added a missing #ifdef INET wrapper in lpt.c Main change: Removed the timeout_func_t casts from timeout calls and correctly defined the timeout routines to conform to the new format. lpt.c doesn't have this change. Reviewed by: Submitted by:
* Nuked the 2 second DTR wait; this is handled correctly in the sio driver.dg1994-08-231-1/+0
|
* Fix the libkern references to hopefully DTRT. See comments regardingjkh1994-08-233-21/+63
| | | | | | a slight change in how profiled version is selected - may need to adjust some .mk macros if PROF is foolishly initialized anywhere to a null value. Submitted by: jkh
* gcpp has ceased to exist - point to the right place.jkh1994-08-231-2/+2
| | | | Submitted by: jkh
* Add back atrunjkh1994-08-231-1/+1
| | | | Submitted by: jkh
* Add back `at'jkh1994-08-231-2/+2
| | | | Submitted by: jkh
* Put in crypt.c with NO crypt() call, and all other crypt(3) functions justcsgr1994-08-220-0/+0
| | | | | | | | | as dummies. (If you do not have libcrypt in your system, you are now HOSED.) People outside the USA can now freely SUP lib. (The only bits of the tree with encryption stuff in are now rc/secure and src/kerberosIV.) Submitted by: Geoff.
* adjkerntz addedache1994-08-221-1/+1
|
* pc3r russian koi8-r syscons console addedache1994-08-221-0/+22
|
* Add sample (empty) fbtab file. Anyone is welcome to add additionalguido1994-08-221-0/+2
| | | | | | lines (like perhaps line for soundblasters etc). Reviewed by: Submitted by: guido
* Implemnet fbtab ala SunOS (thanks to WZV, see login_fbtab.c)guido1994-08-225-5/+163
| | | | | Reviewed by: Submitted by: guido
* Implement fbtab ala SunSO.guido1994-08-225-4/+111
| | | | | | Could not compile it (on thud) because ttychar.h was still broken. Reviewed by: Submitted by: guido
* Add Sun alike fbtab functionality.guido1994-08-221-0/+42
| | | | | Reviewed by: Submitted by: guido
* remove unnecessary occurrence ofcsgr1994-08-221-5/+1
| | | | | | | | #ifndef _SYS_TTYCHARS_H_ #define _SYS_TTYCHARS_H_ ... #endif Submitted by: Geoff
* print "BUSY" instead of error number if filesystem was busy duringdg1994-08-222-10/+26
| | | | | vfs_unmountall() - this is the most common case. If it was a different error, then print the error number.
* Restore the intr_* array variables that were removed in the previousbde1994-08-221-1/+5
| | | | | | | | | | | | revision. They caused redundant redeclaration warnings because I forgot to declare them as extern and gcc-2.6.0 treats "extern int x[];" slightly different from "int x[];" (this is probably a bug). The new versions will cause RR warnings from gcc-2.4.5 because it does not understand that the second declaration in "extern int x[]; int x[1];" is not redundant. The variables don't actually need to be declared in a header file because they are used in only one C source file and one assembler source file, but I want all public variables and comments about them to be findable by grepping *.h.
* - Make each target depend on its source so that all the targets don't getbde1994-08-221-6/+7
| | | | | get built every time. - Use the standard clean and cleandir targets.
* Remove dead code. gmon stuff is now done better in libc/gmon anbde1994-08-221-11/+3
| | | | | | | | | <machine/profile.h>. The old version was writing an incomplete header without the profrate field that is necessary to handle the current faster profiling clock. The counters that are where the the profrate should be are usually 0 and gprof converts a profrate of 0 to hz so the old version gave times too large by a factor of profhz/hz = 10.24.
* Pad `_cpu_vendor' to finish on a 32-bit boundary so that most of thebde1994-08-223-9/+9
| | | | locore globals aren't misaligned.
* move #include of <sys/errno.h> so that #defining KERNEL actually has an effect,csgr1994-08-221-3/+4
| | | | | | and then also add a declaration of ernno as an extern int, because we lose that due to having KERNEL defined while we include errno.h. Reviewed by: Geoff.
* Idempotency #endif was not at end of file or commented.bde1994-08-221-3/+3
|
* - Fix warnings in df, etc. caused by misplaced declaration of doumount().bde1994-08-221-4/+4
| | | | - Fix bogus comments caused by misplaced #endif.
* - Fix attribute for __pure2.bde1994-08-221-3/+3
| | | | - Update name of idempotency identifier in comment to match code.
* Ok, this should work with a centralized package directory now (so youjkh1994-08-221-6/+5
| | | | | can elect to dump all finished packages in one directory). Submitted by: jkh
* Make package target a lot more general.jkh1994-08-221-6/+14
| | | | Submitted by: jkh
* Whoops - left out the package rule!jkh1994-08-221-1/+5
| | | | Submitted by: jkh
* Use proper proper package suffix.jkh1994-08-221-2/+2
| | | | Submitted by: jkh
* Whoops, left out a backslash in my package rule.jkh1994-08-221-4/+4
| | | | Submitted by: jkh
* Ok, now we warn if we're about to recreate the distfile from configuredjkh1994-08-221-7/+12
| | | | | | sources. Configuring doesn't always _do_ anything, which is why it's a warning and not an error. Submitted by: jkh
* New bsd.port.subdir.mk file for use by ports. This groks all thejkh1994-08-222-42/+60
| | | | | | | | | | | | | | | | | | | special ports building targets and will recurse properly. Sorry, Julian E - no fancy prompts, just recursion! :-) Added a `bundle' target. Purpose is as follows: You want to give someone a complete tree sans distfiles (for sticking on CDROM perhaps?) but the difficulty there is that the first time the user types `make clean', all the unpacked sources are gone again. Typing `make bundle' recreates the original distfile if it can, so someone can "back up" their unpacked tree easily with one command. Whoops, just thought of something - it should warn if you configured the working source. Ok, next commit! :) Submitted by: jkh
* modified include stucture to 2.0 style.sos1994-08-221-2/+3
| | | | | Reviewed by: Submitted by:
* WINE/user LDT support from John Brezak, ported to FreeBSD by Jeffrey Hsudg1994-08-221-0/+1
| | | | | | <hsu@soda.berkeley.edu>. ...Moved over from 1.1.5. Other portions of this commit were done by moving the RCS files into place directly.
* I had to bite the bullet: There's now a port.subdir.mk that does the rightjkh1994-08-222-3/+91
| | | | | | thing with recursive build, configure, bundle or extract targets. Reviewed by: Submitted by:
* This is weird. I *added this*, but it went away again! Ummm.. Mumble.jkh1994-08-222-0/+12
| | | | | I'm confused.. Submitted by: jkh
* Fixed minor typo in diagnostic message.dg1994-08-222-4/+4
|
* Added (timeout_func_t) casts to timeout/utimeoute calls.paul1994-08-212-25/+21
| | | | | Reviewed by: Submitted by:
* Add skey supprotguido1994-08-218-3/+695
| | | | | Reviewed by: Submitted by: guido
* Another typo by mepaul1994-08-211-3/+3
| | | | | Reviewed by: Submitted by:
* Remove the idempotency I added -- it was wrong.paul1994-08-211-6/+1
| | | | | Reviewed by: Submitted by:
* Add skey supportguido1994-08-212-2/+13
| | | | | Reviewed by: Submitted by: guido
* Put skey support to ftpdguido1994-08-211-0/+23
| | | | | Reviewed by: Submitted by: guido
* Put skey support in ftpd.guido1994-08-212-3/+25
| | | | | Reviewed by: Submitted by: guido
* Fix typo (define -> ifndef)paul1994-08-211-2/+2
| | | | | Reviewed by: Submitted by:
* Sigh.. Some of these configs are a little hairy. I need to know thejkh1994-08-211-5/+5
| | | | | ${PORTSDIR} too now - pass it to any and all config scripts. Submitted by: jkh
* Removed disk type from disklabel lines, not needed for installingpaul1994-08-212-6/+6
| | | | | | | bootblocks. Reviewed by: Submitted by:
* Add my desire for XPG-style message catalogs to the TODO list.jkh1994-08-211-1/+13
| | | | Submitted by: jkh
* Fixed bootblocks to work with FreeBSD 2.0paul1994-08-218-32/+46
| | | | | | | | | | | | | 1) Fixed up some header locations 2) Replaced list of boot files with /kernel 3) Changed disklabel use in Makefile to conform to 4.4 4) Added size command in Makefile to get close estimate of bootblock sizes. Total size of text and data must be below 64K, slightly overestimated since a.out header subsequently gets stripped. 5) Various buffer sizes are set to 8192 bytes in sys.c. In 4.4 MAXBSIZE is set to 64K which is too big for the bootblocks to deal with. Submitted by: Paul Richards
OpenPOWER on IntegriCloud