diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-05-07 07:46:18 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-05-23 15:18:00 +0800 |
commit | 8c4cc21c1fabaa2824456d722943e2083c96c712 (patch) | |
tree | 5a17325672227229a8df80306a3c6e9eaa318d28 /scripts | |
parent | 3a2a3d0b485e8c810e9133eb0c86af33f5d46a14 (diff) | |
download | u-boot-imx-8c4cc21c1fabaa2824456d722943e2083c96c712.zip u-boot-imx-8c4cc21c1fabaa2824456d722943e2083c96c712.tar.gz u-boot-imx-8c4cc21c1fabaa2824456d722943e2083c96c712.tar.bz2 |
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>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 85b5819..5f0b050 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -325,7 +325,7 @@ $(obj)/%.S: $(src)/%.ttf # --------------------------------------------------------------------------- quiet_cmd_acpi_c_asl= ASL $< cmd_acpi_c_asl= \ - $(CPP) -x assembler-with-cpp -P -o $<.tmp $<; \ + $(CPP) -x assembler-with-cpp -P $(UBOOTINCLUDE) -o $<.tmp $<; \ iasl -p $< -tc -va $<.tmp; \ mv $(patsubst %.asl,%.hex,$<) $@ |