summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Consistancy check s/file system/filesystem/trhodes2002-05-1620-46/+46
| | | | Reviewed by: brian
* Add the SUSv3 -l option to at. This is an alias for atq. Allow job idstjr2002-05-163-6/+62
| | | | | | | to be specified on the command line for which information should be reported. Submitted by: Joe Halpin <joe.halpin@attbi.com> Reviewed by: mike
* Fixup unaligned bwx instructions (ldwu, stw). This may fix some mysteriousgallatin2002-05-161-7/+25
| | | | | | natd sigbus errors being reported on the freebsd-alpha@ mailing list. Obtained from: NetBSD
* Add x86-64 bits.obrien2002-05-151-0/+3
|
* Time to enter modern age and default to NFS version 3.obrien2002-05-151-1/+1
|
* The IA-64 config needs to know that we are using GNU ld & as.obrien2002-05-151-0/+3
| | | | Submitted by: peter
* Grow RSYSCALL.obrien2002-05-151-0/+4
|
* Our default syscall.S is identical to what was explicitly being done forobrien2002-05-154-67/+2
| | | | Alpha and IA-64. So there is no need for special handling.
* Blah, fix stupid syntax error.obrien2002-05-151-1/+1
| | | | (where's the hat?)
* An exact copy of i386/include/float.h will work here.obrien2002-05-151-0/+73
|
* host-network order conversion routines.obrien2002-05-155-0/+158
| | | | Luckily we are network order, so there is little to be done. :-)
* New release note: k5su non-suid-root.bmah2002-05-152-2/+18
| | | | MFC noted: BIND 8.3.2-T1B.
* Do not build pam_ssh if NOSECURE is set (NO_OPENSSL is on a subset of NOSECURE)obrien2002-05-151-1/+2
|
* Do not build libmp if NOSECURE is set (NO_OPENSSL is on a subset of NOSECURE)obrien2002-05-151-1/+2
|
* PowerPC does not have profile support yet.obrien2002-05-151-0/+2
|
* Beginnings of syscall bits for PowerPC. These are no doubtedly wrong,obrien2002-05-151-0/+43
| | | | | | but it gets the build father and is in the right direction. Partially obtained from: NetBSD
* restore missing default case removed in ls.c:r1.57billf2002-05-152-0/+4
| | | | | | add break statements to default cases where missing. Submitted by: bde
* Default Alpha compiles to ev5.obrien2002-05-151-1/+1
| | | | | | | EV5 binaries will run on EV4[5], but the timing assumptions do pessimize running on EV4[5]. Tested by: ticso
* Revert daddr_t to 32 bits while we research the reported problems.phk2002-05-151-2/+2
|
* pciconf(8) has an incorrect synopsis which argues the output from thetrhodes2002-05-151-2/+2
| | | | actual program.
* Enhance the use of the watchdog timer in this driver so that it willsilby2002-05-152-8/+6
| | | | | | | | | | | | | | | | | | | | allow recovery from transmission lockups which occur in the middle of the descriptor list, rather than just at the beginning. For some unknown reason, Rhine II chips have a tendency to stop transmitting while under heavy load, possibly due to collisions. Whether this behavior is due to a hardware bug or a driver glitch is unknown as of now. In either case, this change allows the driver to gracefully recover from such situations. Special thanks go to The Anarcat <anarcat@anarcat.dyndns.org>, who bugged me into looking at this and to Dominic Marks <dominic_marks@btinternet.com>, who performed a great deal of testing to help characterize this problem. MFC after: 3 days
* Clarify that the value of getc() etc. is an unsigned char convertedfanf2002-05-151-0/+4
| | | | | | | | to an int (as per the C standard) i.e. it can be passed straight to isalpha() etc. Approved by: dwmalone (mentor) MFC after: 3 days
* Report errors properly if wait() fails.fanf2002-05-151-1/+2
| | | | | | PR: 30543 Approved by: dwmalone (mentor) MFC after: 3 weeks
* style sync with other platforms.obrien2002-05-151-2/+2
|
* correct wording.ume2002-05-151-1/+1
| | | | Pointed out by: brian
* Upgrade unifdef:fanf2002-05-154-545/+997
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * It now knows about the existence of #elif which would have caused it to produce incorrect results in some situations. * It can now process #if and #elif lines according to the values of symbols that are specified on the command line. The expression parser is only a simple subset of what C allows but it should be sufficient for most real-world code (it can cope with everything it finds in xterm). * It has an option for printing all of the symbols that might control #if processing. The unifdefall script uses this option along with cpp -dM to strip all #ifs from a file. * It has much larger static limits. * It handles nested #ifs much more completely. There have also been many style improvements: KNF; ANSI function definitions; all global stuff moved to the top of the file; use stdbool instead of h0h0bool; const-correctness; err(3) instead of fprintf(stderr, ...); enum instead of #define; commentary. I used NetBSD's unifdef as the basis of this since it has received the most attention over the years. PR: 37454 Reviewed by: markm, dwmalone Approved by: dwmalone (mentor) MFC after: 3 weeks
* Make sure to not yet build the GNU C++, but still allowru2002-05-154-9/+5
| | | | | for the C++ progs to be built with e.g. an old compiler, CXX=/usr/bin/c++, for the time being.
* Rename `includes' to `buildincludes'.ru2002-05-156-23/+28
| | | | | | Rename `incsinstall' to `installincludes'. Make `includes' a -j safe shortcut for `buildincludes' + `installincludes'. `buildincludes' and `installincludes' are SUBDIR friendly, if run directly.
* `all-man' now creates manpages in the -DNOMANCOMPRESS case too.ru2002-05-152-2/+0
|
* Remove an extraneous )brian2002-05-151-1/+1
| | | | | | Not approved by: maintainer I'm guessing that this is trivial enough to sidestep approval.
* DEV_BSIZE lives in sys/param.h and not in machine/param.h anymore.jhay2002-05-151-1/+1
|
* Stub out _kvm_mdopen, we don't the same constants as NetBSDobrien2002-05-151-0/+2
|
* Add a PowerPC machdep for kvm.obrien2002-05-151-0/+101
| | | | Obtained from: NetBSD (rev 1.4, pre-UVM)
* Make 'user' and 'group' const as to not discard the qualifier from thejmallett2002-05-151-1/+2
| | | | | functions we use to assign them. Doesn't seem to be anything else that relies on these being non-const.
* Remove an empty default case to make this syntactically correct. Not therejmallett2002-05-151-1/+0
| | | | is as good as blaknk.
* Explicitly cast NCONTINENTS to int to silence an overflow warning.des2002-05-151-1/+1
|
* Remove bogus cast.des2002-05-151-1/+1
|
* Unbreak Alpha build.des2002-05-151-1/+2
|
* for OpenSSL 0.9.5aobrien2002-05-151-0/+175
|
* We won't be doing FreeBSD-NT (NTBSD?, BSDNT?) anytime soon.obrien2002-05-1517-493/+0
| | | | Same for any m68k platform.
* We aren't quite ready to switch emulations and loose theobrien2002-05-151-0/+3
| | | | | | override ELF_DYNAMIC_INTERPRETER requirement. Has a good eye: jmallet
* We won't be doing FreeBSD/m68k or FreeBSD/rs6k anytime soon.obrien2002-05-157-5845/+0
| | | | (not to mention these bits are still at the 2.9.1 level)
* Unbreak Alpha build.des2002-05-151-2/+4
|
* This code is no longer WARNS level 2 OK.obrien2002-05-151-1/+1
|
* Undo namespace pollution by prefixing the globals pthread_guard_default andalfred2002-05-1512-78/+87
| | | | | | | | pthread_page_size. Fix a bunch line wrapping. Pointed out by: deischen
* Correctly attribute a Douglas Adams quote, and remove a duplicate ofdougb2002-05-152-5/+1
| | | | the same quote.
* Use .rodata section for $FreeBSD$.obrien2002-05-156-12/+20
|
* Fix description of uuencode(1)/uudecode(1) base64 abilities.bmah2002-05-152-4/+6
| | | | Submitted by: jmallet
* Build the asa(1) utility.tjr2002-05-151-0/+1
| | | | | PR: 36130 Reviewed by: mike
* #include <unistd.h> for getopt() and friends.tjr2002-05-151-0/+1
| | | | | PR: 36130 Approved by: mike
OpenPOWER on IntegriCloud