summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge linker set relocations with the rest.dfr2001-09-052-0/+2
|
* can not -> cannotdd2001-09-051-1/+1
|
* Use fseeko() instead of fseek() (u->offset is already an off_t), and markdes2001-09-051-4/+4
| | | | some function arguments as unused.
* Implement the `manlint' target, for minimal validity checking ofru2001-09-052-2/+19
| | | | | | the manual pages. Mostly useful with mdoc(7) formatted manuals. Requested by: murray
* mdoc(7) police: markup nits.ru2001-09-051-4/+6
|
* 4000 -> 5800 ports. We really need to add some smarts to themurray2001-09-051-1/+1
| | | | | ports/INDEX creation script to update #defines in header files and entities in the doc/ tree.
* The defaults for bsize and fsize were interchanged.ru2001-09-052-8/+8
| | | | PR: docs/30330
* Allow network device name to be given on the command line in themurray2001-09-051-1/+1
| | | | | | | | | | | | | interactive case. This already works for non-interactive installs, but at least one user thinks it would be useful and it certainly seems more correct to allow it here as well. So, this will now work : # sysinstall netDev=fxp0 tcpMenuSelect PR: bin/30229 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
* Add Hungarian FTP mirror.murray2001-09-052-0/+4
| | | | | PR: misc/21536 Submitted by: Szilveszter Adam <sziszi@petra.hos.u-szeged.hu>
* Add Czech keyboard definition to sysinstall.murray2001-09-054-2/+4
| | | | | PR: bin/17430 Submitted by: Rudolf Cejka <cejkar@dcse.fee.vutbr.cz>
* Add a missing "option".bmah2001-09-052-2/+2
|
* Clarify/cleanup pcic(4) release note.bmah2001-09-052-10/+24
| | | | Submitted by: msmith
* It is the last-second trivial changes that kill me every time.peter2001-09-051-1/+1
| | | | | | Fix nested comment. :-( Submitted by: obrien
* Correct a last minute sizeof() bogon in my previous commit.kris2001-09-051-1/+1
|
* style(9) the structure definitions.obrien2001-09-059-20/+20
|
* Add sysutils/portupgrade to CD-ROM #1. (+1.5MB)knu2001-09-051-0/+1
|
* Rework the ISA PnP driver pnp and the PnP resource parser to fixyokota2001-09-058-360/+701
| | | | | | | | | | | | | | | | | | | | | | | | the following bugs. - When constructing a resource configuration, respect the order in which resource descriptors are read, in order to establish the correct mapping between the descriptors and configuration registers. "Plug and Play ISA Specification, Version 1.0a", Sec 4.6.1, May 5, 1994. "Clarifications to the Plug and Play ISA Specification, Version 1.0a", Sec 6.2.1, Dec. 10, 1994. - Do not ignore null (empty) descriptors; they are valid descriptors acting as filler. "Clarifications to the Plug and Play ISA Specification, Version 1.0a", Sec 6.2.1. - Correctly set up logical device configuration registers for null resources. "Clarifications to the Plug and Play ISA Specification, Version 1.0a" - Handle null resources properly in the resource allocator for the ISA bus.
* Add Thomas Moestl and Chris Faulhaber to the author list for POSIX.1erwatson2001-09-051-0/+2
| | | | | | support. Obtained from: TrustedBSD Project
* Attempt to refine the __IDSTRING() macros so that they dont collide withpeter2001-09-051-4/+12
| | | | | | | | | | | each other. This will allow multiple __RCSID() entries in the same file and even __RCSID() in headers. **HOWEVER**, the usefulness of this in headers is somewhat marginal in non-ELF since they would go into the data section where they cannot be easily compressed or stripped. It (id's in headers) is also not useful in the non-GCC case since it is hard to generate unique variable names. I have an idea on that though. Now for mcs: http://mirrors.ccs.neu.edu/cgi-bin/unixhelp/man-cgi?mcs+1
* Introduce the concept of previously mounted media to sysinstall.murray2001-09-051-6/+20
| | | | | | | | | This will now allow sysinstall to work properly if a FreeBSD CD/DVD is already mounted as /cdrom, instead of just crapping out when it tries to mount as /dist and gets EBUSY. PR: conf/28081 Tested by: jhb
* style(9) the structure definitions.obrien2001-09-0518-29/+31
|
* Fix the definition generation code from rev 1.15 that generates non-style(9)obrien2001-09-051-4/+4
| | | | compliant structure definitions.
* style(9) the structure definitions.obrien2001-09-0525-58/+52
|
* Style(9)obrien2001-09-051-47/+47
|
* Add cloning support for the tap(4) device similar to that in the tun(4)brooks2001-09-053-142/+266
| | | | | | device. Submitted by: Maksim Yevmenkin <myevmenk@digisle.net>
* Allow users to enable usbd and set flags from sysinstall. This ismurray2001-09-052-0/+8
| | | | | | | | | | useful for post install configuration or other cases that might not be handled by usb.c. (usb.c already sets usbd_enable iff sysinstall detects usb during install). PR: bin/18946 Submitted by: Peter van Heusden <pvh@egenetics.com> Reviewed by: jhb
* Correct (English language) style. No change in (C language) style.grog2001-09-051-13/+13
|
* Update the inetd configuration prompt for clarity.murray2001-09-052-2/+2
| | | | | Submitted by: chern Committed from: "Make sysinstall suck less party", D1031 WRS campus, Alameda
* Revisions 1.117 and 1.118 of tcpip.c fixed the logic dealing with DHCPmurray2001-09-042-4/+0
| | | | | | | | | | | | | | | | and RTSOL in sysinstall. If the respective TRY_FOO variable is set to "YES" then it will be tried without prompting the user. However, if the TRY_FOO variable is set to "NO" then the user will not be prompted for a choice. This is the correct behavior, since we want people to be able to script sysinstall in either case. However, the default TRY_FOO variable has been "NO" since 1999. This is incorrect, and when the logic was corrected in tcpip.c this has the effect of never giving the user a choice to use DHCP or IPv6. The value should be undefined until it is set by a script or by the user. Submitted by: Randy Pratt, Chern Lee, many others.
* Implement .previous (swap section back to the last section)peter2001-09-043-2/+32
| | | | | | | | This enables: .data .asciz "foo" .previous .. just like on current binutils
* - Add some diagnostic echos of status of each stage.jhb2001-09-041-0/+6
|
* Add 3rd spanish mirrorjkh2001-09-042-0/+4
| | | | Submitted by: "Jose M. Alcaide" <jose@we.lc.ehu.es>
* Fix a diagnosticbrian2001-09-041-1/+1
|
* Regenerate.wpaul2001-09-041-1/+5
|
* Add support for the BCM5401 and BCM5411 10/100/1000Mbps copper gigE PHYs.wpaul2001-09-043-26/+79
| | | | | This basically updates the brgphy driver to support 10/100 modes in addition to 1000Mbps modes.
* I don't know what I was thinking- if I have two separate busses on onmjacob2001-09-041-174/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SIM (as is true for the 1280 and the 12160), then I have to have separate flags && status for *both* busses. *Whap*. Implement condition variables for coordination with some target mode events. It's nice to use these and not panic in obscure little places in the kernel like 'propagate_priority' just because we went to sleep holding a mutex, or some other absurd thing. Remove some bogus ISP_UNLOCK calls. *Whap*. No longer require that somebody do a lun enable on the wildcard device to enable target mode. They are, in fact, orthogonal. A wildcard open is a statement that somebody upstream is willing to accept commands which are otherwise unrouteable. Now, for QLogic regular SCSI target mode, this won't matter for a damn because we'll never see ATIOs for luns we haven't enabled (are listening for, if you will). But for SCCLUN fibre channel SCSI, we get all kinds of ATIOs. We can either reflect them back here with minimal info (which is isp_target.c:isp_endcmd() is for), or the wildcard device (nominally targbh) can handle them. Do further checking against firmware attributes to see whether we can, in fact, support target mode in Fibre Channel. For now, require SCCLUN f/w to supoprt FC target mode. This is an awful lot of change, but target mode *still* isn't quite right. MFC after: 4 weeks
* Note for ATIOs returned because of BDRs or Bus Resets for which bus thismjacob2001-09-041-20/+34
| | | | | | | | | | applies to. Do more bus # foo things. Acknowledge Immediate Notifies right away prior to throwing events upstream (where they're currently being ignored, *groan*) Capture ASYNC_LIP_F8 as with ASYNC_LIP_OCCURRED. Don't percolate them upstream as if they were BUS RESETS- they're not.
* If we're on an interrupt stack, mark things so that we don't trymjacob2001-09-041-10/+11
| | | | | | | | | | and cv_wait for mailbox commands to complete if we start them from here. Fix residuals for target mode such that we only check the residual and set it in the CTIO if this is the last CTIO (when we're sending status). MFC after: 4 weeks
* I don't know what I was thinking- if I have two separate busses on onmjacob2001-09-041-4/+6
| | | | | | | | | | | | SIM (as is true for the 1280 and the 12160), then I have to have separate flags && status for *both* busses. *Whap*. Implement condition variables for coordination with some target mode events. It's nice to use these and not panic in obscure little places in the kernel like 'propagate_priority' just because we went to sleep holding a mutex, or some other absurd thing. MFC after: 4 weeks
* Portability fix: use unsigned cast to guaranteed positive part of expressionache2001-09-042-2/+2
| | | | | in case {L}LONG_MAX > abs({L}LONG_MIN). Non-functional change - we don't have any such platforms.
* Binary upgrades for -CURRENT preserve nsswitch.conf, not host.conf.bmah2001-09-041-1/+0
|
* sysinstall's binary upgrade option used to display the contents ofbmah2001-09-041-3/+5
| | | | | | | | | | | | UPGRADE.TXT along with a YesNo dialog requesting confirmation of the upgrade. During the transition to RELNOTESng, UPGRADE.TXT got folded into a file that eventually renders as INSTALL.TXT, which makes sysinstall complain about a non-existent file. As a solution/workaround, point the user at INSTALL.TXT, and then request confirmation. Noticed by: rpratt (on 4.4-RC3) Approved by: jkh
* New release note: SA-01:59.bmah2001-09-042-0/+8
|
* Oops. Fix document build-breaking SGML bogon.bmah2001-09-041-2/+0
|
* Since we now install sysinstall in /usr/sbin, encourage the user torwatson2001-09-042-2/+2
| | | | run that version, rather than the copy in /stand.
* Spell SSHd as sshd to improve readability and consistency.rwatson2001-09-042-4/+4
|
* Add an additional \n before the "cautionary note" on the topic ofrwatson2001-09-042-4/+4
| | | | | admins needing to pay attention when configuring the system. This improves readability of this message.
* Don't name the main menu "/stand/sysinstall Main Manu" since it nowrwatson2001-09-042-2/+2
| | | | often lives in /usr/sbin. Instead, just name it "sysinstall Main Menu".
* Don't report power interrupts.imp2001-09-041-2/+0
|
* MFS: put debug writes behind boot verbose.imp2001-09-041-7/+16
|
OpenPOWER on IntegriCloud