summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* PC98 creates different BOOTMFS configs for different floppy sizes.ru2002-05-251-12/+14
| | | | | Broken in: rev. 1.672 Spotted by: nyan
* ANSIfy (significant portions were already partly ANSIfied)des2002-05-251-115/+42
|
* Remove register.des2002-05-251-51/+51
|
* Automated whitespace cleanup.des2002-05-251-10/+10
|
* Make it work for a different endianness binary.ru2002-05-254-94/+62
| | | | | | (This version is still limited to ELF64.) Reviewed by: jake
* Get all the fruit from makefile.ru2002-05-253-30/+13
|
* Move elf2aout to usr.sbin/.ru2002-05-253-2/+2
| | | | Approved by: jake
* Respect -q with "add" and "delete". Document who respects -q.ru2002-05-252-31/+36
| | | | PR: bin/38531
* sh appeared in Version 1, not System V.1.tjr2002-05-251-1/+1
|
* Implement `set +o', which displays the currently set options in a formattjr2002-05-252-5/+28
| | | | suitable for re-input into the shell.
* Sync usage message with manual page synopsis.tjr2002-05-251-2/+2
|
* Fixed printf format errors which apparently crept in while -Wformat wasbde2002-05-256-14/+12
| | | | disabled for gcc-3.
* "Fixed" printf format errors (64-bit daddr_t casualties; should use %jxbde2002-05-251-4/+4
| | | | | | | | | instead of %llx when %j is available). Changed nearby output formats from %x to %#x so that it is obvious that the numbers are in hex (vinum mostly uses 0x%x elsewhere). Didn't fix nearby format printf errors (long lines).
* Fixed printf format errors. Most of them are 64-bit daddr_t casualties.bde2002-05-252-8/+12
| | | | | | | | | | | | Printing daddr_t's using %d format was always an error, but gcc's warning about it was ignored for supported 64-bit arches and not printed for supported 32-bit arches. Hundreds if not thousands thousands of previously "fixed" daddr_t printings are now broken on 32-bit machines by casting daddr_t's to longs. daddr_t's should be printed using %jd format, but this fix uses %lld since %j is not implemented in the kernel yet. Fixed some nearby format printf errors (style bugs).
* Fixed a printf format error. It was old and should have been detected bybde2002-05-251-1/+1
| | | | gcc-2.9x, but somehow wasn't fixed already.
* Bad numeric arguments or usernames should cause non-zero exit status.tjr2002-05-251-3/+8
|
* Make these work with one-true-awk.ru2002-05-252-33/+46
| | | | Spotted by: nyan
* Determine exit status to use before writing diagnostic message; warn()tjr2002-05-251-6/+1
| | | | may change errno.
* Typo: use plural now that we have more than one option.tjr2002-05-251-1/+1
|
* If a file cannot be processed, try to process any remaining filestjr2002-05-251-3/+5
| | | | then exit non-zero.
* Convert the interrupt queue from an array to a linked list. Implementjake2002-05-258-200/+383
| | | | | intr_dequeue in asm so that it can easily be modified to do light weight context switching.
* The man page is VERY WRONG about using "-o noupdate" with -s.obrien2002-05-251-5/+12
| | | | So fix it, and add an example using -s.
* Try to handle "double faults" occuring at more trap levels (ie 4 :)).jake2002-05-252-28/+28
|
* Minor style.jake2002-05-251-3/+5
|
* Make the run queue parameters machine dependent. Optimize 64 bitjake2002-05-258-13/+316
| | | | | | | architectures by using a 64 bit word for the bit array which keeps track of non-empty queues. Reviewed by: peter
* Regen:sheldonh2002-05-241-88/+115
| | | | | * Hart: rev 230 of pcidevs.txt (2002-05-21) * Boemler: vendors.txt (2002-05-24)
* Backout 1.54 (restore definition for printf0 to actually do something).alfred2002-05-241-1/+1
|
* Add the word ``fields'' to the description, and change an instance fromtrhodes2002-05-241-2/+2
| | | | | | fields to num in the SYNOPSIS Noticed by: keramida
* Convert mount_ext2fs(8) to nmount(2).mux2002-05-241-15/+18
| | | | Reviewed by: iedowse
* Convert ext2fs to nmount(2).mux2002-05-244-54/+56
|
* Forgot to commit this for the `includes' -> `buildincludes',ru2002-05-241-2/+5
| | | | `incsinstall' -> `installincludes' changes.
* Back out the ``run shell from $PATH'' change; this was an overkillru2002-05-245-29/+7
| | | | | | and is insecure. Requested by: bde
* Add release notes for the changed file permissions on sendmail aliasgshapiro2002-05-242-0/+26
| | | | | | | and map databases as well as the statistics file. MFC after: 1 day pending RE approval
* Correct US Robotics Wireless Card 2410 entryimp2002-05-241-1/+1
|
* Add openpam_nullconv.3.des2002-05-241-0/+1
|
* Add missing include.des2002-05-241-0/+1
|
* This commit was generated by cvs2svn to compensate for changes in r97241,des2002-05-2452-108/+266
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of OpenPAM Cinquefoil.des2002-05-2452-108/+266
| |
* | Fully reset a gem on some error conditions; otherwise it would hang intmm2002-05-241-0/+4
| | | | | | | | | | | | about 1 of 10 cases. Proposed and tested by: phk
* | Convert Perl scripts to awk(1).ru2002-05-244-107/+148
| |
* | If a file argument cannot be processed, process the remaining onestjr2002-05-241-6/+14
| | | | | | | | and exit non-zero (SUSv3)
* | When a file name of "-" is given, read from standard input (SUSv3)tjr2002-05-242-8/+17
| |
* | The previous ANSIfication did not take into account earlier,markm2002-05-241-2/+2
| | | | | | | | | | non-compliant compilers. Revert to the compatible form to allow upgrade-builds.
* | The previous ANSIfication did not take into account upgrade-buildsmarkm2002-05-241-4/+4
| | | | | | | | | | uing an earlier, non-compliant compiler. Revert to the compatible form.
* | Allow byte/character positions >_POSIX2_LINE_MAX to be specified bytjr2002-05-241-6/+24
| | | | | | | | dynamically growing the `positions' array.
* | Use fgetln(3) to handle lines of unlimited length instead of atjr2002-05-241-15/+15
| | | | | | | | | | | | getc/putc loop. Suggested by: dd
* | Don't err(3) (and exit prematurely) when a sysctl's object size hasalfred2002-05-241-9/+16
| | | | | | | | changed, instead just warn(3)
* | Fixed AES encryption algorithm bugsuz2002-05-241-0/+1
| | | | | | | | | | PR: kern/38465 Obtained from: Ramana Yarlagadda <ramana.yarlagadda@analog.com>
* | P1003.2 forbids imposing any limit on line lengths; read character bytjr2002-05-241-24/+22
| | | | | | | | character instead of manually buffering each line.
* | Fix warnings: deprecated use of label at end of compound statementpeter2002-05-242-1/+2
| |
OpenPOWER on IntegriCloud