summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Final commit for KTH KerberosIV.markm1997-09-283-9/+9
| | | | -DMAKE_EBONES -> -DMAKE_KERBEROS4
* Change for KTH KerberosIV.markm1997-09-281-14/+22
| | | | -DMAKE_EBONES is changed to -DMAKE_KERBEROS4
* Remove include/kerberosIV directory. It is no longer used.markm1997-09-281-3/+1
|
* Comment out services that conflict with known (kerberos) services.markm1997-09-281-10/+16
| | | | Add KTH names for Kerberos services. (K5-ready).
* Changes for KTH KerberosIV.markm1997-09-281-7/+2
|
* Changes for KTH KerberosIV.markm1997-09-281-2/+2
| | | | telent.h is installed from libtelnet, not the include dir.
* Changes for KTH KerberosIVmarkm1997-09-281-6/+1
|
* Changes for KTH KerberosIV.markm1997-09-281-7/+2
|
* Changes for KTH KerberosIV.markm1997-09-282-11/+22
| | | | | | | | | | | Quieten -Wall a bit. From Joe Traister: The previous patch did not propogate the KRBTKFILE environment variable into the new environment when -l is given to su, making it impossible for kdestroy to find the ticket file. This patch corrects that problem as well as the original segfault problem. (Fixes PR 3903)
* Changes for KTH KerberosIV.markm1997-09-2816-608/+73
| | | | Also quieten -Wall a bit.
* Quieten -Wall.markm1997-09-281-1/+2
|
* Changes for the new KTH KerberosIVmarkm1997-09-281-4/+8
|
* Changes for the new KTH KerberosIV.markm1997-09-281-4/+8
|
* There is a clear separation of the crypto telnet and the non-crypto telnet.markm1997-09-281-4/+0
| | | | | As this is the non-crypto version, remove the useless (commented out) directives and macros.
* Changes for the new KTH Kerberos4.markm1997-09-282-16/+21
| | | | Also make -Wall a bit quieter
* Changes for the new KTH Kerberos.markm1997-09-282-12/+26
| | | | Also make -Wall a bit quieter.
* Print the filename, not the directory we compiled in.phk1997-09-281-2/+2
|
* Change to use the new KTH Kerberos.markm1997-09-282-11/+13
| | | | Also make -Wall a bit quieter.
* Fix handling of nested mountpoints in __getcwd()phk1997-09-282-6/+10
| | | | Detected by: Simon Shapiro <Shimon@i-Connect.Net>
* Synchronize with sys/i386/isa/diskslice_machdep.c revision 1.26.kato1997-09-282-10/+14
|
* Fixed duplicate case introduced by previous commit.kato1997-09-281-5/+4
|
* Typo fixmsmith1997-09-281-1/+1
|
* Fix typo in signal() prototypemsmith1997-09-281-1/+1
|
* Oops, include <sys/conf.h>.kato1997-09-282-0/+2
| | | | Reminded-by: Simon Shapiro <Shimon@i-Connect.Net>
* YAMF22: (rev 1.3.2.2) Display realtime and idle priorities appropriately.peter1997-09-281-2/+14
|
* Added a missing comma for the INTR_SPL case.fsmp1997-09-271-2/+2
|
* Don't depend on time.h including sys/types.hbrian1997-09-271-1/+2
|
* Add support to the host driver for "downloaded constants". These are immediategibbs1997-09-271-43/+32
| | | | | | | | | | | | | operands that are set during seqeuncer program download instead of at assembly time. Remove the REJBYTE sram variable. The host driver can just as easly read the accumulator to get this value. This should fix the reported problems with cards that don't have devices attached to them failing with a stream of "Somone reset bus X" messages. Doug Ledford determined the cause of the problem, fixes by me.
* Add support to aicasm for "downloaded constants". These are immediategibbs1997-09-2713-62/+211
| | | | | | | | | | | | | | | | | | | | | | | | operands that are set during seqeuncer program download instead of at assembly time. Convert the sequencer code to use" downloaded constants" for four run time constants that vary depending on the board type. This frees up 4 bytes of sequencer scratch ram space where these constants used to be stored and also removes the additional instructions required to load their values into the accumulator prior to using them. Remove the REJBYTE sram variable. The host driver can just as easly read the accumulator to get this value. The scratch ram savings is important as the old code used to clober the SCSICONF register on 274X cards which sits near the top of scratch ram space. The SCSICONF register controls bus termination, and clobbering it is not a good thing. Now we have 4 bytes to spare. This should fix the reported problems with cards that don't have devices attached to them failing with a stream of "Somone reset bus X" messages. Doug Ledford determined the cause of the problem, fixes by me.
* Don't login twice when using passwdauthbrian1997-09-274-130/+13
| | | | | Suggested by: Peter Childs <pjchilds@imforei.apana.org.au> Merge the whole module into a few lines in pap.c
* Hide the `no magic' babble behind bootverbose, since it has proven tojoerg1997-09-272-10/+14
| | | | be too much magic for 99.9 % of the users.
* Add noclusterr and noclusterw options. The noclusterr and noclusterwkato1997-09-276-8/+36
| | | | | | disable clustered read and write, respectively. Reviewed by: bde
* Document pkg_add's dependency auto-install. While I'm here, fixhoek1997-09-273-15/+19
| | | | | | | | | a couple typos, and consistent double-spacing after sentences. This is actually a spinoff from the "ports-current discontinued" blow-up some time ago. Ack'd by: jkh
* Clustered read and write are switched at mount-option level.kato1997-09-2727-155/+161
| | | | | | | | | | | | | | | | 1. Clustered I/O is switched by the MNT_NOCLUSTERR and MNT_NOCLUSTERW bits of the mnt_flag. The sysctl variables, vfs.foo.doclusterread and vfs.foo.doclusterwrite are deleted. Only mount option can control clustered I/O from userland. 2. When foofs_mount mounts block device, foofs_mount checks D_CLUSTERR and D_CLUSTERW bits of the d_flags member in the block device switch table. If D_NOCLUSTERR / D_NOCLUSTERW are set, MNT_NOCLUSTERR / MNT_NOCLUSTERW bits will be set. In this case, MNT_NOCLUSTERR and MNT_NOCLUSTERW cannot be cleared from userland. 3. Vnode driver disables both clustered read and write. 4. Union filesystem disables clutered write. Reviewed by: bde
* Synchronize with sys/i386/isa/syscons.c revision 1.233.kato1997-09-271-5/+23
|
* Translated too much of it.wosch1997-09-272-54/+54
| | | | Submitted by: Andrzej Bialecki <abial@korin.warman.org.pl>
* Use revived __maskrune for digittointache1997-09-271-2/+2
| | | | Minor formatting
* Oops, fix typo in istype definitionache1997-09-272-2/+2
|
* 1) Bring '!!' back since we wan't overflow even a charache1997-09-272-34/+38
| | | | | | 2) Revive __maskrune, just return mask now 3) Express __istype via !!__maskrune 4) Use __maskrune in digittoint
* Spell out a few things for the media options.peter1997-09-271-5/+14
|
* Having done ICMP, UDP, and IP, could a TCP display be far behind?wollman1997-09-275-14/+375
|
* Add (ick) -ldes to the boot floppy so that ppp can link again.jkh1997-09-275-10/+10
| | | | | Not sure what this does to exportability but it's probably not good.
* The previous commit broke support for the Pro/10; detect which sort ofmsmith1997-09-262-14/+50
| | | | card we are using and calculate the IRQ accordingly.
* Update documentation for the 'ex' driver to indicate that it supportsmsmith1997-09-261-5/+6
| | | | the Pro/10+ cards as well.
* tiny update of ESC sequence parser.itojun1997-09-263-15/+69
| | | | | | | - some addition of comments (for readability) - iso-2022 G0 designation support. This does almost nothing. Just for avoiding garbled screen when got "ESC ( B". (how about G1/2/3 designation? I'm not sure)
* Synchronize with sys/i386/i386/machdep.c revision 1.266.kato1997-09-262-4/+4
|
* When making make, do cleandir *before* objdir or we'll endjkh1997-09-261-2/+2
| | | | | up with a blown objdir for the depend stage, leaving the .depend file in ${SRCDIR} instead.
* Set `crt' by default to make mail(1) happy.joerg1997-09-262-2/+7
|
* Set `crt' by default to make mail(1) happy.joerg1997-09-263-4/+12
| | | | Also, comment out the not so very commonly used interviews settings.
* I lost a bit of my change in the last commit, this is more like it.phk1997-09-262-4/+10
| | | | Noticed by: bde
OpenPOWER on IntegriCloud