diff options
| author | Tom Rini <trini@konsulko.com> | 2015-08-26 17:48:05 -0400 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2015-08-26 17:48:05 -0400 |
| commit | 79c884d7e449a63fa8f07b7495f8f9873355c48f (patch) | |
| tree | 19adcc1b9d3520a68937a1f5f81b06775c790d8a /scripts | |
| parent | ad608a21f89bf7467059ed59d60b080aace7ef99 (diff) | |
| parent | f4b5db7c5309dd7f3ecc6369f3c1f41e8bfe93ae (diff) | |
Merge git://git.denx.de/u-boot-x86
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Makefile.lib | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 1c949fc0eb..ed30bf5bb9 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -297,6 +297,17 @@ $(obj)/%.dtb: $(src)/%.dts FORCE dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp) +# ACPI +# --------------------------------------------------------------------------- +quiet_cmd_acpi_c_asl= ASL $@ +cmd_acpi_c_asl= \ + $(CPP) -x assembler-with-cpp -P -o $<.tmp $<; \ + iasl -p $< -tc -va $<.tmp; \ + mv $(patsubst %.asl,%.hex,$<) $@ + +$(obj)/%.c: $(src)/%.asl + $(call cmd,acpi_c_asl) + # Bzip2 # --------------------------------------------------------------------------- |
