summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* ${MACHINE} -> ${MACHINE_ARCH}marcel1999-11-143-4/+8
| | | | | | | | | | | | | | | | All Makefiles now use MACHINE_ARCH for the target architecture. Unification is required for cross-building. Tags added to: sys/boot/Makefile sys/boot/arc/loader/Makefile sys/kern/Makefile usr.bin/cpp/Makefile usr.bin/gcore/Makefile usr.bin/truss/Makefile usr.bin/gcore/Makefile: fixed typo: MACHINDE -> MACHINE_ARCH
* Add reference to the share/examples/nwclient directory.bp1999-11-142-10/+5
|
* Make fstat work with file arguments again after being broken by dev_tgreen1999-11-131-1/+28
| | | | | | changes. Thanks, Mr. Edwards! Submitted by: Peter Edwards <peter.edwards@ireland.com>
* Fix the case where there's no path and doscmd defaults it to C:\marcel1999-11-121-1/+1
|
* ioctlname() is actually passed a register_t.dfr1999-11-101-1/+1
| | | | Pointed out by: bde
* Fix cosmetic bug in time display. Current day logins are now displayeddavidn1999-11-101-4/+9
| | | | | | | as plain time as originally intended, instead of displaying DayHH times when the login time happens to be prior the GMT - TZ difference. (Only noticable on systems operating east of GMT/UTC). Local times are now used to determine the day.
* Fix a boatload of warnings in the generated code on the alpha.dfr1999-11-091-1/+1
|
* Fix the output of 'netstat -I de0 1' for the alpha. Fix a bunch ofdfr1999-11-091-9/+10
| | | | warnings while I'm here.
* Change default to whois.crsnic.net - new Central Shared Registry for domainsache1999-11-092-5/+20
| | | | Move InterNIC to -i option
* Make sigreturn() work properly by zeroing mc_onstack like Bruce suggested.jhay1999-11-082-2/+3
| | | | Restore dos_makepath() functionality to pre r1.5 days.
* Document startup behaviour of mail(1).jkoshy1999-11-081-0/+18
| | | | | PR: docs/1577 Submitted by: Joseph Koshy <koshy@india.hp.com>
* add argumentscharnier1999-11-021-9/+13
|
* Document that hosts for which no status report has been received fornik1999-11-011-1/+2
| | | | | | | | 4 days are considered to have LEFT_EARTH(), and will not be shown in the list. PR: docs/14299 Submitted by: Ben Smithurst <ben@scientia.demon.co.uk>
* Fix breakage for NOSHARED case.bp1999-11-011-4/+3
| | | | Submitted by: Bruce Evans
* Fix NOSHARED case.bp1999-10-311-5/+3
| | | | Pointed by: Bruce Evans
* Add ncplogin/logout programs which allow manage connectionsbp1999-10-315-0/+425
| | | | | | more precisely than mount_nwfs. Obtained from: ncplib-1.3.3
* mdoc(7)'fyphantom1999-10-303-26/+31
|
* uncomment FILES section (it look reasonable here)phantom1999-10-301-13/+23
| | | | mdoc(7)'fy
* .Ox is ``clever'' now.phantom1999-10-301-2/+1
|
* Update PicoBSD so it does not need to patch the passwd Makefile.roger1999-10-301-0/+25
|
* useracc() the prequel:phk1999-10-291-1/+0
| | | | | | | | | | | Merge the contents (less some trivial bordering the silly comments) of <vm/vm_prot.h> and <vm/vm_inherit.h> into <vm/vm.h>. This puts the #defines for the vm_inherit_t and vm_prot_t types next to their typedefs. This paves the road for the commit to follow shortly: change useracc() to use VM_PROT_{READ|WRITE} rather than B_{READ|WRITE} as argument.
* toupper -> tolower to match changed behaviour of new grep case foldache1999-10-292-4/+4
|
* Make "YYPARSE_PARAM" and "YYPARSE_PARAM_TYPE" C++/ANSI-C clean.obrien1999-10-281-4/+15
|
* Add more verbage explaining the "-I" option and its behavior.obrien1999-10-271-0/+9
| | | | Submitted by: Archie Cobbs <archie@whistle.com>
* Allow a user specified parameter to 'yyparse()', in a manner similar toobrien1999-10-271-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that used by bison. The names are consistent with the bison implementation but this one also allows the type of the parameter to be specified. For a desired prototype of: int yyparse __P((struct yyresult *)); and compile like this: yacc -dv grammar.y cc -c -DYYPARSE_PARAM_TYPE="struct yyresult *" \ -DYYPARSE_PARAM="parm" y.tab.c and use like this: ${ #include "usrtypes.h" #include "usrproto.h" }$ %token NUMBER %% goal : NUMBER { parm->value = yylval; } ; If YYPARSE_PARAM_TYPE isn't specified then "void *" is the default type. If YYPARSE_PARAM is not specified then the generated code behaves exactly as traditional byacc. PR: 13562 Submitted by: W Gerald Hicks <wghicks@bellsouth.net>
* Emit YYERRCODE into y.tab.h to help `lex' report scanning errors back toobrien1999-10-271-3/+9
| | | | | | | Yacc. PR: 13562 Submitted by: W Gerald Hicks <wghicks@bellsouth.net>
* After a proper import we now have both the original RCS tags + our own.obrien1999-10-2719-3/+22
| | | | (also now clearer in ``cvs log'' that we are at version 2.5.4)
* Add $FreeBSD$'sobrien1999-10-272-0/+4
|
* Add -c, -s, and -W options to nfsstat. Improve interval output and adddillon1999-10-252-192/+276
| | | | | | | | | | | wide-format option to get client-side ops and cache statistics on a single line. Change client side ops to the number of attempted ops, whether cached or not, rather then just the number of rpc's that went through to the server. This brings nfsstat inline with systat -vm and vmstat and reduces confusion. The combined cache percentage stats now available via 'nfsstat -cW 1' becomes very useful.
* Cosmetique: use standard prototypes schemeache1999-10-241-13/+16
| | | | Back out prev change: toupper is more compatible with sort -f
* Cosmetique: use standard prototypes schemeache1999-10-241-13/+16
| | | | Back out prev. change: toupper is more compatible with sort -f
* toupper->tolower to match what strcasecmp doesache1999-10-242-4/+4
|
* Use strcoll to provide the same results as sort and commache1999-10-241-3/+17
| | | | Use LINE_MAX for max line size (as comm does)
* Localize itache1999-10-241-2/+19
| | | | | PR: 11221 Submitted by: Grigoriy Strokin <grg@philol.msu.ru>
* Put include <netgraph.h> back in - problem was due to a cvsup mess ondillon1999-10-241-0/+1
| | | | | freefall. There may also be a real problem w/ buildworld but the fix would go somewhere else, not here.
* Cleanup missing includes, stale includes, and a few printf formatdillon1999-10-233-3/+2
| | | | inconsistancies.
* Add the -F option. This is for forcing restarts with -r by inhibitinggreen1999-10-234-7/+22
| | | | transmission of the If-Range HTTP header field.
* Whistle's Netgraph link-layer (sometimes more) networking infrastructure.julian1999-10-216-4/+230
| | | | | | | | | | Been in production for 3 years now. Gives Instant Frame relay to if_sr and if_ar drivers, and PPPOE support soon. See: ftp://ftp.whistle.com/pub/archie/netgraph/index.html for on-line manual pages. Reviewed by: Doug Rabson (dfr@freebsd.org) Obtained from: Whistle CVS tree
* Cleanup towards -Walljulian1999-10-215-18/+17
|
* fix a serious bug where, on alpha, due to a an int/long type mismatch,gallatin1999-10-201-1/+1
| | | | | the uid arg to use_yp() was getting clobbered by the call to my_yp_match(). This led to a problem where a NIS user could edit root's passwd information.
* Add ncplist program. That makes minimal set of ncpbp1999-10-204-0/+547
| | | | | utilities to use NetWare volumes. Other functionality (ncpsend, ncprint) will be added later.
* For emacs key binding clearly describe ^t/^u as "begin of file"/"end of file"ache1999-10-183-9/+9
| | | | | Old description "start of text"/"end of text" is too confusing assuming text currently visible on the screen
* Moved to shareache1999-10-1824-4757/+0
|
* moved to shareache1999-10-181-7/+0
|
* Allow suppress printing of lines with zero countsbp1999-10-181-2/+4
| | | | | | for an IPX address family. PR: 14168
* Move data to shareache1999-10-1714-1433/+0
|
* sync with earlier change removing broken locale.jkh1999-10-161-1/+0
|
* Remove one of the locales which is currently breaking the build.jkh1999-10-141-1/+0
|
* Allow in/out to work in DOS programs.imp1999-10-135-3/+94
| | | | | Submitted by: Parag Patel PR: bin/8486
* Default to no backspace/delete swapping.imp1999-10-131-1/+2
| | | | | | | | | | Add a title "DOS" to the X window. Submitted by: Parag Patel <parag@cgt.com> PR: bin/8486 Note: The pr was closed a long time ago when the original patch was applied, rather than the amended one.
OpenPOWER on IntegriCloud