summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge 8.8.4 -> 8.8.5 changes onto mainlinepeter1997-01-2717-171/+407
|
* This commit was generated by cvs2svn to compensate for changes in r22028,peter1997-01-2715-94/+399
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import sendmail 8.8.5. See RELEASE_NOTES for changes.peter1997-01-2733-273/+821
| | | | | | | | Obtained from: ftp.sendmail.org:/pub/sendmail
* | Use shifts instead of multiplications and `|' instead of `+' to simplifybde1997-01-272-8/+12
| | | | | | | | | | | | dkminor(). Use $((1 << 29)) instead of a mysterious decimal number for $scisctl. Use dkminor() instead of repeating part of it for special cases. Shortened some long lines.
* | Fixed comment that did not match code (cursor -> bell).bde1997-01-271-1/+1
| |
* | Add new Portugal mirror.jkh1997-01-273-6/+12
| |
* | Store temp files in current directory instead /tmp. The currentwosch1997-01-271-1/+1
| | | | | | | | | | directory is usually not world writable, this avoid security problems due the evil Berkeleian symlinks.
* | Add save/restore cursor position escapesache1997-01-262-0/+14
| |
* | Added Tsuyoshi Maruyama to the translator list for doing some work formax1997-01-262-2/+7
| | | | | | | | translating dialout.sgml.
* | Merge 1.46 -> 1.49 changes.max1997-01-261-9/+23
| | | | | | | | Submitted by: Mitsuru Iwasaki <iwasaki@pc.jaring.my>
* | Finally, fill this file with real content (the translation is completed.).max1997-01-261-2/+261
| | | | | | | | Submitted by: FreeBSD Japanese Documentation Project
* | Correct some grammar. Closes PR# 2520.mpp1997-01-261-2/+2
| | | | | | | | Submitted by: John-Mark Gurney <gurney_j@efn.org>
* | Document a couple of additional errno's.mpp1997-01-261-1/+7
| | | | | | | | | | Submitted by: Steinar Haug and Heiko W. Rupp Obtained from: NetBSD-bugs & FreeBSD-current mailing lists
* | Don't use /tmp for afterdepend cleanup targetpst1997-01-261-1/+1
| |
* | fix mixleading comment (my error.. I wrote the comment)julian1997-01-261-1/+1
| |
* | Since we have netatalk in the kernel, make life a little easier forphk1997-01-251-0/+4
| | | | | | | | people and add the four needed entries in /etc/services.
* | Man page police.mpp1997-01-259-43/+16
| |
* | Make the SCSI probe messages more BSDish. This may raise a few eyebrowswpaul1997-01-254-15/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ("Hey! Who made _you_ the keeper of all things BSDish?!") but this has bugged me for a long time, and now that I finally have the chance to hack on it (and test the results), I'll take my chances. I can also point to other BSD implementations for precedents if you put my back to the wall. The only thing that's changed is how the messages are formatted. Now, instead of having this: aha0 at 0x330-0x333 irq 11 drq 5 on isa (aha0:3:0): "HP C1553A 9503" type 1 removable SCSI 2 st0(aha0:3:0): Sequential-Access density code 0x24, variable blocks, write-enabled (aha0:3:1): "HP C1553A 9503" type 8 removable SCSI 2 ch0(aha0:3:1): Medium-Changer 6 slot(s) 1 drive(s) 0 arm(s) 0 i/e-slot(s) We have this: aha0 at 0x330-0x333 irq 11 drq 5 on isa scbus0 at aha0 bus 0 st0 at scbus0 target 3 lun 0 st0: <HP C1553A 9503> type 1 removable SCSI 2 st0: Sequential-Access density code 0x24, variable blocks, write-enabled ch0 at scbus0 target 3 lun 1 ch0: <HP C1553A 9503> type 8 removable SCSI 2 ch0: Medium-Changer 6 slot(s) 1 drive(s) 0 arm(s) 0 i/e-slot(s) Which is (to me anyway) is a lot more pleasant to look at. (Call me crazy -- g'head: you know you wanna -- but the previous messages remind me of Linux. Ever see the output from the linux device probes? It's a mess of copyright notices, version numbers/dates, author e-mail addresses and other crap. Let's not go there, okay? Bleh.) Notice that devices are now specified in terms of the scsi bus they live on rather than the adapter. This better reflects the contents of the kernel config file (if you use wired-down device specifications anyway) and removes some ambiguity that may arise if you have a multi- channel adapter with more than one bus. Also, sc_print_addr() now generates messages like this: st0 at scbus0 target 3 lun 0: NOT READY asc:3a,0 Medium not present instead of this: st0(aha0:3:0): NOT READY asc:3a,0 Medium not present I also added a quirk entry for the HP Superstore 12000e 6 tape DAT autoloader, which needs SC_MORE_LUS in order for the changer device to be properly probed and attached. (I'm working on a chcontrol utility to manipulate the changer on this drive which should hopefully be general enough to work with other changers too. If you want the prototype I have now, it's at ftp://skynet.ctr.columbia.edu/pub/freebsd/changer.c.) Remaining bugs: - The 'foodev0: yadda yadda yadda' bits should probably be printed entirely by the device-specific subdriver attach code instead of half by the scsi_device_attach() routine and half by the device specific attach routine like it is now. - The wired-down device specifications in the kernel config file should be used to control bus/device probing to some extent rather than just for choosing names for devices we find. If the config says there's a device at scbus0 target 0 lun 0 called sd0, we should look there and check for a device that can be managed by the sd driver. If we don't find one, we should probably complain that there's no device there or that there is a device but of the wrong type. Once all the devices from the wired down list have been probed, the code can then autodetect and autoattach any devices that remain unassigned. - Apparently some tape changers (hi Ulf!) return 'not ready/medium not present' when the magazine is loaded but a tape has not been put in the drive yet. This causes an open(/dev/ch0) to fail and prevents you from using the changer.c utility to load the first tape into the drive. My HP changer does not behave this way. The workaround is to manually load a tape into the drive before attempting to use the changer program, but you can get in trouble if you accidentally eject a tape without loading a new one and you're at a remote location: you won't be able to load any tapes anymore. I'm not sure what the correct software solution is for this but ideally there should be one. - I should not be doing this: I'm the NIS guru, not the SCSI guru. (This is not my beautiful code. How did I get here? My god: what have I done?)
* | Sync with <pci/pcibus.h>. pcibus.c unfortunately still compiled (withbde1997-01-256-6/+0
| | | | | | | | only 3 or 4 warnings) when pb_maxirq went away.
* | Change default I/O recovery time for Cyrix 5x86 to 0. The BIOSkato1997-01-251-2/+0
| | | | | | | | Writers Guide mentions that IORT should be 0 for errata fix.
* | Synchronize with sys/i386/i386/machdep.c rev. 1.226.kato1997-01-252-8/+50
| |
* | Synchronize with sys/i386/isa/syscons.{c,h} rev. 1.199 and 1.27,kato1997-01-252-1/+37
| | | | | | | | respectively.
* | Synchronize with sys/i386/isa/if_fe.c rev. 1.26.kato1997-01-251-3/+3
| |
* | Change the entry for ttyv3 to be the same as X would require if wenate1997-01-251-3/+3
| | | | | | | | were using xdm (but still off).
* | Apply patch from pr2536, after testing locally.imp1997-01-251-5/+6
| | | | | | | | | | | | | | | | Fixes: PR2446 and PR2536 Submitted by: Flemming Jacobsen <fj@tfs.com> 2.2 Candidate.
* | (1) Add ${DESTDIR} to ${LOCALBASE} and ${X11BASE}, and remove it fromasami1997-01-251-5/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ${PORTSDIR}. This undoes the changes done in rev. 1.38 and 1.59 (part of the bsd.port.mk pre-dawn ages I've never understood). Requested by: jkh (2) Add new variable NO_IGNORE that will override any IGNORE causes. This is just a little hack to allow building of REQUIRES_MOTIF ports and its dependencies only etc., so don't document it. (3) Update +REQUIRED_BY files as necessary. Now you should be able to delete ports that have runtime dependencies without pkg_delete complaining about this file missing.
* | Remove element pb_maxirq from struct pcibus.se1997-01-251-1/+0
| |
* | Explain more about the interleave factor. Mention mirroring, and addasami1997-01-251-13/+47
| | | | | | | | a reminder that you can't mount half of a mirrored two-disk ccd.
* | Improve on previous fix: Clean up getirq() as well, and remove redundantse1997-01-252-18/+16
| | | | | | | | warning messages.
* | Added a check/panic for v_usecount being 0 (no vnode reference) indg1997-01-241-0/+2
| | | | | | | | vnode_pager_alloc().
* | Changed dkunit() to use some previously unused bits in the 'type' fielddg1997-01-243-21/+9
| | | | | | | | to extend the unit field to 9 bits (512 units).
* | Add the definition for the CFAUTOTERM bit in the aic78xx SEEPROM.gibbs1997-01-241-7/+163
| | | | | | | | | | | | | | | | | | | | | | | | Add auto-termination support as well as support for setting the high byte termination. Booting with '-v' will display the settings that the driver chose. If you stick narrow devices onto the external wide port, you had better make sure that your converter cable terminates the bus, you have a wide device on there that terminates the bus, or you manually set the termination properly in SCSI-Select instead of using "Automatic". The code will get the setting right regardless if you *don't* have internal wide devices in this type of configuration. Unfortunatly this is a limitation of the design of the Adaptec cards.
* | Change to use some unused bits in the 'type' field to extend the unit fielddg1997-01-242-12/+12
| | | | | | | | to 9 bits (512 units) for disk devices.
* | 93cx6.c:gibbs1997-01-242-4/+8
| | | | | | | | | | | | | | | | Style nit. Backslashes in macro weren't aligned. aic7xxx.c: Preserve the value of STPWEN in SXFRCTL1 during initialization. STPWEN controls low byte termination and is setup by the PCI probe front end.
* | Change the way DMA is handled during the command phase. Only test ongibbs1997-01-242-7/+30
| | | | | | | | | | | | | | | | | | | | | | | | SDONE, not HDONE. In the data phase dma handler, mask off just the enable bits instead of clearing the whole register. Clearing the direction bit could be bad. Also don't stop a DMA until MREQPEND goes false. Doing this may cause an ABORT on the PCI bus although I have yet to see this happen. Add definitions for MREQPEND and the BRDCTL register. The BRDCTL register is used to handle high byte termination and automatic termination testing.
* | Fixed some formatting bugs (mostly regressions in rev.1.48). Replacedbde1997-01-243-72/+87
| | | | | | | | some magic numbers by pmap constants. Cosmetic.
* | Allow both types of XFree86 setup script to be run at user choice.jkh1997-01-249-6/+99
| |
* | I need to learn to read man pages more closely. readlink() does NOT nulljkh1997-01-243-24/+12
| | | | | | | | | | | | append the return string (bleah!) so you need to do it yourself. This explains why Bus and PS/2 meece weren't displayed in the Mouse selection menu.
* | OK, I've got two ideas to file in the "really seemed like a good ideajkh1997-01-2431-401/+196
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | at the time, but on further reflection..." bucket with these changes. 1. Checking the media before frobbing the disks was a fine idea, and I wish it could have worked, but that leads to a rather difficult situation when you need to mount the media someplace and you're about to: a) Chroot away from your present root. b) Newfs the root to be. You're basically screwed since there's no place to stick the mount point where it will be found following the newfs/chroot (and eliminating the chroot in favor of just using the "root bias" feature would work great for the distributions but not the pkg_add calls done by the package installer). 2. Automatic timeout handling. I don't know why, but alarm() frequently returns no residual even when the alarm didn't go off, which defies the man page but hey, since when was that so unusual? Take out timeouts but retain the code which temporarily replaces the SIGINT handler in favor of a more media-specific handler. This way, at least, if it's hanging you can at least whap it. I think the timeout code would have been losing over *really slow* links anyway, so it's probably best that it go. This should fix NFS, tape & CDROM installs again (serves me right for getting complacent and using just the FTP installs in my testing).
* | Initialize CR0_MP in setregs() in case npx0 is disabled or not configured.bde1997-01-242-8/+50
| | | | | | | | | | | | | | | | | | Disabling npx0 works right now. Don't reference `npxdriver' if npx0 is not configured. Not configuring npx0 doesn't quite work yet. Don't clear potential non-npx pcb flags in setregs().
* | KNF style police.obrien1997-01-242-12/+16
| | | | | | | | | | Reported by: Bruce Thanks to: Bruce for also providing a diff.
* | Add a section for FreeBSD-specific works.jkh1997-01-241-0/+22
| |
* | As /etc/sysconfig and /etc/rc.i386 is now, you can't modify the sysconsjkh1997-01-243-0/+13
| | | | | | | | | | | | | | bell type on boot. Slightly annoying when your system doesn't have a speaker. This adds a `keybell' frob for setting it. Closes PR#2519 Submitted-By: Jonathan Mini <mini@hydrogen.nike.efn.org>
* | This is a patch that makes some of the "partitions" --> "slice" to bejkh1997-01-2417-122/+257
| | | | | | | | | | | | | | more consistant in our use of the terms for differentiation between PC partitions and traditional BSD partitions. Submitted-By: obrien@cs.ucdavis.edu (David O'Brien)
* | Update russian mirrors.jkh1997-01-243-6/+12
| |
* | Change from using chunk_n to slice_type_name().obrien1997-01-243-3/+6
| | | | | | | | Reviewed by: jkh
* | Add save/restore cursor position capabilities for FreeBSD consoleache1997-01-241-1/+1
| |
* | Use xmalloc instead of malloc in two places, so that out-of-memoryjdp1997-01-243-3/+3
| | | | | | | | | | | | conditions will be detected. Submitted by: Philippe Charnier <charnier@xp11.frmug.org>
* | Make IRQ 0 invalid in pci_map_int(), since it is hardwired to these1997-01-232-2/+2
| | | | | | | | programmable interval timer chip in PC systems.
* | Add save/restore cursor as pr SCO screen(HW) manpage.sos1997-01-236-3/+90
| | | | | | | | | | | | | | | | Fix ESC[2J to not move cursor home Clear mouse cutmarking on more cases. Minor changes by me. Submitted by: ache
OpenPOWER on IntegriCloud