]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
scripts: Makefile.lib: generate dsdt_generated.c instead of dsdt.c
authorPhilippe Reynes <philippe.reynes@softathome.com>
Tue, 22 Feb 2022 13:54:39 +0000 (14:54 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 25 Feb 2022 16:21:24 +0000 (11:21 -0500)
There is a conflict between the static file
lib/acpi/dsdt.c and the file dsdt.c generated
dynamicaly by scripts/Makefile.lib. When a
mrproper is done, the static file dsdt.c is
removed. If a build with acpi enabled is
launched after, the following error is raised:

  CC      lib/acpi/acpi_table.o
make[2]: *** No rule to make target 'lib/acpi/dsdt.asl', needed by 'lib/acpi/dsdt.c'.  Stop.
scripts/Makefile.build:394: recipe for target 'lib/acpi' failed

To avoid such error, the generated file is named
dsdt_generated.c instead of dstdt.c.

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Tested-by: Heiko Thiery <heiko.thiery@gmail.com>
Makefile
board/advantech/som-db5800-som-6867/Makefile
board/congatec/conga-qeval20-qa3-e3845/Makefile
board/dfi/dfi-bt700/Makefile
board/google/chromebook_coral/Makefile
board/intel/bayleybay/Makefile
board/intel/edison/Makefile
board/intel/galileo/Makefile
board/intel/minnowmax/Makefile
scripts/Makefile.lib

index 697cc51d67f3da489dfb8cd93cafe562fd43b6f3..66d9e78cc77690c0acb3422c94ec1ea910cafb86 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2227,7 +2227,8 @@ clean: $(clean-dirs)
                -o -name '*.asn1.[ch]' \
                -o -name '*.symtypes' -o -name 'modules.order' \
                -o -name modules.builtin -o -name '.tmp_*.o.*' \
-               -o -name 'dsdt.aml' -o -name 'dsdt.asl.tmp' -o -name 'dsdt.c' \
+               -o -name 'dsdt_generated.aml' -o -name 'dsdt_generated.asl.tmp' \
+               -o -name 'dsdt_generated.c' \
                -o -name '*.efi' -o -name '*.gcno' -o -name '*.so' \) \
                -type f -print | xargs rm -f
 
index 7975547f41093b3c7f3603cdd50efe0318b0a5d9..95af6c4df7070aa606cc6b7f0189ea3990b8c16e 100644 (file)
@@ -3,4 +3,4 @@
 # Copyright (C) 2015, Google, Inc
 
 obj-y  += som-db5800-som-6867.o
-obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o
+obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt_generated.o
index 451a4fcd6c4d69b6cdd32e49d819d877b189a932..215f5680dc728580ddeaf7b44f24f7ca27b8f600 100644 (file)
@@ -3,4 +3,4 @@
 # Copyright (C) 2015, Google, Inc
 
 obj-y  += conga-qeval20-qa3.o
-obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o
+obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt_generated.o
index 50d88f295458c8f8771c50780cc0c718ab17661a..1c4329a05811b03e5d596fec608928b11e9977eb 100644 (file)
@@ -3,4 +3,4 @@
 # Copyright (C) 2015, Google, Inc
 
 obj-y  += dfi-bt700.o
-obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o
+obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt_generated.o
index f7a0ca6cc0a2685709eb4fed1689f92f310d10ce..846558d777a4b503a1b6a774d2fdf1c5d515c180 100644 (file)
@@ -3,4 +3,4 @@
 # Copyright 2019 Google LLC
 
 obj-y  += coral.o
-obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o
+obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt_generated.o
index d19447184a6e1ff2faf4200ce792abfa6e5cdb33..fa263b7bf54b886d40e9b805b57f6653b66a09f3 100644 (file)
@@ -3,4 +3,4 @@
 # Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
 
 obj-y  += bayleybay.o
-obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o
+obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt_generated.o
index 1eaf7ca7f8e21a7c600c95be572332b46dd62827..f7f70dfaa77e2e000e471cf8b885c38687ea89f7 100644 (file)
@@ -5,4 +5,4 @@
 #
 
 obj-y  += edison.o
-obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o
+obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt_generated.o
index 4130bb0236566429b280b3dd91b50128fbaaee0d..7d5f4df0f92d1f8734024825e710474970ab521c 100644 (file)
@@ -3,4 +3,4 @@
 # Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
 
 obj-y  += galileo.o
-obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o
+obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt_generated.o
index d339b5ad0a54a5ea134228df5da5f25adb17506e..a20322a1a16782c45d046e435498460b6c0f941b 100644 (file)
@@ -3,4 +3,4 @@
 # Copyright (C) 2015, Google, Inc
 
 obj-y  += minnowmax.o
-obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o
+obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt_generated.o
index 93cb09ac6174cc76da0a7b68782a88163d26e7aa..c14da10de78004822409d7d8eebac98c10a69e3d 100644 (file)
@@ -456,8 +456,8 @@ CFLAGS_REMOVE_efi_freestanding.o := $(LTO_CFLAGS)
 # which is pure ASL code. The Intel ASL (ACPI (Advanced Configuration and Power
 # Interface) Source Language compiler (iasl) then converts this ASL code into a
 # C file containing the hex data to build into U-Boot. This file is called
-# dsdt.hex (despite us setting the prefix to .../dsdt.asl.tmp) so must be
-# renamed to dsdt.c for consumption by the build system.
+# dsdt_generated.hex (despite us setting the prefix to .../dsdt_generated.asl.tmp)
+# so must be renamed to dsdt_generated.c for consumption by the build system.
 ASL_TMP = $(patsubst %.c,%.asl.tmp,$@)
 
 quiet_cmd_acpi_c_asl= ASL     $<
@@ -468,9 +468,9 @@ cmd_acpi_c_asl=         \
                $(if $(KBUILD_VERBOSE:1=), >/dev/null) && \
        mv $(patsubst %.c,%.hex,$@) $@
 
-$(obj)/dsdt.c:    $(src)/dsdt.asl
+$(obj)/dsdt_generated.c:    $(src)/dsdt.asl
        $(call cmd,acpi_c_asl)
-       $(Q)sed -i -e "s,dsdt_aml_code,AmlCode," $@
+       $(Q)sed -i -e "s,dsdt_generated_aml_code,AmlCode," $@
 
 # Bzip2
 # ---------------------------------------------------------------------------