• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

acpidump/11-Mar-2024-197158

efihello/11-Mar-2024-5629

AcpiPkg.decD11-Mar-2024921 2622

AcpiPkg_nostdlib.dscD11-Mar-20241.7 KiB4743

AcpiPkg_stdlib.dscD11-Mar-20243 KiB6962

Makefile.commonD11-Mar-20241.2 KiB6242

Makefile.configD11-Mar-20245.4 KiB253136

Makefile.rulesD11-Mar-2024528 2713

READMED11-Mar-20241.3 KiB4130

edksetup.shD11-Mar-2024834 4435

README

1
2                         Build EFI ACPICA Utilities
3
4The EFI porting of the ACPICA utilities can be built with GNU EFI and EDK2.
5However, the porting has only been tested in a Linux environment.
6
71. Build EFI ACPICA utilities with EDK2 (Linux)
8
9   In a Linux environment, you can build EFI ACPICA utilities by executing
10   the following commands (supposing you are using gcc-4.7):
11
12   # git clone https://github.com/tianocore/edk2
13   # git clone https://github.com/acpica/acpica
14   # cd edk2
15   # (cd BaseTools; make)
16   # source ./edksetup.sh
17   # ln -s ../acpica AcpiPkg
18   # AcpiPkg/generate/efi/edksetup.sh
19   # build -p AcpiPkg/AcpiPkg.dsc -t GCC47
20
21   You can find built EFI binaries (e.x., acpidump.efi) in the following
22   folders:
23     Build/Acpi/DEBUG_GCC47/IA32: i386 targets
24     Build/Acpi/DEBUG_GCC47/X64: x86_64 targets
25
262. Build EFI ACPICA utilities with GNU EFI (Linux)
27
28   In a Linux environment, you can build EFI ACPICA utilities by executing
29   the following commands:
30
31   # apt-get install gnu-efi
32   # git clone https://github.com/acpica/acpica
33   # cd acpica
34   # make OS=efi
35
36   You can find built EFI binaries (e.x., acpidump.efi) in the following
37   folder:
38     generate/efi/bin
39   It contains i386 targets if it is built on an i386 host, or it contains
40   x86_64 targets if it is built on a x86_64 host.
41