diff options
author | Simon Glass | 2022-02-28 12:08:30 -0700 |
---|---|---|
committer | Tom Rini | 2022-04-06 14:03:17 -0400 |
commit | 8e6c12993199f08f61d12cddab7ad3f28db49832 (patch) | |
tree | d8bd8642e9a3c4c379423e39d606362317ca6358 /common/spl | |
parent | a42d2caa634065ed8b0c1143a5f48589450a8528 (diff) |
Add a default for TPL_TEXT_BASE
If this value is not provided it causes a hang in the build. Add a default
value to avoid this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/spl')
-rw-r--r-- | common/spl/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index dc319adeacd..a3a6f31aad6 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -1412,6 +1412,7 @@ config TPL_POWER config TPL_TEXT_BASE hex "Base address for the .text section of the TPL stage" + default 0 help The base address for the .text section of the TPL stage. |