diff options
author | Sam Protsenko | 2018-08-16 23:34:13 +0300 |
---|---|---|
committer | Tom Rini | 2018-08-20 07:21:29 -0400 |
commit | d03e76af5ce343d9bae253b7604b2d9334d40a46 (patch) | |
tree | a32e174714c081efd4c2ffa612a48dc1f86fb83e /common | |
parent | c04473345712ddb5484000c04d76218f258542df (diff) |
cmd: Add dtimg command
dtimg command allows user to work with Android DTB/DTBO image format.
Such as, getting the address of desired DTB/DTBO file, printing the dump
of the image in U-Boot shell, etc.
This command is needed to provide Android boot with new Android DT image
format further.
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index 7100541ece0..7473b850115 100644 --- a/common/Makefile +++ b/common/Makefile @@ -108,6 +108,8 @@ obj-$(CONFIG_IO_TRACE) += iotrace.o obj-y += memsize.o obj-y += stdio.o +obj-$(CONFIG_CMD_DTIMG) += image-android-dt.o + ifdef CONFIG_CMD_EEPROM_LAYOUT obj-y += eeprom/eeprom_field.o eeprom/eeprom_layout.o endif |