diff options
author | peter <peter@FreeBSD.org> | 1998-11-04 13:37:43 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-11-04 13:37:43 +0000 |
commit | 7f0987e02d6b66490eb3d84e7441f6e486cc2f7c (patch) | |
tree | 29b5cb34d6c77bf0fcdb47f48d8a3f95fa352732 | |
parent | e99e311d6b723f95d58bc18d61da217d72bf487a (diff) | |
download | FreeBSD-src-7f0987e02d6b66490eb3d84e7441f6e486cc2f7c.zip FreeBSD-src-7f0987e02d6b66490eb3d84e7441f6e486cc2f7c.tar.gz |
Remove stray(?) debugging printf's and cngetc()'s that freeze boot several
times waiting for keypresses.
-rw-r--r-- | sys/i386/i386/userconfig.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sys/i386/i386/userconfig.c b/sys/i386/i386/userconfig.c index c594ae7..9a3832b 100644 --- a/sys/i386/i386/userconfig.c +++ b/sys/i386/i386/userconfig.c @@ -46,7 +46,7 @@ ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ** - ** $Id: userconfig.c,v 1.113 1998/10/18 16:24:33 wpaul Exp $ + ** $Id: userconfig.c,v 1.114 1998/11/03 21:07:51 msmith Exp $ **/ /** @@ -179,8 +179,6 @@ getchar(void) asp = NULL; } } - printf("autocheck gives assize=%d asp=%p\n", assize, asp); - cngetc(); } if (assize > 0) @@ -198,8 +196,6 @@ getchar(void) #ifdef INTRO_USERCONFIG if (intro == 0) { - printf("do intro\n"); - cngetc(); intro = 1; c = 'i'; asp = "ntro\n"; @@ -208,8 +204,6 @@ getchar(void) if (!(boothowto & RB_CONFIG)) { /* don't want to drop to interpreter */ - printf("do quit\n"); - cngetc(); c = 'q'; asp = "uit\n"; assize = strlen(asp); @@ -2460,7 +2454,7 @@ visuserconfig(void) * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: userconfig.c,v 1.113 1998/10/18 16:24:33 wpaul Exp $ + * $Id: userconfig.c,v 1.114 1998/11/03 21:07:51 msmith Exp $ */ #include "scbus.h" |