[PATCH 3/3] binman: cst: Build from source

Simon Glass sjg at chromium.org
Tue Feb 25 22:27:12 CET 2025


Hi Leonard,

On Tue, 25 Feb 2025 at 05:11, Leonard Anderweit <l.anderweit at phytec.de> wrote:
>
> Build the imx code singing tool from source instead of relying on the
> distro to provide the tool.
> Use the debian/unstable branch because the default branch is outdated.
> The binary is supposed to be build with docker, work around that by selecting
> the correct Makefile directly.
>
> Signed-off-by: Leonard Anderweit <l.anderweit at phytec.de>
> ---
>  tools/binman/btool/cst.py | 29 +++++++++++++----------------
>  1 file changed, 13 insertions(+), 16 deletions(-)
>

Thank you for doing this!

If you have any more info about the tool, please add it to the comment
at the top of Bintoolcst and regenerate the .rst with 'binman
bintool-docs'

> diff --git a/tools/binman/btool/cst.py b/tools/binman/btool/cst.py
> index 30e78bdbbd9d..0a23d12d3e2f 100644
> --- a/tools/binman/btool/cst.py
> +++ b/tools/binman/btool/cst.py
> @@ -29,20 +29,17 @@ class Bintoolcst(bintool.Bintool):
>          return self.run_cmd(*args)
>
>      def fetch(self, method):
> -        """Fetch handler for cst
> -
> -        This installs cst using the apt utility.
> -
> -        Args:
> -            method (FETCH_...): Method to use
> -
> -        Returns:
> -            True if the file was fetched and now installed, None if a method
> -            other than FETCH_BIN was requested
> -
> -        Raises:
> -            Valuerror: Fetching could not be completed
> -        """
> -        if method != bintool.FETCH_BIN:
> +        """Build cst from git"""
> +        if method != bintool.FETCH_BUILD:
>              return None
> -        return self.apt_install('imx-code-signing-tool')
> +
> +        from platform import architecture
> +        arch = 'linux64' if architecture()[0] == '64bit' else 'linux32'
> +        result = self.build_from_git(
> +            'https://gitlab.apertis.org/pkg/imx-code-signing-tool',
> +            ['all'],
> +            f'code/obj.{arch}/cst',
> +            flags=[f'OSTYPE={arch}', 'ENCRYPTION=yes'],
> +            git_branch='debian/unstable',
> +            make_path=f'code/obj.{arch}/')
> +        return result
> --
> 2.34.1
>

Regards,
SImon


More information about the U-Boot mailing list