summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-29119-146/+146
| | | | posix standard on the topic.
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-2949-74/+74
| | | | posix standard on the topic.
* Synchronize with sys/i386/i386/machdep.c revision 1.233.kato1997-03-292-2/+94
|
* Synchronize with sys/i386/isa/syscons.c revision 1.207.kato1997-03-291-3/+10
|
* Synchronize with sys/i386/isa/isa.c revision 1.80.kato1997-03-291-5/+3
|
* Support the ".p2align" directive, which is standard in newer versionsjdp1997-03-291-1/+2
| | | | | | | | | | | | | of binutils. For all architectures and object file formats, ".p2align n" aligns to the next multiple of 2**n. Thus for FreeBSD, it does exactly the same thing as the traditional ".align". The old ".align" directive has different meanings in different object formats, and even in different variants of a.out. Sometimes is aligns to a multiple of n, and other times it aligns to a multiple of 2**n. ".p2align" is preferable for use in assembly language sources, since it makes them more portable to object formats other than a.out.
* Don't break the nice symmetry of these messages with undue '>' chars.phk1997-03-281-8/+8
|
* Try to talk to the APM BIOS with version 1.2 if possible.phk1997-03-282-6/+14
|
* Correct the typo, `/heading>', to `</heading>'.hanai1997-03-281-2/+2
| | | | Submitted by: Yoshiaki Uchikawa <yoshiaki@kt.rim.or.jp>
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-2814-31/+31
| | | | posix standard on the topic.
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-2821-44/+44
| | | | posix standard on the topic.
* Add ac which check if the FreeBSD handbook is in sync with the committers listwosch1997-03-282-0/+28
|
* Make this compile after the fsirand changes that deleted two fields.peter1997-03-281-2/+2
| | | | | | | | | I was not sure whether the fs_id fields should be printed in the clear in case of sniffing over a network login etc. It might be an idea to have somebody with spare time go through and find any other missing fields that should be reported. Definate 2.2.x/2.1.x candidate since it breaks the build.
* Added a setjmp() and a longjmp() so that an unexpected trap insidebde1997-03-282-2/+32
| | | | | ddb isn't necessarily fatal. You can now do silly things like `call vprint' and `show map' without losing control.
* Backed out rev.1.5. if %cs is bad, %eip may be bad, but this is no longerbde1997-03-282-6/+4
| | | | fatal.
* Added a setjmp() so that an initial pc that points to unmapped memorybde1997-03-281-10/+12
| | | | isn't fatal. Backed out rev.1.6, which handled special cases of this.
* Something long overdue: compile inb() and outb() into the kernel asjoerg1997-03-282-2/+94
| | | | | | | | functions if DDB is available. The remaining occurences are usually only inlined and thus not available in DDB. I'm sure Bruce will have 23 additions to these 30 lines of code, but at least it's a starting point. ;-)
* Fixed #includes in synopsis to compile.bde1997-03-281-6/+7
| | | | | Fixed #includes in synopsis to declare the prototype in the synopsis. Fixed stale types in description of struct dirent.
* Interim patch/kludge for keyboard lock-up when `kbdcontrol' tries toyokota1997-03-283-9/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | change typematic rate, or the X server (XFree86 or Accelerated X) starts up. So far, there have been two independent reports from Dell Latitude XPi notebook/laptop owners. The Latitude seems to be the only system which suffers from this problem. (I don't know the problem is with the entire Latitude line or with only some Latitude models) No problem report has been heard about other systems (I certainly cannot reproduce the problem in my -current and 2.2 systems). In 3.0-CURRENT, 2.2-RELEASE and 2.2-GAMMA-970310, when programming the keyboard LED/repeat-rate, `set_keyboard()' in `syscons' tells the keyboard controller not to generate keyboard interrupt (IRQ1) and then enable tty interrupts, expecting the keyboard interrupt doesn't occur. It appears that somehow Latitude's keyboard controller still generates the keyboard interrupt thereafter, and `set_keyboard()' doesn't see the return code from the keyboard because it is consumed by the keyboard interrupt handler. The patch entirely disables tty interrupts while setting LED and typematic rate in `set_keyboard()', making the routine behave more like the previous versions of `syscons' (versions in 2.1.X and 2.2-ALPHA, -BETA, and some -GAMMAs). The reporter said this patch eliminated the problem. (I also found another typo/bug, but the reporter and I found that it wasn't the cause of the problem...) This should go into RELENG_2_2.
* Change a "=" to "?=" to make it easier to override the binary formatjdp1997-03-281-3/+3
| | | | from the environment.
* Remove recently commited support for iobase == -2 ("port none")ache1997-03-282-10/+6
| | | | is is really probe routine task (return -1 for no ports)
* Remove support for "port none" and "port auto", it gains nothing,ache1997-03-284-12/+2
| | | | | | non-standard and not used. "port auto" is equal to "port?" or missing "port" keyword now. "port none" is really probe routine task (return -1 for no ports).
* Add code that will reject nfs requests in teh kernel from nonprivilegedguido1997-03-2711-11/+112
| | | | | | ports. This option will be automatically set/cleraed when mount is run without/with the -n option. Reviewed by: Doug Rabson
* Update HISTORY to reflect that this will first appear in 2.2.5.mpp1997-03-271-1/+1
|
* The w+ entry description was misformatted.mpp1997-03-271-1/+1
| | | | Pointed out by: bde
* Fix for logic in no-password accounts.davidn1997-03-271-1/+1
|
* Fix length-related bugsache1997-03-273-72/+99
| | | | Submitted by: Choi Jun Ho <choi.junho@jazz.snu.ac.kr>
* Add Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>peter1997-03-271-1/+2
|
* Fix "-fstype local" that was broken by another bugfix in the Lite2 merge.peter1997-03-271-5/+5
| | | | Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>, PR#3076
* YAMF22jkh1997-03-273-6/+6
|
* Sync with 2.2jkh1997-03-272-6/+6
|
* Typo fix (now how did that one get by me :-).mpp1997-03-271-1/+1
| | | | Submitted by: Philippe Charnier
* FreeBSD modifications and notes for GNU cpio.obrien1997-03-261-0/+10
|
* Get rid of __progname. I thought I already did that...guido1997-03-261-4/+2
|
* make usage() and SYNOPSIS agree with each other and add missing optionsobrien1997-03-262-4/+4
| | | | documented in the DESCRIPTION section.
* Add "conflicts" to sbmidi0 since configured irq passed back to isaache1997-03-263-6/+6
| | | | | | and conflict with sb0 irq. NOTE: existen configurations require "conflicts" adding to sbmidi0 now
* Check sb0 configured in probe routine firstache1997-03-261-2/+10
| | | | Pass configured irq back to isa
* Add "conflicts" to sbxvi0 since all information now passed to isaache1997-03-263-6/+6
| | | | | | | and conflict with sb0 happens. NOTE: it affects existen configurations, add "conflicts" to sbxvi0 line if you see probe error
* Pass configured irq and ports number back to isaache1997-03-261-2/+3
|
* Allow low level probe routine pass configured information back to isaache1997-03-261-10/+4
|
* Update the value of "__FreeBSD__" to 3 for the ELF compiler.jdp1997-03-261-1/+1
|
* Bring the dev/pdq entries into alphabetical order.joerg1997-03-261-4/+4
| | | | Forgotten by: joerg :)
* Don't trick with opl0 address since we have conflicts keywordache1997-03-263-15/+6
|
* Return ports number in probe nowache1997-03-262-2/+8
|
* Return ports number in probe nowache1997-03-261-1/+1
|
* Fix probe wrapper to pass ports number from low level probeache1997-03-261-5/+5
|
* Remove minor warning (for -Wall -Wshadow); clarifies code.davidn1997-03-261-3/+3
|
* Add #define's for port "none" and "auto"ache1997-03-263-5/+7
| | | | Now port ommiting is equal to port "none" not to port 0
* This variant is commentedache1997-03-263-0/+108
| | | | Submitted by: Choi Jun Ho <choi.junho@jazz.snu.ac.kr>
* Synchronize with sys/i386/i386/machdep.c revision 1.232.kato1997-03-262-4/+4
|
OpenPOWER on IntegriCloud