summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Include a comment explaining the usual delay between writes and syncs.sheldonh2000-07-201-0/+5
|
* merge in syslog fixes, do not call syslog with variabel as format stringassar2000-07-203-8/+14
|
* Revert implementation of setfsuid and setfsgid due to securitymarcel2000-07-204-40/+4
| | | | | | | issues. Requested by: rwatson Backed by: kris
* Move test for -w flag outside of the code dealing with -D (defaults).davidn2000-07-201-2/+2
| | | | | | | This should cause -w's argument not to be ignored in the usermod case, so it will affect modification of the user's password instead of using the pw.conf (or internal default=no '*') password method. PR: bin/11168
* Allow -g with an empty argument in the -D case. This allows -g "" to setdavidn2000-07-201-5/+8
| | | | | no default group (and thus fall back to user-based groups instead). PR: bin/5717
* - Don't use quotes for the MD_ROOT_SIZE option when generating the BOOTMFSjhb2000-07-201-10/+29
| | | | | | | | | | kernel config file. - Add WORLD_FLAGS and KERNEL_FLAGS so you can build world and kernel with extra make options such as -jX to speed up release builds. - When building kernels, allow their hints to tag along, and use this to install hints onto the boot floppy. Since the boot floppy doesn't load loader.4th, we have to change device.hints to strip comments and change each line to an explicit set command.
* Add awk and wc to the list of copied binaries for the installworldmarcel2000-07-201-2/+2
| | | | | | target. These are needed by liloldr. Found by: make release
* Remove some confusing verbosity - we have no idea what RAID level themsmith2000-07-201-18/+3
| | | | drive is at, so don't print the 'unknown' value, just say nothing.
* Fix the case where the file name is preceded by a lone slash.des2000-07-201-1/+1
|
* - Clarify some of the text in sysinstall in regards to the cryto bits.jhb2000-07-205-29/+27
| | | | | | - Note that we are up to about 3600 ports now rather than about 3000 ports. Submitted by: kris
* Add major numbers for the Adaptec FSA RAID controller.msmith2000-07-201-0/+2
|
* Temporary hack for the benefit of the X-Bone projectkris2000-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>
* Fix another missed case where usermod would not set the "modified" flag:davidn2000-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
* Add ftp.freebsd.org Snapshots to the list of servers.obrien2000-07-193-0/+6
|
* Fix two bugs related to resumed transfers:des2000-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.
* Don't try to skip to the requested offset if the server returns more datades2000-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.
* actually commit merged diffs to the trunkdarrenr2000-07-193-27/+48
|
* Typo.n_hibma2000-07-191-2/+2
| | | | Submitted by: Mike Meyer <mwm@mired.org>
* Add cp(1) to the list of binaries we need to save. The cp(1) commandmarcel2000-07-191-2/+3
| | | | | is used by the installation of ld-elf.so when an existing version exists.
* * document that 'kbdcontrol -k' needs stdin to be the console.ben2000-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
* Document the rc.d system.ben2000-07-191-0/+97
| | | | | Suggested by: dcs Reviewed by: alex, dcs, sheldonh
* alex@big.endian.de (Alexander Langer) noticed that I point at LINT,imp2000-07-191-2/+2
| | | | which no longer exists. Updating the entry accordingly.
* Don't save install-info. We already have that built. We'll usemarcel2000-07-191-3/+2
| | | | the one we built anyway.
* Remove node's name reference when the interface is detached;archie2000-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>
* Show the actual command line usage in the man page and usage error string.archie2000-07-192-5/+17
|
* pthread_once --> pthread_once_t.jasone2000-07-193-3/+3
|
* Remove extra #include that was inadvertently added in previous commit.archie2000-07-191-1/+0
|
* Default the pcic to polling. Some laptops need to have polling modeimp2000-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
* Fix breakage caused by ether_aton() prototype change.archie2000-07-192-2/+3
| | | | PR: bin/20033
* Fixed bitrot in DPADD.bde2000-07-191-1/+1
|
* Mark cdcontrol's "cdid" command as [MERGED].ben2000-07-192-2/+2
|
* Fix make world breakage.archie2000-07-191-1/+1
| | | | Broken by: me
* Fix an alpha-only race which causes the transmit side of the chip togallatin2000-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>
* fix conflictsdarrenr2000-07-1926-218/+442
|
* fix conflictsdarrenr2000-07-195-26/+41
|
* This commit was generated by cvs2svn to compensate for changes in r63516,darrenr2000-07-1928-160/+914
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import v3.4.8 into -currentdarrenr2000-07-1933-188/+959
| |
* | Add some examples for IPv6 addresses.ume2000-07-191-0/+6
| | | | | | | | | | PR: conf/18614 Submitted by: James Housley <jim@thehousleys.net>
* | Remove mention of SYNCER_MAXDELAY and "thirty seconds", using moresheldonh2000-07-191-12/+8
| | | | | | | | | | general terms instead. This follows a discussion with alfred, in which it became clear that I had misunderstood sched_sync().
* | Use <bsd.kmod.mk> not a path to ../../conf/kmod.mk.peter2000-07-191-1/+1
| |
* | Add a default ident string and do some minor whitespace adjustmentsbrian2000-07-191-4/+3
| |
* | Describe the new VERSION and COMPILATIONDATE macros and mention that thebrian2000-07-192-8/+30
| | | | | | | | ``ident'' command will expand macros.
* | Add /dev/agpgart for AGP.ru2000-07-191-0/+6
| | | | | | | | Reviewed by: dfr
* | Braino: don't use passive mode unless the user requests it.des2000-07-191-1/+1
| | | | | | | | | | PR: bin/20025 Submitted by: HIYAMA Takeshi <th@cis.ibaraki.ac.jp>
* | Oops. fsync(8) should have been fsync(1). (repo-copied by peter)ps2000-07-192-3/+2
| | | | | | | | Change reference from update(4) to syncer(4).
* | Add fsync(8). This becomes useful with the advent of MAP_NOSYNC etc.ps2000-07-194-0/+124
| | | | | | | | Reviewed by: peter
* | Update stale references to update(4) with references to the newsheldonh2000-07-194-5/+5
| | | | | | | | syncer(4) manual page.
* | Replace the obsolete update(4) manual page with syncer(4). I wassheldonh2000-07-192-43/+39
| | | | | | | | not abble to solicit review from <freebsd-hackers>.
* | Apm device is now safe to be world readable, so make it so.imp2000-07-191-1/+1
| |
* | When we're just reading info from the driver, attempt to open the apmimp2000-07-191-1/+4
| | | | | | | | device read only so we can suppot a readonly apm device.
OpenPOWER on IntegriCloud