From: Al Stone al.stone@linaro.org
Signed-off-by: Al Stone al.stone@linaro.org Signed-off-by: Graeme Gregory graeme.gregory@linaro.org --- scripts/Makefile.lib | 9 +++++++++ 1 file changed, 9 insertions(+)
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 07125e6..b14a32b 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -283,6 +283,15 @@ cmd_dtc_cpp = $(CPP) $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \ $(obj)/%.dtb: $(src)/%.dtsp FORCE $(call if_changed_dep,dtc_cpp)
+# +# MAB: make an ACPI blob +# --------------------------------------------------------------------------- +quiet_cmd_mab = MAB $@ +cmd_mab = $(objtree)/scripts/mab/mab -d $(src)/$@ -i $(basename $@).manifest -o $@ + +$(obj)/%.acpi: %(src)/%.manifest FORCE + $(call cmd,mab) + # Bzip2 # ---------------------------------------------------------------------------