diff options
author | Hector Palacios <hector.palacios@digi.com> | 2016-03-03 17:29:54 +0100 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2016-04-19 15:06:34 -0300 |
commit | 7c3ae4e6113e822c1d857385254f540020f8524a (patch) | |
tree | be627cdc133ae4322cd770e3f33b0bd205de05b3 /recipes-devtools | |
parent | 161f0c73e647bc09c722d9d4644f44a488d5f605 (diff) | |
download | meta-freescale-7c3ae4e6113e822c1d857385254f540020f8524a.tar.gz |
imx-usb-loader: add recipe
This includes into the SDK Boundary Devices i.MX/Vybrid recovery
utility, a host tool which allows to boot an image via USB in
serial downloader mode.
It currently supports i.MX5, i.MX6, i.MX7, and Vybrid families.
Signed-off-by: Hector Palacios <hector.palacios@digi.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-devtools')
-rw-r--r-- | recipes-devtools/imx-usb-loader/imx-usb-loader_git.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes-devtools/imx-usb-loader/imx-usb-loader_git.bb b/recipes-devtools/imx-usb-loader/imx-usb-loader_git.bb new file mode 100644 index 00000000..6753f532 --- /dev/null +++ b/recipes-devtools/imx-usb-loader/imx-usb-loader_git.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | DESCRIPTION = "i.MX/Vybrid recovery utility" | ||
2 | SECTION = "devel" | ||
3 | LICENSE = "LGPLv2.1" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | ||
5 | |||
6 | DEPENDS = "libusb" | ||
7 | |||
8 | SRCREV = "349286e25c3fd9b2d31b31e962340123bbc62d44" | ||
9 | SRC_URI = "git://github.com/boundarydevices/imx_usb_loader.git;protocol=http" | ||
10 | |||
11 | PV = "1.0+${SRCPV}" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | do_install () { | ||
16 | oe_runmake DESTDIR=${D} install | ||
17 | } | ||
18 | |||
19 | BBCLASSEXTEND = "native nativesdk" | ||