aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/doscmd
Commit message (Collapse)AuthorAgeFilesLines
* Remove doscmd from the base system now that it lives in the ports tree.Dag-Erling Smørgrav2004-03-2369-25633/+0
| | | | Notes: svn path=/head/; revision=127340
* Fixed a misspelling of 0 as NULL.Bruce Evans2004-03-111-1/+1
| | | | Notes: svn path=/head/; revision=126837
* Fixed style of DPADD and LDADD assignments as per style.Makefile(5).Ruslan Ermilov2004-02-051-2/+3
| | | | Notes: svn path=/head/; revision=125503
* Get rid of duplicates.Ruslan Ermilov2003-09-141-2/+2
| | | | Notes: svn path=/head/; revision=120054
* Uniformly refer to a file system as "file system".Ruslan Ermilov2002-12-121-2/+2
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107788
* Initiate deorbit burn for the i386-only a.out related support. Moves arePeter Wemm2002-09-171-31/+0
| | | | | | | | | | | | | | | | | | under way to move the remnants of the a.out toolchain to ports. As the comment in src/Makefile said, this stuff is deprecated and one should not expect this to remain beyond 4.0-REL. It has already lasted WAY beyond that. Notable exceptions: gcc - I have not touched the a.out generation stuff there. ldd/ldconfig - still have some code to interface with a.out rtld. old as/ld/etc - I have not removed these yet, pending their move to ports. some includes - necessary for ldd/ldconfig for now. Tested on: i386 (extensively), alpha Notes: svn path=/head/; revision=103436
* Replace various spelling with FALLTHROUGH which is lint()ablePhilippe Charnier2002-08-251-1/+1
| | | | Notes: svn path=/head/; revision=102412
* Drop support for COPY, -c has been the default mode of install(1)Ruslan Ermilov2002-07-291-4/+4
| | | | | | | | | for a long time now. Approved by: bde Notes: svn path=/head/; revision=100872
* "inline" fixing. Replace "inline" with "__inline" to make more BSDMark Murray2002-07-1910-43/+51
| | | | | | | | | standard (and easier to define away with support in cdefs.h). Also convert two function-like macros to static inline functions for lint and the debugger. Notes: svn path=/head/; revision=100356
* More consistancy. file system > filesystemTom Rhodes2002-05-165-6/+6
| | | | Notes: svn path=/head/; revision=96704
* Cast the uc_mcontext member to regcontext *, not the whole ucontext_t.Thomas Gellekum2002-05-101-2/+3
| | | | | | | | PR: 35449 Submitted by: Stefan Farfeleder <e0026813@stud3.tuwien.ac.at> Notes: svn path=/head/; revision=96347
* Fix wrong bitmask.Thomas Gellekum2002-05-101-3/+3
| | | | Notes: svn path=/head/; revision=96346
* Usage style sweep: spell "usage" with a small 'u'.Dag-Erling Smørgrav2002-04-221-13/+13
| | | | | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/. Notes: svn path=/head/; revision=95258
* Use `The .Nm utility'Philippe Charnier2002-04-191-4/+6
| | | | Notes: svn path=/head/; revision=95083
* Reduce the number of spelling mistakes.Philippe Charnier2002-04-129-22/+22
| | | | Notes: svn path=/head/; revision=94557
* Mark some parameters as unused.David Malone2002-03-303-14/+24
| | | | | | | | Make more code depend on '#ifndef NO_X' so we don't get unused warnings when compiling without X. Notes: svn path=/head/; revision=93424
* Update FreeBSD SCM IDs.David E. O'Brien2002-03-0739-82/+120
| | | | Notes: svn path=/head/; revision=91805
* Avoid a null-pointer dereference which occurred when emulating DOSRobert Drehmel2002-02-261-0/+2
| | | | | | | | | | interrupt 0x10 function 0x00 without dpy int tty.c being set. PR: 35147 Submitted by: Stefan Farfeleder <e0026813@stud3.tuwien.ac.at> Notes: svn path=/head/; revision=91297
* - Emulate instructions prefixed with 'rep' correctly: set the CXRobert Drehmel2002-02-261-0/+1
| | | | | | | | | | register to zero. Submitted by: Stefan Farfeleder <e0026813@stud3.tuwien.ac.at> PR: 35147 Notes: svn path=/head/; revision=91296
* Don't rely on <sys/signal.h> to include <sys/ucontext.h>.Daniel Eischen2002-02-171-0/+1
| | | | Notes: svn path=/head/; revision=90773
* WARNS=2 fixupMark Murray2001-12-0214-54/+55
| | | | Notes: svn path=/head/; revision=87216
* Remove check for the DISPLAY environment variable. It's easier to useThomas Gellekum2001-11-271-3/+0
| | | | | | | | | the `-x' option to get an X window than to temporarily disable DISPLAY. PR: 32180 Notes: svn path=/head/; revision=86967
* Minor cleanup, no functional changes:Thomas Gellekum2001-10-125-92/+104
| | | | | | | | | - Add/change some comments, - remove superfluous `if (1||x)' and re-indent, - fix initialization of floppyinfo[] to get rid of warning. Notes: svn path=/head/; revision=84837
* - First shot at PIC emulation;Thomas Gellekum2001-10-0213-587/+739
| | | | | | | | | | | - better 8250 emulation; - fake vertical retrace bit in Input Status #1 register (this was lost in the VGA emu rewrite). Submitted by: Igor Serikov <bt@turtle.pangeatech.com> Notes: svn path=/head/; revision=84361
* Fixed the BINGRP handling mess.Ruslan Ermilov2001-09-131-3/+3
| | | | | | | | | | | EXEGRP and EXEMODE are used to install DOS (EXE format) binaries. doscmd(1) can optionally be installed as ``setgid kmem''. Hence the assignment operator for EXEGRP. PR: bin/30538 Notes: svn path=/head/; revision=83395
* Remove MAP_INHERIT flag from mmaps.Matthew Dillon2001-08-254-11/+11
| | | | Notes: svn path=/head/; revision=82325
* Fix INT 10:09 (write char) and INT 10:0a (write char and attribute)Thomas Gellekum2001-08-142-10/+12
| | | | | | | | | | when cursor is at the lower right corner. PR: 29574 29601 Submitted by: Nils M Holm <nmh@t3x.org> Notes: svn path=/head/; revision=81624
* Move update of BIOS variable at 0x6c (time counter) completely to timer.c.Thomas Gellekum2001-08-142-18/+16
| | | | | | | Suggested by: Igor Serikov <bt@turtle.pangeatech.com> Notes: svn path=/head/; revision=81623
* mdoc(7) police: s/BSD/.Bx/ where appropriate.Ruslan Ermilov2001-08-141-1/+2
| | | | Notes: svn path=/head/; revision=81622
* Initialize debugf in main()Peter Wemm2001-08-132-1/+2
| | | | Notes: svn path=/head/; revision=81605
* mdoc(7) police: s;BSD/OS;.Bsx; where appropriate.Ruslan Ermilov2001-08-131-2/+2
| | | | Notes: svn path=/head/; revision=81591
* mdoc(7) police: join split punctuation to macro calls.Ruslan Ermilov2001-08-101-4/+4
| | | | Notes: svn path=/head/; revision=81462
* Silence some more warnings, mostly from `-W -Wwrite-strings'.Thomas Gellekum2001-08-0818-649/+778
| | | | Notes: svn path=/head/; revision=81282
* Fix warnings resulting from `-Wredundant-decls -Wstrict-prototypes'.Thomas Gellekum2001-08-0714-66/+39
| | | | Notes: svn path=/head/; revision=81228
* Fix warnings from `-Wmissing-prototypes'. Staticize.Thomas Gellekum2001-08-0316-276/+231
| | | | Notes: svn path=/head/; revision=81098
* Sort SRCS.Thomas Gellekum2001-08-031-2/+2
| | | | Notes: svn path=/head/; revision=81097
* Don't wait for a keypress in INT 16 function 01, just return the currentThomas Gellekum2001-08-011-3/+0
| | | | | | | state. This fixes Easytrax. Notes: svn path=/head/; revision=80893
* Mark debug() and fatal() as __printflike() and fix resulting warnings.Thomas Gellekum2001-07-3114-42/+42
| | | | Notes: svn path=/head/; revision=80727
* Sort options, remove unknown option 'f'.Thomas Gellekum2001-07-311-68/+67
| | | | Notes: svn path=/head/; revision=80726
* - Add some more x86 instructions to emulate,Thomas Gellekum2001-07-304-136/+267
| | | | | | | | | | | | | - emulate VGA read mode 0, - emulate VGA write mode 1, - minor cleanup. Protel's Easytrax, a free PCB layout program, almost runs now; there are still some problems with the keyboard emulation, but the graphics are fine (albeit a bit slow). Notes: svn path=/head/; revision=80632
* - Fix file names <:-(,Thomas Gellekum2001-07-301-14/+12
| | | | | | | | | | - attempt to find the X includes and libraries better, - sort some things. Submitted by: bde Notes: svn path=/head/; revision=80630
* Include <sys/kbio.h> or <machine/console.h>, depending on __FreeBSD_version.Thomas Gellekum2001-07-261-1/+8
| | | | | | | | | This will reduce diffs to -STABLE. Don't leave an image of the video RAM around. Notes: svn path=/head/; revision=80384
* Correct font names. Now, how on earth did this work on my system?Thomas Gellekum2001-07-261-3/+3
| | | | Notes: svn path=/head/; revision=80383
* Fix bugs introduced in 1.26:Thomas Gellekum2001-07-261-10/+8
| | | | | | | | | | | - restore -I. in CFLAGS - add dependencies of objects on font headers - missing dependencies of font headers on their sources Suggested by: bde Notes: svn path=/head/; revision=80382
* Use STD{ERR,IN,OUT}_FILENO instead of their numeric values. TheSheldon Hearn2001-07-261-2/+2
| | | | | | | | | | definitions are more readable, and it's possible that they're more portable to pathalogical platforms. Submitted by: David Hill <david@phobia.ms> Notes: svn path=/head/; revision=80381
* Fix breakage introduced in rev 1.26, with the introduction ofSheldon Hearn2001-07-251-3/+3
| | | | | | | | | | absoluate pathnames starting with /usr/src. This fixes the installworld target for the case where the source tree is not in /usr/src. Notes: svn path=/head/; revision=80325
* Remove non-existent (missing?) fonts.alias from beforeinstall: targetAndrey A. Chernov2001-07-241-1/+1
| | | | Notes: svn path=/head/; revision=80300
* Add -I${.OBJDIR} to pick generated font*.hAndrey A. Chernov2001-07-241-1/+1
| | | | Notes: svn path=/head/; revision=80297
* Clean up the code a bit:Thomas Gellekum2001-07-2432-181/+205
| | | | | | | | | | - add $FreeBSD$; - remove unused variables; - add missing headers and prototypes; - -Wshadow. Notes: svn path=/head/; revision=80279
* Rewrite video emulation. Features:Thomas Gellekum2001-07-2416-1563/+3116
| | | | | | | | | | | | | | | | | | | | - slightly more accurate VGA hardware emulation; - more int 10 functions, especially wrt to palette handling; - first shot at graphics support; - mode switching. Bugs: - graphics too slow; - only 16 color modes work for now; - works only under X, and only with 16 bit TrueColor visuals; - far from being genuinely useful (I can play an old EGA game now, though (mahjongg.exe)). Also, the code has been cleaned up a bit (more to come in a separate commit). Notes: svn path=/head/; revision=80278