* [Buildroot] [PATCH 0/2] imx-usb-loader: add i.MX8M support
@ 2018-06-12 15:06 Gary Bisson
2018-06-12 15:06 ` [Buildroot] [PATCH 1/2] imx-usb-loader: bump revision to e539461 Gary Bisson
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Gary Bisson @ 2018-06-12 15:06 UTC (permalink / raw)
To: buildroot
Hi all,
This series bumps the version of imx-usb-loader so that it can be used
on latest i.MX8MQ processors from NXP.
Let me know if you have any question.
Regards,
Gary
Gary Bisson (2):
imx-usb-loader: bump revision to e539461
imx-usb-loader: enable package for 64-bit ARM platforms
package/imx-usb-loader/Config.in.host | 4 ++--
package/imx-usb-loader/imx-usb-loader.hash | 2 +-
package/imx-usb-loader/imx-usb-loader.mk | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
--
2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread* [Buildroot] [PATCH 1/2] imx-usb-loader: bump revision to e539461
2018-06-12 15:06 [Buildroot] [PATCH 0/2] imx-usb-loader: add i.MX8M support Gary Bisson
@ 2018-06-12 15:06 ` Gary Bisson
2018-06-12 15:06 ` [Buildroot] [PATCH 2/2] imx-usb-loader: enable package for 64-bit ARM platforms Gary Bisson
2018-06-13 20:52 ` [Buildroot] [PATCH 0/2] imx-usb-loader: add i.MX8M support Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Gary Bisson @ 2018-06-12 15:06 UTC (permalink / raw)
To: buildroot
This latest revision supports starting i.MX8MQ via USB recovery mode.
Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
---
package/imx-usb-loader/imx-usb-loader.hash | 2 +-
package/imx-usb-loader/imx-usb-loader.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/imx-usb-loader/imx-usb-loader.hash b/package/imx-usb-loader/imx-usb-loader.hash
index e246ff85f2..8f59a3888b 100644
--- a/package/imx-usb-loader/imx-usb-loader.hash
+++ b/package/imx-usb-loader/imx-usb-loader.hash
@@ -1,2 +1,2 @@
# locally computed
-sha256 717b64cec31f7e1167d4a31e4f511eea97ab80039dd435b7b183c6f41352213a imx-usb-loader-7e77787c83288a421080a9bf2f67063931f561be.tar.gz
+sha256 263dba6331206816890eaed0de7b0aa748c6e5300982fe6f31dcfe0df383ad62 imx-usb-loader-e5394615dd413c3823d5bd1de340933e16a8c07c.tar.gz
diff --git a/package/imx-usb-loader/imx-usb-loader.mk b/package/imx-usb-loader/imx-usb-loader.mk
index 01a654e6cf..f0db57faac 100644
--- a/package/imx-usb-loader/imx-usb-loader.mk
+++ b/package/imx-usb-loader/imx-usb-loader.mk
@@ -4,7 +4,7 @@
#
################################################################################
-IMX_USB_LOADER_VERSION = 7e77787c83288a421080a9bf2f67063931f561be
+IMX_USB_LOADER_VERSION = e5394615dd413c3823d5bd1de340933e16a8c07c
IMX_USB_LOADER_SITE = $(call github,boundarydevices,imx_usb_loader,$(IMX_USB_LOADER_VERSION))
IMX_USB_LOADER_LICENSE = LGPL-2.1+
IMX_USB_LOADER_LICENSE_FILES = COPYING
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] imx-usb-loader: enable package for 64-bit ARM platforms
2018-06-12 15:06 [Buildroot] [PATCH 0/2] imx-usb-loader: add i.MX8M support Gary Bisson
2018-06-12 15:06 ` [Buildroot] [PATCH 1/2] imx-usb-loader: bump revision to e539461 Gary Bisson
@ 2018-06-12 15:06 ` Gary Bisson
2018-06-13 20:52 ` [Buildroot] [PATCH 0/2] imx-usb-loader: add i.MX8M support Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Gary Bisson @ 2018-06-12 15:06 UTC (permalink / raw)
To: buildroot
Now that it works for i.MX8MQ processors (tested on Nitrogen8M).
Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
---
package/imx-usb-loader/Config.in.host | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/imx-usb-loader/Config.in.host b/package/imx-usb-loader/Config.in.host
index a4a0f88531..04bd4cc018 100644
--- a/package/imx-usb-loader/Config.in.host
+++ b/package/imx-usb-loader/Config.in.host
@@ -1,9 +1,9 @@
config BR2_PACKAGE_HOST_IMX_USB_LOADER
bool "host imx-usb-loader"
- depends on BR2_arm
+ depends on BR2_arm || BR2_aarch64
help
This package contains tools to download and execute code
- on Freescale i.MX5/i.MX6 and Vybrid SoCs through the
+ on Freescale i.MX5x/6x/7x/8x and Vybrid SoCs through the
Serial Download Protocol.
https://github.com/boundarydevices/imx_usb_loader
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 0/2] imx-usb-loader: add i.MX8M support
2018-06-12 15:06 [Buildroot] [PATCH 0/2] imx-usb-loader: add i.MX8M support Gary Bisson
2018-06-12 15:06 ` [Buildroot] [PATCH 1/2] imx-usb-loader: bump revision to e539461 Gary Bisson
2018-06-12 15:06 ` [Buildroot] [PATCH 2/2] imx-usb-loader: enable package for 64-bit ARM platforms Gary Bisson
@ 2018-06-13 20:52 ` Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2018-06-13 20:52 UTC (permalink / raw)
To: buildroot
Hello,
On Tue, 12 Jun 2018 17:06:33 +0200, Gary Bisson wrote:
> Gary Bisson (2):
> imx-usb-loader: bump revision to e539461
> imx-usb-loader: enable package for 64-bit ARM platforms
Both applied. Thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-06-13 20:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-12 15:06 [Buildroot] [PATCH 0/2] imx-usb-loader: add i.MX8M support Gary Bisson
2018-06-12 15:06 ` [Buildroot] [PATCH 1/2] imx-usb-loader: bump revision to e539461 Gary Bisson
2018-06-12 15:06 ` [Buildroot] [PATCH 2/2] imx-usb-loader: enable package for 64-bit ARM platforms Gary Bisson
2018-06-13 20:52 ` [Buildroot] [PATCH 0/2] imx-usb-loader: add i.MX8M support Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox