Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
acpidump/ | 11-Mar-2024 | - | 197 | 158 | ||
efihello/ | 11-Mar-2024 | - | 56 | 29 | ||
AcpiPkg.dec | D | 11-Mar-2024 | 921 | 26 | 22 | |
AcpiPkg_nostdlib.dsc | D | 11-Mar-2024 | 1.7 KiB | 47 | 43 | |
AcpiPkg_stdlib.dsc | D | 11-Mar-2024 | 3 KiB | 69 | 62 | |
Makefile.common | D | 11-Mar-2024 | 1.2 KiB | 62 | 42 | |
Makefile.config | D | 11-Mar-2024 | 5.4 KiB | 253 | 136 | |
Makefile.rules | D | 11-Mar-2024 | 528 | 27 | 13 | |
README | D | 11-Mar-2024 | 1.3 KiB | 41 | 30 | |
edksetup.sh | D | 11-Mar-2024 | 834 | 44 | 35 |
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