From owner-cvs-usrbin Thu Jul 16 16:55:31 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18474 for cvs-usrbin-outgoing; Thu, 16 Jul 1998 16:55:31 -0700 (PDT) (envelope-from owner-cvs-usrbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA18444; Thu, 16 Jul 1998 16:55:28 -0700 (PDT) (envelope-from imp@FreeBSD.org) From: Warner Losh Received: (from imp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA18684; Thu, 16 Jul 1998 16:54:28 -0700 (PDT) Date: Thu, 16 Jul 1998 16:54:28 -0700 (PDT) Message-Id: <199807162354.QAA18684@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/doscmd dos.c doscmd.1 doscmd.c ems.h Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk imp 1998/07/16 16:54:27 PDT Modified files: usr.bin/doscmd dos.c doscmd.1 doscmd.c ems.h Log: o remove -f from doscmd man page, as it is not implemented. o Remove init printf o Don't set optind from return value for do_args. getopt has already done this. o Bump EMS memory from 1M to 10M (this really should be a command line option). o Open /dev/null when requested to open emmxxxx0 to allow many programs checking to see if EMS is installed to find it. o Route int67 to ems_entry to allow EMS to be used when DOS is emulated as well as when DOS is booted. This may obviate the need for the driver doing anything at all in a really booted situation and won't hurt that case. I can now run the DOS program I'm interested in running with enough EMS memory that its "advanced" functions are enabled and working. Revision Changes Path 1.4 +21 -1 src/usr.bin/doscmd/dos.c 1.7 +0 -8 src/usr.bin/doscmd/doscmd.1 1.7 +2 -3 src/usr.bin/doscmd/doscmd.c 1.2 +2 -2 src/usr.bin/doscmd/ems.h