diff options
author | Simon Glass <sjg@chromium.org> | 2024-09-29 19:49:31 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-11 11:44:47 -0600 |
commit | d90b3d95597c183d08a741683ccc2805d3e65a20 (patch) | |
tree | 26ccf19c9f9eacaa4632098ecfd7bff1082b959d | |
parent | c6efb7a42dddd374f934cc217e6c7f5f6cadfa18 (diff) |
scripts: Add some comments about autoconf.mk
Now that the conversion of all CONFIG options to Kconfig is complete,
these files only contain the xPL_BUILD defines. Add a comment to make
this clear.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | scripts/Makefile.xpl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/Makefile.xpl b/scripts/Makefile.xpl index 1868f1beef6..3091311a3d2 100644 --- a/scripts/Makefile.xpl +++ b/scripts/Makefile.xpl @@ -20,6 +20,12 @@ _dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj)) include $(srctree)/scripts/Kbuild.include -include include/config/auto.conf + +# This file contains 0, 1 or 2 lines +# It is empty for U-Boot proper (where $(obj) is empty) +# For any xPL build it contains CONFIG_SPL_BUILD=y +# For TPL builds it has CONFIG_SPL_BUILD=y and CONFIG_TPL_BUILD=y +# For VPL builds it has CONFIG_SPL_BUILD=y and CONFIG_VPL_BUILD=y -include $(obj)/include/autoconf.mk UBOOTINCLUDE := -I$(obj)/include $(UBOOTINCLUDE) |