mirror of
https://github.com/acpica/acpica/
synced 2025-02-25 18:04:08 +03:00
Update signon message
This commit is contained in:
parent
b077d043e9
commit
c643ef2792
@ -2,7 +2,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: aslcompile - top level compile module
|
||||
* $Revision: 1.85 $
|
||||
* $Revision: 1.86 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -186,15 +186,35 @@ AslCompilerSignon (
|
||||
break;
|
||||
}
|
||||
|
||||
/* Compiler signon with copyright */
|
||||
|
||||
/*
|
||||
* Compiler signon with copyright
|
||||
*/
|
||||
FlPrintFile (FileId,
|
||||
"%s\n%s%s\n%s%s version %X [%s]\n%s%s\n%sSupports ACPI Specification Revision 3.0\n%s\n",
|
||||
"%s\n%s%s\n%s",
|
||||
Prefix,
|
||||
Prefix, IntelAcpiCA,
|
||||
Prefix, CompilerId, ACPI_CA_VERSION, __DATE__,
|
||||
Prefix);
|
||||
|
||||
/* Running compiler or disassembler? */
|
||||
|
||||
if (Gbl_DisasmFlag)
|
||||
{
|
||||
FlPrintFile (FileId,
|
||||
"%s", DisassemblerId);
|
||||
}
|
||||
else
|
||||
{
|
||||
FlPrintFile (FileId,
|
||||
"%s", CompilerId);
|
||||
}
|
||||
|
||||
/* Version, build date, copyright, compliance */
|
||||
|
||||
FlPrintFile (FileId,
|
||||
" version %X [%s]\n%s%s\n%s%s\n%s\n",
|
||||
(UINT32) ACPI_CA_VERSION, __DATE__,
|
||||
Prefix, CompilerCopyright,
|
||||
Prefix,
|
||||
Prefix, CompilerCompliance,
|
||||
Prefix);
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: asldefine.h - Common defines for the iASL compiler
|
||||
* $Revision: 1.2 $
|
||||
* $Revision: 1.3 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -126,9 +126,10 @@
|
||||
#define CompilerCreatorRevision ACPI_CA_VERSION
|
||||
|
||||
#define IntelAcpiCA "Intel ACPI Component Architecture"
|
||||
#define CompilerId "ASL Optimizing Compiler / AML Disassembler"
|
||||
#define CompilerId "ASL Optimizing Compiler"
|
||||
#define DisassemblerId "AML Disassembler"
|
||||
#define CompilerCopyright "Copyright (C) 2000 - 2005 Intel Corporation"
|
||||
#define CompilerCompliance "ACPI 3.0"
|
||||
#define CompilerCompliance "Supports ACPI Specification Revision 3.0"
|
||||
#define CompilerName "iasl"
|
||||
#define CompilerCreatorId "INTL"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user