Commit 8c4cc21c1fabaa2824456d722943e2083c96c712

Authored by Bin Meng
1 parent 3a2a3d0b48

acpi: Specify U-Boot include path for ASL files

It will be much easier if we split the whole dsdt.asl file into
multiple smaller ASL parts and have access to U-Boot include files.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Stefan Roese <sr@denx.de>
Tested-by: Stefan Roese <sr@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

scripts/Makefile.lib
... ... @@ -325,7 +325,7 @@
325 325 # ---------------------------------------------------------------------------
326 326 quiet_cmd_acpi_c_asl= ASL $<
327 327 cmd_acpi_c_asl= \
328   - $(CPP) -x assembler-with-cpp -P -o $<.tmp $<; \
  328 + $(CPP) -x assembler-with-cpp -P $(UBOOTINCLUDE) -o $<.tmp $<; \
329 329 iasl -p $< -tc -va $<.tmp; \
330 330 mv $(patsubst %.asl,%.hex,$<) $@
331 331