mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
Adding support for imxtract command
Change-Id: I786b46f256592d8311c2f9e0f9a971b36436a3cb Signed-off-by: Akila N <akilan@codeaurora.org>
This commit is contained in:
parent
e34c2dc55e
commit
39d25efe1d
4 changed files with 4 additions and 1 deletions
|
|
@ -144,7 +144,7 @@ do_imgextract(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (fit_image_check_comp(fit_hdr, noffset, IH_COMP_NONE)
|
||||
if (!fit_image_check_comp(fit_hdr, noffset, IH_COMP_NONE)
|
||||
&& (argc < 4)) {
|
||||
printf("Must specify load address for %s command "
|
||||
"with compressed image\n",
|
||||
|
|
|
|||
|
|
@ -124,6 +124,7 @@ typedef struct {
|
|||
#define CONFIG_INITRD_TAG 1
|
||||
#define CONFIG_SYS_HUSH_PARSER
|
||||
#define CONFIG_SYS_NULLDEV
|
||||
#define CONFIG_CMD_XIMG
|
||||
|
||||
/*
|
||||
* USB Support
|
||||
|
|
|
|||
|
|
@ -153,6 +153,7 @@
|
|||
#define CONFIG_FIT
|
||||
#endif
|
||||
#define CONFIG_SYS_NULLDEV
|
||||
#define CONFIG_CMD_XIMG
|
||||
|
||||
/*Support for Compressed DTB image*/
|
||||
#ifdef CONFIG_FIT
|
||||
|
|
|
|||
|
|
@ -163,6 +163,7 @@ extern loff_t board_env_offset;
|
|||
*/
|
||||
#define CONFIG_OF_LIBFDT 1
|
||||
#define CONFIG_SYS_HUSH_PARSER
|
||||
#define CONFIG_CMD_XIMG
|
||||
|
||||
/* NSS firmware loaded using bootm */
|
||||
#define CONFIG_BOOTCOMMAND "bootipq"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue