[U-Boot] [PATCH v2] cmd: fsfitxtract: Extract a part of a FIT multi-image stored on a filesystem

2017-05-21 Thread Alexey Ignatov
obust * Improved code readability v1: * First submission to maillist Signed-off-by: Alexey Ignatov --- cmd/Kconfig | 7 ++ cmd/ximg.c | 356 2 files changed, 363 insertions(+) diff --git a/cmd/Kconfig b/cmd/Kconfig

[U-Boot] [PATCH 1/2] cmd/imxtract: Move decompression part to separate function

2017-05-20 Thread Alexey Ignatov
Signed-off-by: Alexey Ignatov --- cmd/ximg.c | 142 + 1 file changed, 76 insertions(+), 66 deletions(-) diff --git a/cmd/ximg.c b/cmd/ximg.c index d033c15b62..73a571b52b 100644 --- a/cmd/ximg.c +++ b/cmd/ximg.c @@ -28,6 +28,81

[U-Boot] [PATCH 2/2] cmd: fsfitxtract: Extract a part of a FIT multi-image stored on a filesystem

2017-05-20 Thread Alexey Ignatov
until requested image is found or total read size limit exceeded. Signed-off-by: Alexey Ignatov --- cmd/Kconfig | 7 ++ cmd/ximg.c | 226 2 files changed, 233 insertions(+) diff --git a/cmd/Kconfig b/cmd/Kconfig index 2e4d2334a6..02b83

[U-Boot] [PATCH] arm: dts: imx: add aliases for usbotg nodes

2017-04-24 Thread Alexey Ignatov
Aliases must be present for USB gadget with DM_USB. Without this, usb_setup_ehci_gadget() fails because it can't find required devices in UCLASS_USB. Signed-off-by: Alexey Ignatov --- arch/arm/dts/imx6qdl.dtsi | 1 + arch/arm/dts/imx6sll.dtsi | 2 ++ arch/arm/dts/imx6sx.dtsi | 2 ++ arc

[U-Boot] [PATCH v4] ARM: mxs: tools: Add support for boot progress display flag

2014-10-11 Thread Alexey Ignatov
mkimage -T mxs now support new flag in config file: DISPLAYPROGRESS - makes boot process print HTLLC characters for each BootROM instruction. Signed-off-by: Alexey Ignatov --- arch/arm/cpu/arm926ejs/mxs/mxsimage-signed.cfg | 1 + arch/arm/cpu/arm926ejs/mxs/mxsimage.mx23.cfg | 1 + arch/arm

Re: [U-Boot] [PATCH] ARM: mxs: tools: Add support for verbose and silent boot progress flags

2014-10-08 Thread Alexey Ignatov
2014-10-09 2:10 GMT+04:00 Marek Vasut : > On Wednesday, October 08, 2014 at 10:49:38 PM, Alexey Ignatov wrote: >> mkimage -T mxs now support new flags in config file: >> NODISPLAYPROGRESS - makes boot silent > Please make this the other way -- that is, add flag to make the dis

[U-Boot] [PATCH v3] ARM: mxs: tools: Add support for boot progress display flag

2014-10-08 Thread Alexey Ignatov
mkimage -T mxs now support new flag in config file: DISPLAYPROGRESS - makes boot process print HTLLC characters for each BootROM instruction. Signed-off-by: Alexey Ignatov --- arch/arm/cpu/arm926ejs/mxs/mxsimage-signed.cfg | 1 + arch/arm/cpu/arm926ejs/mxs/mxsimage.mx23.cfg | 1 + arch/arm

Re: [U-Boot] [PATCH v3] ARM: mxs: tools: Add support for boot progress display flag

2014-10-08 Thread Alexey Ignatov
Sorry, forgot to add changelog. v1: initial version v2: contains an error, don't use it v3: removed VERBOSEPROGRESS flag, added DISPLAYPROGRESS flag to default mkimage configs, added documentation ___ U-Boot mailing list U-Boot@lists.denx.de http://lists

[U-Boot] [PATCH] ARM: mxs: tools: Add support for verbose and silent boot progress flags

2014-10-08 Thread Alexey Ignatov
mkimage -T mxs now support new flags in config file: NODISPLAYPROGRESS - makes boot silent VERBOSEPROGRESS - makes boot progress display more verbose Signed-off-by: Alexey Ignatov --- tools/mxsimage.c | 41 ++--- tools/mxsimage.h | 6 +- 2 files changed

[U-Boot] [PATCH] mxs: add watchdog

2014-10-07 Thread Alexey Ignatov
Use RTC watchdog feature as hardware watchdog. Signed-off-by: Alexey Ignatov --- drivers/watchdog/Makefile | 1 + drivers/watchdog/mxsrtc_wdt.c | 23 +++ include/configs/mxs.h | 4 3 files changed, 28 insertions(+) create mode 100644 drivers/watchdog

[U-Boot] [PATCH] kmake: include DTB section into u-boot.bin if CONFIG_OF_EMBED enabled

2014-07-06 Thread Alexey Ignatov
Fixes a bug when objcopy doesn't put .dtb.init.rodata section to resulting u-boot.bin, so u-boot was unable to find embedded DTB. --- arch/arm/config.mk | 4 1 file changed, 4 insertions(+) diff --git a/arch/arm/config.mk b/arch/arm/config.mk index 66ecc2e..5fa1825 100644 --- a/arch/arm/conf