diff mbox

[U-Boot,01/15] acpi: Clean IASL generated intermediate files

Message ID 1463906739-934-2-git-send-email-bmeng.cn@gmail.com
State Accepted
Commit 0fbdaa0e079b0bd83caa5a34ac6c52689e369bb3
Delegated to: Bin Meng
Headers show

Commit Message

Bin Meng May 22, 2016, 8:45 a.m. UTC
For boards that support ACPI, there are dsdt.aml, dsdt.asl.tmp and
dsdt.c in the board directory after a successful build. These are
intermediate files generated by IASL, and should be removed during
a 'make clean'.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 Makefile | 1 +
 1 file changed, 1 insertion(+)

Comments

Simon Glass May 23, 2016, 12:19 a.m. UTC | #1
On 22 May 2016 at 02:45, Bin Meng <bmeng.cn@gmail.com> wrote:
> For boards that support ACPI, there are dsdt.aml, dsdt.asl.tmp and
> dsdt.c in the board directory after a successful build. These are
> intermediate files generated by IASL, and should be removed during
> a 'make clean'.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  Makefile | 1 +
>  1 file changed, 1 insertion(+)

Reviewed-by: Simon Glass <sjg@chromium.org>
Bin Meng May 23, 2016, 8:18 a.m. UTC | #2
On Mon, May 23, 2016 at 8:19 AM, Simon Glass <sjg@chromium.org> wrote:
> On 22 May 2016 at 02:45, Bin Meng <bmeng.cn@gmail.com> wrote:
>> For boards that support ACPI, there are dsdt.aml, dsdt.asl.tmp and
>> dsdt.c in the board directory after a successful build. These are
>> intermediate files generated by IASL, and should be removed during
>> a 'make clean'.
>>
>> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
>> ---
>>
>>  Makefile | 1 +
>>  1 file changed, 1 insertion(+)
>
> Reviewed-by: Simon Glass <sjg@chromium.org>

applied to u-boot-x86, thanks!
diff mbox

Patch

diff --git a/Makefile b/Makefile
index 293fad0..9f5f2f0 100644
--- a/Makefile
+++ b/Makefile
@@ -1452,6 +1452,7 @@  clean: $(clean-dirs)
 		-o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
 		-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 '*.gcno' \) -type f -print | xargs rm -f
 
 # mrproper - Delete all generated files, including .config