summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix the case where the file name is preceded by a lone slash.Dag-Erling Smørgrav2000-07-201-1/+1
| | | | Notes: svn path=/head/; revision=63585
* - Clarify some of the text in sysinstall in regards to the cryto bits.John Baldwin2000-07-205-29/+27
| | | | | | | | | - Note that we are up to about 3600 ports now rather than about 3000 ports. Submitted by: kris Notes: svn path=/head/; revision=63583
* Add major numbers for the Adaptec FSA RAID controller.Mike Smith2000-07-201-0/+2
| | | | Notes: svn path=/head/; revision=63581
* Temporary hack for the benefit of the X-Bone projectKris Kennaway2000-07-204-0/+5
| | | | | | | | | (http://www.isi.edu/xbone). I expect this to go away in due course. Submitted by: Lars Eggert <larse@ISI.EDU> Notes: svn path=/head/; revision=63577
* Fix another missed case where usermod would not set the "modified" flag:David Nugent2000-07-201-3/+6
| | | | | | | | | -h - to set no password. But only mark modified if the account is not already locked (i.e. first char of crypt password field is '*'). PR: bin/19999 Notes: svn path=/head/; revision=63572
* Add ftp.freebsd.org Snapshots to the list of servers.David E. O'Brien2000-07-193-0/+6
| | | | Notes: svn path=/head/; revision=63569
* Fix two bugs related to resumed transfers:Dag-Erling Smørgrav2000-07-191-20/+26
| | | | | | | | | | | | | - if the dates didn't match, fetch would append the received file to the existing file instead of replacing it. - if the local file was complete and up-to-date, fetch would miscalculate the expected size and report a failure instead of a success, because it had no way of knowing that the server was actually resending the entire file since the requested offset was invalid. Notes: svn path=/head/; revision=63568
* Don't try to skip to the requested offset if the server returns more dataDag-Erling Smørgrav2000-07-191-8/+10
| | | | | | | | | than requested. Instead, inform the caller of the real offset by modifying the offset field in the original struct url, and let him decide how to handle the situation. Notes: svn path=/head/; revision=63567
* actually commit merged diffs to the trunkDarren Reed2000-07-193-27/+48
| | | | Notes: svn path=/head/; revision=63564
* Typo.Nick Hibma2000-07-191-2/+2
| | | | | | | Submitted by: Mike Meyer <mwm@mired.org> Notes: svn path=/head/; revision=63563
* Add cp(1) to the list of binaries we need to save. The cp(1) commandMarcel Moolenaar2000-07-191-2/+3
| | | | | | | | is used by the installation of ld-elf.so when an existing version exists. Notes: svn path=/head/; revision=63560
* * document that 'kbdcontrol -k' needs stdin to be the console.Ben Smithurst2000-07-191-0/+19
| | | | | | | | | | | * add an example of how to switch the console keyboard to a USB keyboard. PR: 18520 Submitted by: n_hibma Reviewed by: sheldonh Notes: svn path=/head/; revision=63549
* Document the rc.d system.Ben Smithurst2000-07-191-0/+97
| | | | | | | | Suggested by: dcs Reviewed by: alex, dcs, sheldonh Notes: svn path=/head/; revision=63547
* alex@big.endian.de (Alexander Langer) noticed that I point at LINT,Warner Losh2000-07-191-2/+2
| | | | | | | which no longer exists. Updating the entry accordingly. Notes: svn path=/head/; revision=63545
* Don't save install-info. We already have that built. We'll useMarcel Moolenaar2000-07-191-3/+2
| | | | | | | the one we built anyway. Notes: svn path=/head/; revision=63544
* Remove node's name reference when the interface is detached;Archie Cobbs2000-07-191-0/+1
| | | | | | | | | | | otherwise, the ng_ether.ko KLD will never be unloadable after all Ethernet interfaces are detached, as it should be, because of the lingering extra reference. Submitted by: "Yevmenkin, Maksim N, CSCIO" <myevmenkin@att.com> Notes: svn path=/head/; revision=63543
* Show the actual command line usage in the man page and usage error string.Archie Cobbs2000-07-192-5/+17
| | | | Notes: svn path=/head/; revision=63542
* pthread_once --> pthread_once_t.Jason Evans2000-07-193-3/+3
| | | | Notes: svn path=/head/; revision=63541
* Remove extra #include that was inadvertently added in previous commit.Archie Cobbs2000-07-191-1/+0
| | | | Notes: svn path=/head/; revision=63539
* Default the pcic to polling. Some laptops need to have polling modeWarner Losh2000-07-192-2/+2
| | | | | | | | | | | | | | due to a paucity of IRQs. I have some reservations about this, so I'm not going to MFC this just yet. I'm doing this to see how many problems it causes so we can do this in 4.2. I've been seeing hangs on my laptop from time to time, but sometimes it was not in polling mode, other tmies it was. Don't know if this is one problem or more than one. Requested by: Sean O Connell Notes: svn path=/head/; revision=63538
* Fix breakage caused by ether_aton() prototype change.Archie Cobbs2000-07-192-2/+3
| | | | | | | PR: bin/20033 Notes: svn path=/head/; revision=63537
* Fixed bitrot in DPADD.Bruce Evans2000-07-191-1/+1
| | | | Notes: svn path=/head/; revision=63535
* Mark cdcontrol's "cdid" command as [MERGED].Ben Smithurst2000-07-192-2/+2
| | | | Notes: svn path=/head/; revision=63533
* Fix make world breakage.Archie Cobbs2000-07-191-1/+1
| | | | | | | Broken by: me Notes: svn path=/head/; revision=63532
* Fix an alpha-only race which causes the transmit side of the chip toAndrew Gallatin2000-07-192-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | lock up under moderate to heavy load. The status & command fields share a 32-bit longword. The programming API of the eepro apparently requires that you update the command field of a transmit slot that you've already given to the card. This means the card could be updating the status field of the same longword at the same time. Since alphas can only operate on 32-bit chunks of memory, both the status & command fields are loaded from memory & operated on in registers when the following line of C is executed: sc->cbl_last->cb_command &= ~FXP_CB_COMMAND_S; The race is caused by the card DMA'ing up the status at just the wrong time -- after it has been loaded into a register & before it has been written back. The old value of the status is written back, clobbering the status the card just DMA'ed up. The fact that the card has sent this frame is missed & the transmit engine appears to hang. Luckily, as numerous people on the freebsd-alpha list pointed out, the load-locked/store-conditional instructions used by the atomic functions work with respect changes in memory due to I/O devices. We now use them to safely update the command field. Tested by: Bernd Walter <ticso@mail.cicely.de> Notes: svn path=/head/; revision=63525
* fix conflictsDarren Reed2000-07-1913-109/+221
| | | | Notes: svn path=/head/; revision=63523
* fix conflictsDarren Reed2000-07-195-26/+41
| | | | Notes: svn path=/head/; revision=63520
* This commit was generated by cvs2svn to compensate for changes in r63516,Darren Reed2000-07-1928-160/+914
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=63517
| * Import v3.4.8 into -currentDarren Reed2000-07-1933-188/+959
| | | | | | | | Notes: svn path=/vendor/ipfilter/dist/; revision=63516
* | Add some examples for IPv6 addresses.Hajimu UMEMOTO2000-07-191-0/+6
| | | | | | | | | | | | | | | | PR: conf/18614 Submitted by: James Housley <jim@thehousleys.net> Notes: svn path=/head/; revision=63515
* | Remove mention of SYNCER_MAXDELAY and "thirty seconds", using moreSheldon Hearn2000-07-191-12/+8
| | | | | | | | | | | | | | | | general terms instead. This follows a discussion with alfred, in which it became clear that I had misunderstood sched_sync(). Notes: svn path=/head/; revision=63511
* | Use <bsd.kmod.mk> not a path to ../../conf/kmod.mk.Peter Wemm2000-07-191-1/+1
| | | | | | | | Notes: svn path=/head/; revision=63510
* | Add a default ident string and do some minor whitespace adjustmentsBrian Somers2000-07-191-4/+3
| | | | | | | | Notes: svn path=/head/; revision=63509
* | Describe the new VERSION and COMPILATIONDATE macros and mention that theBrian Somers2000-07-192-8/+30
| | | | | | | | | | | | | | ``ident'' command will expand macros. Notes: svn path=/head/; revision=63508
* | Add /dev/agpgart for AGP.Ruslan Ermilov2000-07-191-0/+6
| | | | | | | | | | | | | | Reviewed by: dfr Notes: svn path=/head/; revision=63504
* | Braino: don't use passive mode unless the user requests it.Dag-Erling Smørgrav2000-07-191-1/+1
| | | | | | | | | | | | | | | | PR: bin/20025 Submitted by: HIYAMA Takeshi <th@cis.ibaraki.ac.jp> Notes: svn path=/head/; revision=63501
* | Oops. fsync(8) should have been fsync(1). (repo-copied by peter)Paul Saab2000-07-192-3/+2
| | | | | | | | | | | | | | Change reference from update(4) to syncer(4). Notes: svn path=/head/; revision=63500
* | Add fsync(8). This becomes useful with the advent of MAP_NOSYNC etc.Paul Saab2000-07-194-0/+124
| | | | | | | | | | | | | | Reviewed by: peter Notes: svn path=/head/; revision=63499
* | Update stale references to update(4) with references to the newSheldon Hearn2000-07-194-5/+5
| | | | | | | | | | | | | | syncer(4) manual page. Notes: svn path=/head/; revision=63498
* | Replace the obsolete update(4) manual page with syncer(4). I wasSheldon Hearn2000-07-192-43/+39
| | | | | | | | | | | | | | not abble to solicit review from <freebsd-hackers>. Notes: svn path=/head/; revision=63497
* | Apm device is now safe to be world readable, so make it so.Warner Losh2000-07-191-1/+1
| | | | | | | | Notes: svn path=/head/; revision=63496
* | When we're just reading info from the driver, attempt to open the apmWarner Losh2000-07-191-1/+4
| | | | | | | | | | | | | | device read only so we can suppot a readonly apm device. Notes: svn path=/head/; revision=63495
* | Clean up this new manual page. This delta includes content andSheldon Hearn2000-07-191-82/+112
| | | | | | | | | | | | | | | | | | | | | | whitespace changes, which should not be a problem because this is only the second revision of the file and translators are unlikely to have gotten started yet. Reviewed by: abial Notes: svn path=/head/; revision=63494
* | Except for the information gathering IOCTLs, require apm device beWarner Losh2000-07-192-0/+32
| | | | | | | | | | | | | | opened for write. This should make the apm device read only safe. Notes: svn path=/head/; revision=63493
* | To define A RR to root (.) is valid in DNS. So, h_name = "" shouldn'tHajimu UMEMOTO2000-07-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | be treated as NULL. PR: bin/19816 Submitted by: Bill Fenner <fenner@research.att.com> Reviewed by: Atsushi Onoe <onoe@sm.sony.co.jp> Notes: svn path=/head/; revision=63490
* | Studied the tech docs for the Voodoo3 and Banshee, and hopefully fixed theColeman Kane2000-07-193-21/+88
| | | | | | | | | | | | | | | | | | | | | | | | | | errors that plagued those cards with XFree86 4.0. They have two memory ranges as well as an IO port range to them. Also cleaned up the three warning messages that I got, from inb(), outb() and linuxulator. Also, I noticed that the DRI and Glide support for the Voodoo4 and 5 has been placed upon linux.3dfx.com, too bad they haven't released the tech docs yet. Apparently, they are still pushing glide for all of us, so I will try and add support once those tech docs are up. Notes: svn path=/head/; revision=63488
* | Save any binaries we use by installworld, so that we won't use theMarcel Moolenaar2000-07-191-2/+13
| | | | | | | | | | | | | | | | | | | | binaries we just installed. This allows a future upgrade target to install a new system without intermediate reboots and also prevents conflicts for parallel make runs where we might exec a binary that's being installed at the same time. Notes: svn path=/head/; revision=63487
* | Support link identification from rfc1570Brian Somers2000-07-1917-22/+176
| | | | | | | | | | | | | | Two new commands are available; ``ident'' and ``sendident''. Notes: svn path=/head/; revision=63484
* | From the PR:Ben Smithurst2000-07-192-60/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Correct FTP site for 4.0-stable snapshots and delete sentence fragment immediately following. [ not applicable to HEAD ] 2. Add FDDI section to table of contents (see #5 below) and add one line of whitespace. 3. In userland section, document csh->tcsh, more->less, and colorized ls. 4. In Ethernet section, do: s/gigabit ethernet/Gigabit Ethernet/ s/fast ethernet/Fast Ethernet/ s/ethernet/Ethernet/ 5. Pull DEC DEFPA/DEFEA *FDDI* cards out of the *Ethernet* section and into their own second-level section. 6. Add missing period in section header in ATM section. 7. Tweak upgrading sectio with some new text, not sure if this is much better though. 8. Add a blurb about the -stable mailing list. [ changed to -current list in HEAD ] PR: 20015 Submitted by: Bruce A. Mah <bmah@cisco.com> Notes: svn path=/head/; revision=63479
* | Const'ify parameters to ethers(3) routines as appropriate.Archie Cobbs2000-07-183-15/+15
| | | | | | | | Notes: svn path=/head/; revision=63474