[PATCH 14/35] common: Drop CONFIG_HAS_POST

Simon Glass sjg at chromium.org
Thu Dec 12 01:47:33 CET 2019


This only exists to control whether the post/ directory is build. It is
just as easy to check this in the Makefile. Remove CONFIG_HAS_POST and use
an ifdef in the Makefile instead.

Signed-off-by: Simon Glass <sjg at chromium.org>
---

 Makefile         | 4 +++-
 include/common.h | 4 ----
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index 0766f78dcb..6b7d80139e 100644
--- a/Makefile
+++ b/Makefile
@@ -762,7 +762,9 @@ libs-y += cmd/
 libs-y += common/
 libs-y += env/
 libs-$(CONFIG_API) += api/
-libs-$(CONFIG_HAS_POST) += post/
+ifdef CONFIG_POST
+libs-y += post/
+endif
 libs-$(CONFIG_UNIT_TEST) += test/ test/dm/
 libs-$(CONFIG_UT_ENV) += test/env/
 libs-$(CONFIG_UT_OPTEE) += test/optee/
diff --git a/include/common.h b/include/common.h
index 1fba17b0f7..a102f9deff 100644
--- a/include/common.h
+++ b/include/common.h
@@ -123,10 +123,6 @@ int get_serial_clock(void);
 
 /* Put only stuff here that the assembler can digest */
 
-#ifdef CONFIG_POST
-#define CONFIG_HAS_POST
-#endif
-
 #define ROUND(a,b)		(((a) + (b) - 1) & ~((b) - 1))
 
 /*
-- 
2.24.0.525.g8f36a354ae-goog



More information about the U-Boot mailing list