diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-18 01:03:56 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-18 01:03:56 +0000 |
commit | a78f466fdcc3a85d58def4d15835ccbe2cde19f3 (patch) | |
tree | f4e5838e1ee1c513606b44067afb82b005322bdd | |
parent | 75496ad2acb1bc5c4ed136cacadbfe3e03c045bf (diff) |
disable apm for the moment
-rw-r--r-- | sys/arch/i386/stand/libsa/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/libsa/machdep.c b/sys/arch/i386/stand/libsa/machdep.c index ccafe778175..94f69f7df24 100644 --- a/sys/arch/i386/stand/libsa/machdep.c +++ b/sys/arch/i386/stand/libsa/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.1 1997/07/18 00:37:15 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.2 1997/07/18 01:03:55 mickey Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -54,6 +54,7 @@ machdep() #ifdef DEBUG *(u_int16_t*)0xb8148 = 0x4f31; #endif +#if 0 printf("apm_init: "); switch(apminfo.apm_detail = apm_init()) { case APMINI_CANTFIND: @@ -97,4 +98,5 @@ machdep() #endif } putchar('\n'); +#endif } |