summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 1. Remove the hateful EDITOR=ee from root's environment; it's onejkh1999-04-272-4/+3
| | | | | | | | thing to use it at startup, when you don't know if the user can handle vi or not, but yet another thing to leave it as a permanent land mine for root. 2. Put /usr/X11R6/bin in path; it makes getting the desktop up a lot easier.
* bump __FreeBSD_version to 400005:phk1999-04-271-2/+2
| | | | suser() API changed.
* Suser() simplification:phk1999-04-27128-394/+399
| | | | | | | | | | | | | | | | | | | 1: s/suser/suser_xxx/ 2: Add new function: suser(struct proc *), prototyped in <sys/proc.h>. 3: s/suser_xxx(\([a-zA-Z0-9_]*\)->p_ucred, \&\1->p_acflag)/suser(\1)/ The remaining suser_xxx() calls will be scrutinized and dealt with later. There may be some unneeded #include <sys/cred.h>, but they are left as an exercise for Bruce. More changes to the suser() API will come along with the "jail" code.
* lpd tries to be clever and checks if RM == my_hostname.jkh1999-04-273-3/+25
| | | | | | | | | However, it doesn't check if the remote printer name it is sending it to is the same as the local printer name, and so chokes 'cos "laser" is not a real printer. PR: 7081 Submitted by: David Malone <dwmalone@maths.tcd.ie>
* echo ^G^G -> echo \007\007 in loader.rc in kern.flp.max1999-04-271-3/+3
|
* Mention that set-id bits are not honoured for shell scripts andhoek1999-04-271-1/+8
| | | | | | | filesystems with the "nosuid" option. Mention that syscall tracing is disabled sometimes. PR: misc/11328
* If pkg_info is run with no args, default to "-aI".jkh1999-04-271-2/+7
|
* Make options like NO_F00F_HACK work (with context sensitive lexical rules).luoqi1999-04-272-30/+45
|
* Specify the ssh command to use for a VPN inline.brian1999-04-271-7/+3
|
* Change ``set device'' so that it parses its arguments as onebrian1999-04-275-62/+91
| | | | | | | | | | device per argument rather than the old way of concatenating everything then splitting the result at commas and whitespace. Old syntax of ``set device /dev/cuaa0, /dev/cuaa1'' may no longer contain the comma, but syntax such as ``set device "!ssh host ppp -direct label"'' is now possible.
* Fix from Justin for transfer negotiations for targets up to target ID 7.ken1999-04-261-39/+43
|
* Add support for printing bridging statistics with ``-p bdg '' .luigi1999-04-264-2/+42
| | | | If someone has a better flag to use I'll be glad to change it.
* Make one pass through the firewall the default.luigi1999-04-261-2/+2
| | | | Multiple pass (which only affects dummynet) is too confusing.
* Move an option outside of a nested list and up a bit to live free amongkris1999-04-261-3/+3
| | | | its brothers and sisters.
* Only call kvtop on non-null id_maddr's...peter1999-04-261-3/+8
|
* Temporary hack. The radix code shouldn't need this, it should bepeter1999-04-261-1/+2
| | | | | | | | able to expand the zeros, ones etc masks on the fly. It seems a good number of domains don't set the rn_maxkey variable anyway, and because this is a domain itself, there is no guarantee we've been called after a protocol that actually has set it (ie: inet), so start with a maxkey of a relatively sane size as a base point until it can adapt on the fly.
* Protect the ifinit() function's internals with splimp() for safety sincepeter1999-04-261-4/+5
| | | | | | | | it used to be that way. I'm not sure that it's needed, but it does walk the ifp list.. Incidently, there's nothing to sanity check the ifq_maxlen on loaded interfaces..
* Minor seatbelt tweak. The init code used to be splimp() protected,peter1999-04-261-2/+7
| | | | maintain that in case.
* Register the netisr's via SYSINIT rather than linker sets.peter1999-04-263-80/+18
|
* Register the local (unix domain) sockets ourselves.peter1999-04-261-1/+2
|
* Redo domain registration to use SYSINITS rather than linker sets.peter1999-04-261-70/+8
| | | | | | | Get rid of the spl wrapper kludge, it doesn't seem to be needed between init calls since all that's running is the domain/protocol timers and they are safe since domain list modifications are splnet() protected (which blocks the timers)
* Add support for NetBSDbrian1999-04-269-33/+57
|
* #include <errno.h>, not <sys/errno.h>brian1999-04-265-12/+12
|
* Add support for NetBSD (history() from libedit is different).brian1999-04-261-2/+9
|
* Make DOMAIN_SET() use SYSINIT rather than linker sets.peter1999-04-261-3/+3
|
* Make NETISR_SET use a SYSINIT() rather than a linker set.peter1999-04-261-5/+5
|
* More egcs warning fixes:imp1999-04-2510-16/+23
| | | | | | | | | | o main returns int not void o use return 0 at end of main when needed o use braces to avoid potentially ambiguous else o don't default to type int o #ifdef 0 -> #if 0 Reviewed by: obrien and chuckr
* More egcs warning fixes:imp1999-04-253-9/+10
| | | | | | | | | | | o main returns int not void o use braces to avoid potentially ambiguous else Note: The fix to natd is potentially functional in nature since I used the indentation as the right thing rather than the struct semantics. Someone more familiar with the code should double check me on this one. Reviewed by: obrien and chuckr
* More egcs warning fixes:imp1999-04-258-18/+13
| | | | | | | | | | o use braces to avoid potentially ambiguous else o don't default to type int (and also remove a useless register modifier). o Use parens around assignment values used as truth values. o Remove unused function. Reviewed by: obrien and chuckr
* More egcs warning fixes:imp1999-04-257-14/+19
| | | | | | | | | | o main returns int not void o use return 0 at end of main when needed o use braces to avoid potentially ambiguous else o don't default to type int (and also remove a useless register modifier). Reviewed by: obrien and chuckr
* Use braces to avoid potentially ambiguous else clause.imp1999-04-254-5/+8
| | | | | | main's return type is int not void. Reviewed by: obrien and chuckr
* Fix a very long standing bug in run_interrupt_driven_config_hooks(). Itpeter1999-04-251-3/+4
| | | | was fetching the next pointer from memory that could have been free()'d.
* Make man page reflect reality on parsing rules. Now I know Jordandcs1999-04-252-6/+8
| | | | never read this man page... :-)
* First set of fixes to keep egcs happy. These include {} around singleimp1999-04-2511-26/+34
| | | | | | | | | | statement if blocks[*] when the else could be ambiguous, not defaulting to int type and removal of some unused variables. [*] This is explicitly allowed by style(9) when the single statement spans more than one line. Reviewed by: obrien, chuckr
* pmap_dispose_proc and pmap_copy_page:alc1999-04-252-28/+46
| | | | | | | | | | Conditionally compile 386-specific code. pmap_enter: Eliminate unnecessary TLB shootdowns. pmap_zero_page and pmap_zero_page_area: Use invltlb_1pg instead of duplicating the code.
* Revert previous commit. It broke 'make world' with NOSHARED=yes becausesteve1999-04-251-2/+2
| | | | | | it was using the wrong library. Submitted by: bde
* use `target' macro crafted in parent Makefile rather than making our ownobrien1999-04-251-2/+2
| | | | Submitted by: Warner Losh
* Hookup FORTRAN info docs.obrien1999-04-252-1/+15
| | | | Submitted by: Mark Murry
* Typowosch1999-04-252-4/+4
| | | | | PR: docs/11259 Submitted by: mzaki@e-mail.ne.jp
* Remove several explicit rules. The two for exceptioni.o and typeionfoi.oobrien1999-04-251-43/+1
| | | | | | | aren't needed as those files aren't part of libstdc++ any longer. Another isn't needed as Cygnus doesn't compile with -frtti. Noticed by: bde & my initial mispelling of ".So".
* Change the loader.rc in the boot floppy to:max1999-04-251-2/+4
| | | | | | | | | | | 1. Enable use of serial console for installation by using autoboot instead of boot. 2. Beep when the mfs root floppy needs to be placed in the fdd. 3. Beep again when mfs root image is loaded and the loader waits for ten seconds before it starts booting for any input. (Serial console users can say " boot -h" here.)
* Typo in comment.kris1999-04-251-1/+1
|
* Reverted some more of rev.1.9 (emphasize that -H != -h).bde1999-04-251-1/+6
|
* Added used include.dt1999-04-251-1/+2
|
* Quick fix to allow transfer files >2GB.dt1999-04-251-3/+3
|
* Add an entry for the Xircom GlobalACCESS modembrian1999-04-252-2/+14
| | | | | PR: 10277 Submitted by: Nathan Ahlstrom <nrahlstr@winternet.com>
* Make the machdep.i8254_freq and machdep.tsc_freq sysctls modify thephk1999-04-259-13/+37
| | | | | | timecounter as well Asked for by: bde, jhay
* Allow multiple opens.phk1999-04-251-5/+10
|
* Use PCCARD_MODULE() instead of DATA_SET(), the pccard linker set went apeter1999-04-251-1/+6
| | | | while ago.
* Re-fixed to start at 1969 per the actual Posix requirement. Alsowes1999-04-252-7/+7
| | | | fixed a typo on the man page.
OpenPOWER on IntegriCloud