我对Buildroot很陌生,正在使用Buildroot将Linaro用作内核并构建UEFI。
为了构建UEFI,它需要ACPI工具,主要是iasl命令。。
但作为buildroot一部分的iasl命令无法执行,并给出以下错误:
“无法执行iasl命令”
我检查了iasl的文件类型,发现它是x86
运行buildroot的系统是x86_64。不确定这是否是iasl失败的原因..如果是,我们如何指定buildroot来生成x86_64工具?
buildroot日志中的错误是:
******buildroot-2016.11.2/uefi-image-443bf46/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressSysConfigLib/ArmVExpressSysConfigLib.inf [AARCH64]
Building ... buildroot-2016.11.2/uefi-image-443bf46/ArmPlatformPkg/ArmVExpressPkg/Library/ResetSystemLib/ResetSystemLib.inf [AARCH64]
Building ... /buildroot-2016.11.2/uefi-image-443bf46/ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.inf [AARCH64]
Building ... /buildroot-2016.11.2/uefi-image-443bf46/ArmPlatformPkg/Library/PL011SerialPortLib/PL011SerialPortExtLib.inf [AARCH64]
Building ... /buildroot-2016.11.2/uefi-image-443bf46/ArmPlatformPkg/ArmVExpressPkg/AcpiTables/rtsm_ve-aemv8a/AcpiTables.inf [AARCH64]
/bin/sh: /buildroot-2016.11.2/output/build/acpica-20160831/generate/unix/bin/iasl: cannot execute binary file
make: *** [/buildroot-2016.11.2/uefi-image-443bf46/Build/ArmVExpress-FVP-AArch64/RELEASE_ARMLINUXGCC/AARCH64/ArmPlatformPkg/ArmVExpressPkg/AcpiTables/rtsm_ve-aemv8a/AcpiTables/OUTPUT/facp.aml] Error 126
build.py...
: error 7000: Failed to execute command
make --no-print-directory tbuild [/buildroot-2016.11.2/uefi-image-443bf46/Build/ArmVExpress-FVP-AArch64/RELEASE_ARMLINUXGCC/AARCH64/ArmPlatformPkg/ArmVExpressPkg/AcpiTables/rtsm_ve-aemv8a/AcpiTables]******
请引导我
最佳答案
您没有提供足够的详细信息,但我的感觉是,您可能已经为目标构建了iasl,并尝试在运行Buildroot构建的计算机上运行它。不能工作。确保使用host-acpica
包。
关于linux - Armv8体系结构的Buildroot配置选项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45796787/