summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Several improvements to the `fixit' configuration:joerg1996-11-098-38/+175
| | | | | | | | | | | . Don't gzip the crunched binary by now; it just fits, and execution is a lot faster this way (it's truly demand-paged again). . Add more(1), ft(8), protocols(5), a stripped down services(5). . Improve the .profile, and make sysinstall actually use it again. Still no go for a 4 MB configuration though. :-(
* Implement a -L option that dumps the compiled keymap (as C code) tojoerg1996-11-092-6/+36
| | | | stdout. The next commit to sysinstall will use this...
* Merge from the 2.2 branch: call our `vi' by its right name.joerg1996-11-092-10/+8
| | | | Detected by: jkh
* If mounting the fixit floppy fails in the first place, warn the userjoerg1996-11-093-3/+15
| | | | | | | | | | | | | but make a second attempt using MNT_FORCE, just in case it has been unclean from a previous crash. That's dangerous, but far better than keeping the despaired user standing in the rain... (Experienced admins can still fsck it then, and remount. Others will either totally crash, or incidentally succeed, without much further help possible...) Btw., mount(2) misses the description of MNT_FORCE for the mount syscall.
* Fixed lookup of ".." in checkpath. It always failed, so renames ofbde1996-11-092-2/+2
| | | | | | | | directories to a different parent directory always failed. This bug was caused by 4.4Lite2 changing the directory format and ext2fs not keeping up. Should be in 2.2.
* Purely cosmetic cleanup.jkh1996-11-092-64/+0
|
* Add an entry for minimum - that's a lot easier.jkh1996-11-092-0/+10
|
* Fix an ordering bug -- pmap_remove_pages should be called BEFOREdyson1996-11-091-2/+2
| | | | | | vm_map_remove, not after... 2.2-RELEASE candidate.
* Fix a syntax error in the Belgian keymap. It caused a wrong mappingjoerg1996-11-091-1/+1
| | | | and a superfluous `i' on stdout (lex' default rule...).
* Back out my previous change.max1996-11-091-2/+2
| | | | | | It probably broke the support for the device. Pointed-Out by: joerg
* A skeletal, but functional Docbook to HTML translation spec.jfieber1996-11-092-1/+2095
| | | | | The Docbook DTD will follow once I investigate how "contrib" works and if it should be imported there.
* Re-sync with -current. Should be in 2.2.asami1996-11-0911-127/+158
| | | | Submitted by: The FreeBSD(98) Development Team
* (1) Updateasami1996-11-0910-30/+38
| | | | | | | | | | (2) Don't depend on BOOTSEG (3) Change BOOTSEG from 0x9000 to 0x1000 Should be in 2.2. Submitted by: FreeBSD(98) Development Team
* Added Oly (oly@world.std.com) for his port of lout and xrippleobrien1996-11-081-1/+2
|
* Only access the specific interrupt status registers if required.se1996-11-081-4/+4
| | | | | | | | | This follows more closely the suggestions in the latest NCR docs, and has been running on my system for weeks with no problem. It does improve the quality of diagnostic messages and does allow to better understand the sequence of events in case of an error. This should go into 2.2 and 2.1.6.
* Add add Naoki Hamada <nao@sbl.cl.nec.co.jp> to the contributors, because of hisguido1996-11-081-1/+2
| | | | work on the vx driver.
* Remove a mkdir in doTARBALL which, as far as I can tell, is not neededjkh1996-11-081-3/+3
| | | | for anything.
* Fixed spacefree calculation in ext2_direnter(). This bug sometimes causedbde1996-11-082-2/+2
| | | | | | | | | panics. This should be in 2.2, of course. Submitted by: davidg Obtained from: bouyer@antioche.ibp.fr (Manuel BOUYER) (fix for NetBSD)
* Removed gratuitous differences between ext2_readwrite.c and ufs_readwrite.c.bde1996-11-082-24/+34
| | | | | | | | | | | | | | | | | This fixes several bugs and one missing feature: - cluster_read() was needlessly used for reading files of size exactly 1 block. - EFAULT errors for read didn't terminate the loop. This was probably harmless. - IO_VMIO handling was missing near line 275. I don't know what this does. - B_CLUSTEROK was only set if (doclusterwrite) nead line 293. This was harmless, if only because another bug prevents doclusterwrite from being 0. - MNT_NOATIME wasn't implemented. This should be in 2.2, of course. Reviewed by: davidg
* Merge from 2_1_0jkh1996-11-081-1/+3
|
* Merge with 2_1_0jkh1996-11-081-1/+3
|
* Add Mats Lofkvist for his elk port update (ages ago).tg1996-11-081-1/+2
|
* 1. Eliminate the sendmail.cw bogon again. Peter fixed it correctly.jkh1996-11-086-18/+9
| | | | 2. Preload the ldconfig cache before calling X setup.
* make the /etc/sendmail.cw file optional by default.peter1996-11-084-4/+8
| | | | | | Definately should go into 2.2.. Requested by: lots of people
* Remove option I586_FAST_BCOPY. The code will be included by defaultasami1996-11-088-52/+38
| | | | | | | if I586_CPU is defined. Note there is a runtime check so the code won't be run for non-Pentium CPUs anyway. 2.2 candidate, this code has been tested for almost half year in -current.
* Fixed a bug in the handling of the directories in the search pathjdp1996-11-082-10/+26
| | | | | | | | | | | | | | | | | | | | | | that is stored in the hints file. If that search path contained a non-existent directory (one, say, that had been removed), and "ldconfig -m /a/perfectly/good/directory" was run, ldconfig returned an error status without printing an error message. This caused some confusing bombs when installing ports, in particular. I changed it so that non-existent directories from the stored search path are silently ignored. Only non-existent directories named explicitly on the command line are treated as errors. Also, a diagnostic is printed if and only if an error status is returned. In an unrelated fix, ldconfig now silently ignores any directories named on the command line when the "-r" option is given. Formerly, these directories incorrectly made their way into the "search directories" line of the listing. It really should be an error to specify directories together with "-r", but I don't have time to fix the manual page in that way right now. 2.2 Candidate.
* - Avoid possible SEGVs: never call clnt_destroy() without checkingwpaul1996-11-081-8/+36
| | | | | | | | | | | | for NULL RPC client handles. This should hopefully fix the problems Satoshi reported on -current. - Add socket descriptor sanity checks to _yp_unbind(). - Fix yp_order() so that it handles the RPC_PROCUNAVAIL error gracefully. NIS+ in YP compat mode doesn't support the YPPROC_ORDER procedure. This is a 2.2 candidate with bells on.
* More cosmetic tweaks, get the prefixes adjusted properly to XFree86 3.2'sjkh1996-11-077-108/+102
| | | | new packaging scheme.
* Typo, MATSHITA -> MATSUSHITA.max1996-11-071-2/+2
| | | | 2.2 & 2.1.6 candidate.
* Make sure current_chunk is 0 each time we enter the editor.jkh1996-11-073-3/+6
|
* This warning is too annoying now. Kill it.jkh1996-11-073-18/+6
|
* Install an evil work-around for /etc/sendmail.cwjkh1996-11-073-3/+15
| | | | [same as from 2.2]
* Complete switch-over to XF86 3.2.jkh1996-11-077-17/+17
|
* Since we use &dollar; in our sample Makefiles, we can just saymax1996-11-071-6/+5
| | | | | | &dollar;Id&dollar;. Suggested by: asami
* Merge my vi hack^H^H^H^Hframework into HEAD, so the various revisionsjoerg1996-11-071-1/+5
| | | | | | | should be in sync again. It's an env variable only, hence it's harmless and ignored without the actual changes in vi's Makefile. Suggested by: jkh
* Fix the message buffer mapping. This actually allows to increasejoerg1996-11-074-68/+66
| | | | | | | the message buffer size in <sys/msgbuf.h>. Reviewed by: davidg,joerg Submitted by: bde
* Secure telnet is now in eBones.markm1996-11-0754-27759/+0
|
* Remove references to TELNET*.markm1996-11-071-7/+1
|
* Properly clear FTP site selection info when network init fails; thejkh1996-11-072-2/+4
| | | | site name may have been wrong, or need to be specified by IP.
* Add ports-chinese and ports-mbone.asami1996-11-074-4/+11
|
* Add mbone category.asami1996-11-071-1/+2
|
* If not on a tty, don't do "--more--" processing. Someday, I will getjkh1996-11-071-0/+2
| | | | rogomatic to work with this version. :)
* Joerg's changes to add screen font and screenmap setting.jkh1996-11-0716-51/+330
| | | | | | Some changes of my own to make screen saver configuration a little more sane, and also make it easier to get to the keyboard/screen setup from the options menu.
* Bzero the kernel scb array after it is allocated otherwise the control bytegibbs1996-11-071-3/+5
| | | | | | used on the first transaction on an SCB is indeterminate. Spaces -> tabs.
* Remove comment about offset, it is no longer necessary. Add mentionasami1996-11-071-5/+6
| | | | | | of partition types in disklabel. Add disklabel(8) to "see also" section. Reminded by: Chris Timmons <skynyrd@opus.cts.cwu.edu>
* Replaced `$' in the sample Makefiles with &dollar;.max1996-11-071-3/+3
| | | | Suggested by: jfieber
* Don't switch from fast interrupt handlers to normal interruptbde1996-11-073-12/+24
| | | | | | | | | | | | | handlers if interrupts are nested more than a few (3) deep. This only reduces the maximum nesting level by 1 with the standard drivers unless there is a related bug somewhere, but can't hurt much (the worst case is returning to hoggish interrupt handler like wdintr(), but such interrupt handlers hurt anyway). Fixed a previously harmless race incrementing the interrupt nesting level. This should be in 2.1.6 and 2.2.
* Style changes: $(...) --> ${...}, consistent placement of -c.alex1996-11-071-15/+15
| | | | Suggested by: bde (via steve)
* Add the 'piix' device, to get the right flags for it. This appears tomsmith1996-11-071-2/+3
| | | | | | | | fix Joerg's freeze. Definitely a 2.2 candidate. Reviewed by: joerg
* My MDA screen finally bothered me enough to create an ISO 8859-1 ->joerg1996-11-062-1/+60
| | | | IBM cp437 screenmap file.
OpenPOWER on IntegriCloud