mirror of https://github.com/acidanthera/audk.git
ArmVirtPkg/Kvmtool: Enable Acpiview
Acpiview is a command line tool allowing to display, dump, or check installed ACPI tables. Add a 'ACPIVIEW_ENABLE' switch to enable it on an ArmVirt platform. The switch is set for the ArmVirtKvmTool platform. Signed-off-by: Sami Mujawar <sami.mujawar@arm.com> Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com> Acked-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
This commit is contained in:
parent
17a02163bd
commit
5b3c682d91
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (c) 2011-2015, ARM Limited. All rights reserved.
|
# Copyright (c) 2011 - 2022, ARM Limited. All rights reserved.
|
||||||
# Copyright (c) 2014, Linaro Limited. All rights reserved.
|
# Copyright (c) 2014, Linaro Limited. All rights reserved.
|
||||||
# Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.
|
# Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.
|
||||||
# Copyright (c) Microsoft Corporation.
|
# Copyright (c) Microsoft Corporation.
|
||||||
|
@ -397,6 +397,9 @@
|
||||||
NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
|
NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
|
||||||
NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
|
NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
|
||||||
NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
|
NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
|
||||||
|
!if $(ACPIVIEW_ENABLE) == TRUE
|
||||||
|
NULL|ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.inf
|
||||||
|
!endif
|
||||||
NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
|
NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
|
||||||
NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
|
NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
|
||||||
!if $(NETWORK_IP6_ENABLE) == TRUE
|
!if $(NETWORK_IP6_ENABLE) == TRUE
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# @file
|
# @file
|
||||||
# Workspace file for KVMTool virtual platform.
|
# Workspace file for KVMTool virtual platform.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 - 2021, ARM Limited. All rights reserved.
|
# Copyright (c) 2018 - 2022, ARM Limited. All rights reserved.
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
#
|
#
|
||||||
|
@ -27,6 +27,9 @@
|
||||||
SKUID_IDENTIFIER = DEFAULT
|
SKUID_IDENTIFIER = DEFAULT
|
||||||
FLASH_DEFINITION = ArmVirtPkg/ArmVirtKvmTool.fdf
|
FLASH_DEFINITION = ArmVirtPkg/ArmVirtKvmTool.fdf
|
||||||
|
|
||||||
|
[Defines.AARCH64]
|
||||||
|
DEFINE ACPIVIEW_ENABLE = TRUE
|
||||||
|
|
||||||
!include ArmVirtPkg/ArmVirt.dsc.inc
|
!include ArmVirtPkg/ArmVirt.dsc.inc
|
||||||
|
|
||||||
!if $(ARCH) == AARCH64
|
!if $(ARCH) == AARCH64
|
||||||
|
|
Loading…
Reference in New Issue