Added option to skip running _INI

date	2001.02.05.21.51.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 20:41:39 +00:00
parent 0235af5574
commit 241195eef2

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: aemain - Main routine for the AcpiExec utility
* $Revision: 1.30 $
* $Revision: 1.31 $
*
*****************************************************************************/
@ -167,6 +167,7 @@ usage (void)
printf (" -? Display this message\n");
printf (" -i Do not run INI methods\n");
printf (" -l DebugLevel Specify debug output level\n");
printf (" -v Verbose init output\n");
}
@ -211,7 +212,7 @@ main (
/* Get the command line options */
while ((j = getopt (argc, argv, "?dgijl:o:s")) != EOF) switch(j)
while ((j = getopt (argc, argv, "?dgijl:o:sv")) != EOF) switch(j)
{
case 'd':
opt_disasm = TRUE;
@ -244,6 +245,10 @@ main (
opt_stats = TRUE;
break;
case 'v':
AcpiDbgLevel |= TRACE_INIT;
break;
case '?':
default:
usage();