acpi-dsdt.dsl and q35-acpi-dsdt.dsl include some .dsl files, so the corresponding .hex must have build-dep on these files, too.
Signed-off-by: Hu Tao hutao@cn.fujitsu.com --- Makefile | 1 + 1 file changed, 1 insertion(+)
diff --git a/Makefile b/Makefile index 1ce2f79..188b8e4 100644 --- a/Makefile +++ b/Makefile @@ -221,6 +221,7 @@ $(OUT)%.hex: src/%.dsl ./tools/acpi_extract_preprocess.py ./tools/acpi_extract.p $(Q)cat $(OUT)$*.off > $@
$(OUT)acpi.o: $(OUT)acpi-dsdt.hex $(OUT)ssdt-proc.hex $(OUT)ssdt-pcihp.hex $(OUT)ssdt-susp.hex $(OUT)q35-acpi-dsdt.hex +$(OUT)acpi-dsdt.hex $(OUT)q35-acpi-dsdt.hex: src/acpi-dsdt-dbug.dsl src/acpi-dsdt-pci-crs.dsl src/acpi-dsdt-hpet.dsl src/acpi-dsdt-isa.dsl src/acpi-dsdt-cpu-hotplug.dsl
################ Kconfig rules
On Mon, Mar 11, 2013 at 03:30:30PM +0800, Hu Tao wrote:
acpi-dsdt.dsl and q35-acpi-dsdt.dsl include some .dsl files, so the corresponding .hex must have build-dep on these files, too.
I think the patch proposed at:
http://www.seabios.org/pipermail/seabios/2013-March/005822.html
should fix this.
-Kevin
On Mon, Mar 11, 2013 at 07:15:05PM -0400, Kevin O'Connor wrote:
On Mon, Mar 11, 2013 at 03:30:30PM +0800, Hu Tao wrote:
acpi-dsdt.dsl and q35-acpi-dsdt.dsl include some .dsl files, so the corresponding .hex must have build-dep on these files, too.
I think the patch proposed at:
http://www.seabios.org/pipermail/seabios/2013-March/005822.html
should fix this.
Thanks, this is a better one. And, tested.