From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Tue, 22 Dec 2020 19:30:17 -0700 Subject: [PATCH v2 05/18] buildman: Report sizes for TPL also In-Reply-To: <20201223023030.2023937-1-sjg@chromium.org> References: <20201223023030.2023937-1-sjg@chromium.org> Message-ID: <20201223023030.2023937-2-sjg@chromium.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de At present only U-Boot proper and SPL are scanned to obtain size information. Add TPL also, to complete the picture. Signed-off-by: Simon Glass --- (no changes since v1) tools/buildman/builderthread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py index 48fcd6cf7e2..c5bf31e9e11 100644 --- a/tools/buildman/builderthread.py +++ b/tools/buildman/builderthread.py @@ -335,7 +335,7 @@ class BuilderThread(threading.Thread): for var in sorted(env.keys()): print('%s="%s"' % (var, env[var]), file=fd) lines = [] - for fname in ['u-boot', 'spl/u-boot-spl']: + for fname in ['u-boot', 'spl/u-boot-spl', 'tpl/u-boot-tpl']: cmd = ['%snm' % self.toolchain.cross, '--size-sort', fname] nm_result = command.RunPipe([cmd], capture=True, capture_stderr=True, cwd=result.out_dir, -- 2.29.2.729.g45daf8777d-goog