summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* From the PR:unfurl2000-02-171-1/+1
| | | | | | | | | | | The first paragraph of "Argument list processing" says that an argument of - will make csh be a login shell. However, running csh with only a - as an argument fails with the error message. csh(1) corrected to reflect this. PR: 16754 Submitted by: Giorgos Keramidas <keramida@ceid.upatras.gr>
* From the PR:unfurl2000-02-171-4/+4
| | | | | | | | | | | | | | | Three minor changes to the manpage of chmod(1). 1. At the description of -H option, I added that symlinks are not followed _by default_ to show that links can be followed, but the default chmod behavior is not to do so. 2. Moved a misplaced .Va file command up to the place it belongs. 3. Simplified the grammar that describes symbolic modes. PR: 16749 Submitted by: Giorgos Keramidas <keramida@ceid.upatras.gr>
* updates the vidcontrol man page to include mention of the new -M flagunfurl2000-02-171-0/+4
| | | | | PR: 16221 Submitted by: Kelly Yancey <kbyanc@posi.net>
* Typo in example: 'vn0' should be 'vn1'gsutter2000-02-171-3/+3
| | | | | | | | 'boundry' --> 'boundary' 'seperated' --> 'separated' PR: 16623 Submitted by: Munehiro Matsuda <haro@tk.kubota.co.jp>
* Close a file descriptor leak in the code which loads file objects.msmith2000-02-171-0/+2
| | | | | Submitted by: Paul Saab <paul@mu.org> Approved by: jkh
* Committed changes to restore(8) for previously undocumented -N option.unfurl2000-02-171-5/+9
| | | | | PR: 15600 Reviewed by: jim
* Doc fix: remove references to ~ftp/bin/ls as we have FTPD_INTERNAL_LSpeter2000-02-171-8/+0
| | | | | | unconditionally active already. Noticed by: obrien
* /tmp --> /var/tmp, for consistency with the rest of the example.gsutter2000-02-171-1/+1
| | | | | | PR: 16463 Submitted by: Mike Heffner <spock@techfour.net> Reviewed by: jim
* Modified jail.8 to correct a typo (inetd_flas vs. inetd_flags), and addrwatson2000-02-161-1/+4
| | | | | a comment to the effect that I'm responsible for the additional documentation, et al, so that phk gets fewer messages about my errors.
* Fix a typo (simple --> simply).jasone2000-02-161-1/+1
|
* Fix null-pointer dereference crash when the system is intentionallydillon2000-02-166-7/+55
| | | | | | | | | | | | | | | | run out of KVM through a mmap()/fork() bomb that allocates hundreds of thousands of vm_map_entry structures. Add panic to make null-pointer dereference crash a little more verbose. Add a new sysctl, vm.max_proc_mmap, which specifies the maximum number of mmap()'d spaces (discrete vm_map_entry's in the process). The value defaults to around 9000 for a 128MB machine. The test is scaled for the number of processes sharing a vmspace (aka linux threads). Setting the value to 0 disables the feature. PR: kern/16573 Approved by: jkh
* Add short entries about the state of threads support.jasone2000-02-162-2/+8
| | | | | | i386/RELNOTES.TXT: Remove an alpha-specific comment with regard to gdb. Approved by: jkh
* For errors, return -1 and set errno to indicate the error type, rather thanjasone2000-02-163-48/+99
| | | | | | | | | returning the error directly. For sem_post(), make sure that the correct thread is woken up. This has unfortunate performance implications, but is necessary for POSIX compliance. Approved by: jkh
* Add man pages for the sem_*() functions.jasone2000-02-1620-8/+1535
| | | | Approved by: jkh
* Remove a diagnostic printf.gibbs2000-02-161-3/+0
| | | | Noticed by: imp@FreeBSD.org
* These are regression tests for the P1003.1B scheduler.dufault2000-02-1611-0/+1061
| | | | Approved by: jkh
* Add libhistory.so.3 from 3.4-RELEASE.obrien2000-02-162-3/+226
| | | | Approved by: JKH
* Fix typo's.asmodai2000-02-161-1/+1
| | | | Submitted by: George Cox <gjvc@extremis.demon.co.uk>
* This patch to BTX fixes several small things:jhb2000-02-162-12/+58
| | | | | | | | | | | | | | | | | | | | | 1) Fix a bug in the int15 function 87 emulation where we only copied half of what the BIOS asked for. This caused the Mylex RAID adapter to go haywire and start trashing memory when you tried to boot from it. 2) Don't use interrupt 19 to reboot. Instead, set the reboot flag to a warm boot and jump to the BIOS's reboot handler. int 19 doesn't clear memory or restore the interrupt vector table, and thus really isn't safe. For example, when booting off of PXE, the PXE BIOS eats up a chunk of memory for its internal data and structures. Since we rebooted via int 19, using the 'reboot' command in the loader resulted in that memory not being reclaimed by the BIOS. Thus, after a few PXE boots, the system was out of lower memory. 3) Catch any int 19 calls made by a BTX client or a user pressing Ctrl-Alt-Delete and shutdown BTX and reboot the machine cleanly. This fixes Ctrl-Alt-Delete in the loader and in boot2 instead of presenting the user with a BTX fault. Approved by: jkh Found by: 1) by msmith
* Fix coredump in gethostbyaddr() when the returned answer is too large tofenner2000-02-161-0/+4
| | | | | | | | | fit in the static buffer. This fix causes it to look like there is no data available, which is also wrong but is better than dumping core. PR: bin/10344 Reviewed by: billf Approved by: jkh
* Make it clear that 'options XSERVER' is for pcvt and not for syscons.yokota2000-02-166-6/+6
| | | | | Submitted by: Doug Barton <Doug@gorean.org> Approved by: jkh
* Track if_i{bytes,packets,errors}.mdodd2000-02-161-0/+4
| | | | Approved by: jkh
* Include the file that defines PCIM_CMD_BUSMASTEREN.mjacob2000-02-162-0/+2
|
* Ensure that the busmaster enable bit is set; we can't assume that allmsmith2000-02-162-2/+16
| | | | | | | BIOS code will get this right (and some certainly doesn't). Submitted by: W. Gerald Hicks <jhix@mindspring.com> Approved by: jkh
* Fix a leak. (Thanks Bruce, this was a bonehead mistake on my part :).)sef2000-02-151-3/+8
| | | | Submitted by: Bruce Evans
* Hide the boring ``not probed (disabled)'' messages behind `bootverbose'.joerg2000-02-151-0/+2
| | | | | | | | | This unspams the boot messages, concentrating on the drivers that have actually been probed. This basically resurrects revision 1.106 from old /sys/i386/isa/isa.c. Reviewed by: jkh, dfr
* The AlphaServer 1000A is now known to work. Remove mentions of itgallatin2000-02-152-2/+2
| | | | | | being untested. Approved by: jkh
* o Wilko Bulte has tested our AlphaServer 1000A ("Noritake") supportgallatin2000-02-151-11/+0
| | | | | | | | | code & it survives a buildworld. So remove the dire warnings about Noritake support being untested. o Remove a disconserting printf() left over from NetBSD Approved by: jkh
* Add userconfig entries for the new atapi devices.jkh2000-02-151-0/+2
| | | | Submitted by: Dan Papasian <bugg@bugg.strangled.net>
* Fix pathname of pim6sd.conf from /usr/local/v6/etc to /etc.shin2000-02-152-5/+5
| | | | Approved by: jkh
* Fix pathname of pim6dd.conf from /usr/local/v6/etc to /etc.shin2000-02-152-5/+5
| | | | Approved by: jkh
* -P option was not enabled, so enable itshin2000-02-151-1/+6
| | | | | | | (The option specify IPsec policy for rtadvd to receive Router Renumbering messages.) Approved by: jkh
* Correct pathname of rtadvd.conf from /usr/local/v6/etc to /etc.shin2000-02-152-4/+4
| | | | Approved by: jkh
* Include /usr/libexec in the list of upgrade targets by chflags'ing it first.jkh2000-02-152-2/+2
|
* Fixed regressions in rev.1.274:bde2000-02-152-22/+30
| | | | | | | | | | | | | | | | 1) Non-AST4 multiport cards were broken by bypassing the code that changes `idev' to the multiport master device. 2) AST4 multiport cards apparently were broken by inverting the test for the master device having an irq. 3) Error handling for nonexistent master devices was broken by removing a check for a null pointer. 4) `int' error codes returned by bus_get_resource() were assigned directly to the boolean variable com->no_irq. Probably harmless, since the boolean is implemented as a u_char. Submitted by: part 1) by Chris Radek <cradek@in221.inetnebr.com> part 2) by yokota Approved by: jkh
* Fix bugs in telnet.shin2000-02-153-24/+48
| | | | | | | | | Sorry there were still several bugs. -error retry at af missmatch was incomplete. -af matching for source addr option was wrong -socket was not freed at retry. Approved by: jkh
* Add -4 and -6 options.shin2000-02-156-16/+46
| | | | | | | | | Current getaddrinfo() implemetation has a problem of too much resolving waiting time on INET6 enabled systems. -4 and -6 options can limit name resolving address family and is a possible workaround for the problem. Approved by: jkh
* Add IPv6 loopback entry into src/etc/hosts.shin2000-02-151-0/+1
| | | | | | | | Missing IPv6 loopback name record cause name resolving lock on INET6 enabled systems in some cases. So define it. Approved by: jkh
* No arguments needed for fore_dnld any longer.phk2000-02-156-6/+6
| | | | Approved by: jkh
* With the kind permission of Marconi Communications (Formerly "Fore ↵phk2000-02-155-12/+1906
| | | | | | | | | | | | | | | Communication" include a copy of the 3.0.1 firmware for the PCA200E card in the fore_dnld program. There are various and subtle compatibility issues between the hfa driver and the microcode, this version is belived to work best. If a file is specified on the command line it will be used instead of the embedded image. Approved by: jkh
* Don't try to account for the partial quantum unless the process isphk2000-02-151-4/+0
| | | | | | | | | | curproc. This only makes any difference on SMP, where we used a (potentially very bogus) switchtime from our own CPU to calculate resource usage on another CPU. This should remove some if not all calcru() related warnings on SMP. Approved by: jkh
* Change the text in the mouse protocol menu to indicate that protocolsyokota2000-02-153-18/+30
| | | | | | | for serial mice won't work with the PS/2 and bus mice. No functional change. Approved by: jkh
* Allow comments in interpreter specification lines as incracauer2000-02-151-1/+1
| | | | | | | | | | | | | #! /bin/sh # -*- perl -*- This is simply "delete everything after the next '#', not counting the first char in the line". No effort has been made to allow quoting, backslash escaping or '#' in interpreter names. The complies to POSIX 1003.2 in that Posix says the implementation is free to choose whatever it likes. PR: bin/16393
* Fix ${#varname} (getting length of string) when in double-quotes.cracauer2000-02-151-1/+1
| | | | | | | Approved-by: jkh PR: bin/12137 Submitted by: "Danny J. Zerkel" <dzerkel@columbus.rr.com>
* The people frobbing this file seem constitutionally unable to do sojkh2000-02-151-1/+1
| | | | | without breaking it. Use ${.CURDIR} properly so that beforeinstall target will actually work in the presence of an obj dir.
* - Properly indent $FreeBSD$chris2000-02-151-2/+1
| | | | | | | - Remove NOOBJ to repair read-only building. Submitted by: bde Approved by: jkh
* PR: 10850unfurl2000-02-151-6/+10
| | | | Submitted by: Scott Hazen Mueller <scott@zorch.sf-bay.org>
* Add comments about 12160 options.mjacob2000-02-153-12/+24
| | | | Approved: jkh
* Fix ITDEBUG macro.mjacob2000-02-151-1/+1
| | | | Approved: jkh
* Correctly identify which bus of dual bus SCSI adapters some target modemjacob2000-02-151-2/+8
| | | | | | commands (enable/disable/modify lun && immediate notify) we're talking about. Approved: jkh
OpenPOWER on IntegriCloud