[PATCH] seabios: readd Makefile rule for ACPI

Commit 36feea9317b45abf3a540e9d82ad1723bebe3ebd removed the dependency of output file on acpi output. This means it's not rebuilt on acpi source or hex file updates. Re-introduce this dependency. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index a4d548d..48715bf 100644 --- a/Makefile +++ b/Makefile @@ -227,6 +227,7 @@ src/%.hex: src/%.dsl ./tools/acpi_extract_preprocess.py ./tools/acpi_extract.py $(Q)$(PYTHON) ./tools/acpi_extract.py $(OUT)$*.lst > $(OUT)$*.off $(Q)cat $(OUT)$*.off > $@ +$(OUT)ccode32flat.o: src/acpi-dsdt.hex src/ssdt-proc.hex src/ssdt-pcihp.hex ################ Kconfig rules -- 1.7.9.111.gf3fb0

On 03/28/2012 02:14 PM, Michael S. Tsirkin wrote:
Commit 36feea9317b45abf3a540e9d82ad1723bebe3ebd removed the dependency of output file on acpi output. This means it's not rebuilt on acpi source or hex file updates. Re-introduce this dependency.
Signed-off-by: Michael S. Tsirkin<mst@redhat.com> --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile index a4d548d..48715bf 100644 --- a/Makefile +++ b/Makefile @@ -227,6 +227,7 @@ src/%.hex: src/%.dsl ./tools/acpi_extract_preprocess.py ./tools/acpi_extract.py $(Q)$(PYTHON) ./tools/acpi_extract.py $(OUT)$*.lst> $(OUT)$*.off $(Q)cat $(OUT)$*.off> $@
+$(OUT)ccode32flat.o: src/acpi-dsdt.hex src/ssdt-proc.hex src/ssdt-pcihp.hex
################ Kconfig rules
It fixes issue for me. ----- Igor

On Wed, Mar 28, 2012 at 02:14:45PM +0200, Michael S. Tsirkin wrote:
Commit 36feea9317b45abf3a540e9d82ad1723bebe3ebd removed the dependency of output file on acpi output. This means it's not rebuilt on acpi source or hex file updates. Re-introduce this dependency.
Thanks. I applied this change. -Kevin
participants (3)
-
Igor Mammedov
-
Kevin O'Connor
-
Michael S. Tsirkin