diff options
author | Denys Dmytriyenko <denys@ti.com> | 2016-01-27 03:37:20 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2016-01-27 15:56:59 -0500 |
commit | 548f634c1c6a102561f0f60c7457f629a06fd74c (patch) | |
tree | 1fc58cb7b2980469dcf220210799f274e74fa92e /recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb | |
parent | 354ef246e34ad6bb336f229c8a4b0fe34ce94337 (diff) | |
download | meta-ti-548f634c1c6a102561f0f60c7457f629a06fd74c.tar.gz |
netcp-sa-fw: add initial version 1.0.0
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb')
-rw-r--r-- | recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb b/recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb new file mode 100644 index 00000000..5f07b920 --- /dev/null +++ b/recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | DESCRIPTION = "NETCP SA firmware for Keystone" | ||
2 | |||
3 | LICENSE = "TI-TFL" | ||
4 | LIC_FILES_CHKSUM = "file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c" | ||
5 | |||
6 | PV = "1.0.0" | ||
7 | PR = "r0" | ||
8 | |||
9 | CLEANBROKEN = "1" | ||
10 | |||
11 | COMPATIBLE_MACHINE = "keystone" | ||
12 | |||
13 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
14 | |||
15 | SRCREV = "588f602a21c62f90b1f4318b881c80a1e711317a" | ||
16 | BRANCH ?= "ti-linux-firmware-4.1.y" | ||
17 | |||
18 | SRC_URI = "git://git.ti.com/processor-firmware/ti-linux-firmware.git;protocol=git;branch=${BRANCH}" | ||
19 | |||
20 | S = "${WORKDIR}/git" | ||
21 | |||
22 | TARGET = "sa_mci.fw" | ||
23 | |||
24 | do_install() { | ||
25 | install -d ${D}${base_libdir}/firmware | ||
26 | install -m 0644 ${S}/ti-keystone/${TARGET} ${D}${base_libdir}/firmware/${TARGET} | ||
27 | } | ||
28 | |||
29 | FILES_${PN} = "${base_libdir}/firmware" | ||