Simon Glass | e1b7e4d | 2022-01-09 20:13:56 -0700 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
| 2 | # Copyright 2022 Google LLC |
| 3 | # |
| 4 | """Bintool implementation for mkimage""" |
| 5 | |
| 6 | import re |
| 7 | |
| 8 | from binman import bintool |
| 9 | |
| 10 | class Bintoolmkimage(bintool.Bintool): |
| 11 | """Image generation for U-Boot |
| 12 | |
| 13 | This bintool supports running `mkimage` with some basic parameters as |
| 14 | neeed by binman. |
| 15 | |
| 16 | Normally binman uses the mkimage built by U-Boot. But when run outside the |
| 17 | U-Boot build system, binman can use the version installed in your system. |
| 18 | Support is provided for fetching this on Debian-like systems, using apt. |
| 19 | """ |
| 20 | def __init__(self, name): |
Quentin Schulz | 65e2c14 | 2022-09-01 17:51:39 +0200 | [diff] [blame] | 21 | super().__init__(name, 'Generate image for U-Boot', r'mkimage version (.*)') |
Simon Glass | e1b7e4d | 2022-01-09 20:13:56 -0700 | [diff] [blame] | 22 | |
| 23 | # pylint: disable=R0913 |
| 24 | def run(self, reset_timestamp=False, output_fname=None, external=False, |
Quentin Schulz | 65e2c14 | 2022-09-01 17:51:39 +0200 | [diff] [blame] | 25 | pad=None): |
Simon Glass | e1b7e4d | 2022-01-09 20:13:56 -0700 | [diff] [blame] | 26 | """Run mkimage |
| 27 | |
| 28 | Args: |
| 29 | reset_timestamp: True to update the timestamp in the FIT |
| 30 | output_fname: Output filename to write to |
| 31 | external: True to create an 'external' FIT, where the binaries are |
| 32 | located outside the main data structure |
| 33 | pad: Bytes to use for padding the FIT devicetree output. This allows |
| 34 | other things to be easily added later, if required, such as |
| 35 | signatures |
| 36 | version: True to get the mkimage version |
| 37 | """ |
| 38 | args = [] |
| 39 | if external: |
| 40 | args.append('-E') |
| 41 | if pad: |
| 42 | args += ['-p', f'{pad:x}'] |
| 43 | if reset_timestamp: |
| 44 | args.append('-t') |
| 45 | if output_fname: |
| 46 | args += ['-F', output_fname] |
Simon Glass | e1b7e4d | 2022-01-09 20:13:56 -0700 | [diff] [blame] | 47 | return self.run_cmd(*args) |
| 48 | |
| 49 | def fetch(self, method): |
| 50 | """Fetch handler for mkimage |
| 51 | |
| 52 | This installs mkimage using the apt utility. |
| 53 | |
| 54 | Args: |
| 55 | method (FETCH_...): Method to use |
| 56 | |
| 57 | Returns: |
| 58 | True if the file was fetched and now installed, None if a method |
| 59 | other than FETCH_BIN was requested |
| 60 | |
| 61 | Raises: |
| 62 | Valuerror: Fetching could not be completed |
| 63 | """ |
| 64 | if method != bintool.FETCH_BIN: |
| 65 | return None |
| 66 | return self.apt_install('u-boot-tools') |