summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ifconfig if0 netmask xxx.xxx.xxx.0 didn't change the netmask.ume2001-07-261-1/+3
| | | | | PR: bin/28833 MFC after: 3 days
* UPGRADE.TXT doesn't exist anymore...point readers at INSTALL.TXT,bmah2001-07-261-1/+1
| | | | which now contains binary upgrade info.
* Add some navigation in the form of internal hyperlinks to get aroundbmah2001-07-262-6/+20
| | | | | the different sections of the release notes. There's probably a better way to do this.
* Fix some style nits, and also try to include some text appropriate tobmah2001-07-261-8/+19
| | | | whether this release notes build is for a snapshot or a release.
* List a forgotten SGML source file (intro.sgml) in the release notesbmah2001-07-262-0/+2
| | | | Makefiles.
* Move definition of structure used in CONS_SCRSHOT ioctl in front of definitionsobomax2001-07-261-3/+3
| | | | | | of ioctl itself, like we have for all other ioctl's in this file. MFC after: 2 weeks
* Handle peer REQ/NAKs of >1500 byte MRUs when we have no preference.brian2001-07-262-12/+16
| | | | MFC after: 3 days
* Include <sys/kbio.h> or <machine/console.h>, depending on __FreeBSD_version.tg2001-07-261-1/+8
| | | | | | This will reduce diffs to -STABLE. Don't leave an image of the video RAM around.
* Correct font names. Now, how on earth did this work on my system?tg2001-07-261-3/+3
|
* Fix bugs introduced in 1.26:tg2001-07-261-10/+8
| | | | | | | | - restore -I. in CFLAGS - add dependencies of objects on font headers - missing dependencies of font headers on their sources Suggested by: bde
* Use STD{ERR,IN,OUT}_FILENO instead of their numeric values. Thesheldonh2001-07-2637-110/+144
| | | | | | | definitions are more readable, and it's possible that they're more portable to pathalogical platforms. Submitted by: David Hill <david@phobia.ms>
* Fix spelling in the last commit. (Oh, I thought I had run ispell... ;-<yokota2001-07-261-3/+3
| | | | Spotted by: sheldonh
* Adds notes on program termination and signal handlers.yokota2001-07-261-0/+48
| | | | | | | | I revised the text after dd's kind review. So, if you find any error, it is probably introduced by my last minutes' update and is entirely my fault, not dd's. Reviewed by: dd
* Remove duplicate cvs tag.eric2001-07-262-4/+0
|
* Update sysinstall menu texts to reflect the new key behavior.eric2001-07-262-18/+28
| | | | Approved by: jkh
* Properly update cursor position when the list is scrolled.eric2001-07-262-8/+12
|
* New release notes: ed(4) MII, isdnd.rc(5) maxconnecttime, ppp(8)bmah2001-07-264-10/+46
| | | | | | tcpmssfixup for inbound packets, BIND NOADDITIONAL. MFCs noted: RANDOM_IP_ID, ppp(8) tcpmssfixup, libcrypt unification.
* Handle keys consistently.eric2001-07-262-1/+4
|
* Speed up console driver.nyan2001-07-262-296/+290
| | | | Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
* Xref to openssl(1) (i.e. "openssl passwd")kris2001-07-261-0/+1
| | | | | | PR: 28885 Submitted by: Gregory Bond <gnb@itga.com.au> MFC After: 1 week
* Remove $daily_status_named_logs and figure out which /var/log/messages*brian2001-07-263-51/+33
| | | | | | | | files to look an (in the same way that /etc/security does). Don't single-quote $start, reducing it to an empty string. MFC after: 3 days
* Fix typo (* -> &)msmith2001-07-261-1/+1
| | | | Submitted by: Andrew Doran <ad@netbsd.org>
* Add, belated, entry for ed driver needing miiimp2001-07-251-0/+5
|
* Add /dev/hpn? as an alias to /dev/aac? so that the HP version of the CLIscottl2001-07-253-2/+9
| | | | | | utility will work, and document it in the manpage. MFC after: 3 days
* This commit was generated by cvs2svn to compensate for changes in r80357,peter2001-07-251-2/+4
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Commit the hwsleep.c patch for suspend/resume onto the vendor branch.peter2001-07-251-2/+4
| | | | | | | | | | | | This has supposedly been incorporated into the Intel code already, so this will get cleanly replaced with the "official" version when it is next imported and will not cause any conflicts or hiccups.
* | Fix 64 bit issues so that sockstat && fstat work correctly on alpha.mjacob2001-07-252-10/+9
| | | | | | | | | | | | PR: 29231 Submitted by: pherman@frenchfries.net MFC after: 2 weeks
* | Somewhat modernize ip_mroute.c:fenner2001-07-253-192/+160
| | | | | | | | | | | | | | - Use sysctl to export stats - Use ip_encap.c's encapsulation support - Update lkm to kld (is 6 years a record for a broken module?) - Remove some unused cruft
* | Don't bother passing p to rtioctl just so it can fail to pass it to mrt_ioctlfenner2001-07-253-8/+3
| |
* | Unbreak ip_mroute_modfenner2001-07-252-4/+14
| |
* | Use sysctl to export multicast routing statsfenner2001-07-251-5/+13
| |
* | As commented in defined in sys/net/route.c, rt_fixchange() has a badume2001-07-251-5/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | effect, which would cause unnecessary route deletion: * Unfortunately, this has the obnoxious * property of also triggering for insertion /above/ a pre-existing network * route and clones. Sigh. This may be fixed some day. The effect has been even worse, because recent versions of route.c set the parent rtentry for cloned routes from an interface-direct route. For example, suppose that we have an interface "ne0" that has an IPv4 subnet "10.0.0.0/24". Then we may have a cloned route like 10.0.0.1 on the interface, whose parent route is 10.0.0.0/24 (to the interface ne0). Now, when we add the default route (i.e. 0.0.0.0/0), rt_fixchange() will remove the cloned route 10.0.0.1. The (bad) effect also prevents rt_setgate from configuring rt_gwroute, which would not be an intended behavior. As suggested in the comments to rt_fixchange(), we need stricter check in the function, to prevent unintentional route deletion. This fix also solve the "IPV6 panic?" problem in nd6_timer(). Submitted by: JINMEI Tatuya <jinmei@isl.rdc.toshiba.co.jp> MFC after: 4 days
* | Add build infrastructure for a libiconv loadable kernel module.sheldonh2001-07-251-0/+12
| | | | | | | | | | This should allow the use of the smbfs module without the requirement to rebuild the kernel with LIBICONV.
* | Reset the device's powerstate to d0 when resuming from a suspendjlemon2001-07-251-25/+34
| | | | | | | | | | | | operation, not just when we initally attach to the device. Submitted by: warner
* | Make dynamic sysctl entries start at 0x100, not decimal 100 - there areroam2001-07-252-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | static entries with oid's over 100, and defining enough dynamic entries causes an overlap. Move the "magic" value 0x100 into <sys/sysctl.h> where it belongs. PR: 29131 Submitted by: "Alexander N. Kabaev" <kabaev@mail.ru> Reviewed by: -arch, -audit MFC after: 2 weeks
* | Style(9): function names on a separate line, max line length 80 chars.roam2001-07-251-4/+8
| | | | | | | | | | Reviewed by: -arch, -audit MFC after: 2 weeks
* | Better checking of duplicated interrupt handler installation.iwasaki2001-07-251-1/+1
| | | | | | | | Reviewed by: msmith
* | Some minor fixes.iwasaki2001-07-251-4/+11
| | | | | | | | | | | | | | - Set system power profile only when AC-line status has canged. - Get initial AC-line status after whole system is up. Reviewed by: msmith
* | Make the multiple interrupts attachment an error not a panic.imp2001-07-251-2/+5
| | | | | | | | | | | | | | | | Sometimes, when pccardd is restarted, it fails to realize that the device is already attached and tries to attach it again. This leads to bad mojo since the pccard code isn't setup to handle that, so the panic was put in. Now it appears that it is triggering too easily, so I'm backing it off to a non-fatal error.
* | Move the kernel stuff out of snoop.h. It was only there because somedd2001-07-252-39/+39
| | | | | | | | | | of the snp* functions needed to be called from tty.c, which is no longer the case.
* | Fix breakage introduced in rev 1.26, with the introduction ofsheldonh2001-07-251-3/+3
| | | | | | | | | | | | | | absoluate pathnames starting with /usr/src. This fixes the installworld target for the case where the source tree is not in /usr/src.
* | Note that this file was repo-copied from sys/kern/tty_snoop.c.dd2001-07-250-0/+0
| |
* | sys/kern/tty_snoop.c is now sys/dev/snp/snp.c.dd2001-07-253-613/+3
| | | | | | | | Repo-copy by: jdp
* | Note MFC of {d,h}watch DDB commands.dd2001-07-252-2/+2
| |
* | Use a safer method of creating the temporary password file.jedgar2001-07-251-8/+8
| | | | | | | | | | | | Submitted by: dynamo@harvard.net Obtained from: OpenBSD MFC after: 3 days
* | Change permissions from [4]554 to [4]551brian2001-07-251-2/+2
| | | | | | | | MFC after: 3 days
* | Fix a stupid bug which resulted in a blank line in the status output ifbrooks2001-07-251-8/+4
| | | | | | | | | | | | WEP is supported, but not keys are set. MFC after: 3 days
* | Remove ISP_SMPLOCK stuff- we're just using locking now.mjacob2001-07-251-53/+40
| | | | | | | | | | | | | | | | | | | | Correctly reintroduce loop_seen_once semantics- that is, if we've never seen good link, start bouncing commands with CAM_SEL_TIMEOUT. But we have to be careful to have let ourselves try (in isp_kthread) to check for loop up at least once. PR: 28992 MFC after: 1 week
* | Roll minor version. Remove ISP_SMPLOCK nonsense. We're using full locking,mjacob2001-07-251-19/+2
| | | | | | | | | | | | and that's final. MFC after: 1 week
* | fix misspelling introduced in rev 1.14 (sames as -> same as)billf2001-07-251-1/+1
| |
OpenPOWER on IntegriCloud