diff options
author | Denys Dmytriyenko <denys@ti.com> | 2018-06-27 23:03:31 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2018-06-28 15:42:44 +0000 |
commit | d34f812df3d471e4f4dd01d6c67d5621d2bbbfbb (patch) | |
tree | 4151a8439a995cd67599fb557f1931ca16ab49b8 /recipes-bsp/prueth-fw | |
parent | 706b82ee26fda34f470dbd76ac1128b91f810885 (diff) | |
download | meta-ti-d34f812df3d471e4f4dd01d6c67d5621d2bbbfbb.tar.gz |
prueth-fw-bin: add AM65xx binary FW
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/prueth-fw')
-rw-r--r-- | recipes-bsp/prueth-fw/prueth-fw-bin_git.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes-bsp/prueth-fw/prueth-fw-bin_git.bb b/recipes-bsp/prueth-fw/prueth-fw-bin_git.bb new file mode 100644 index 00000000..b3bbb6bb --- /dev/null +++ b/recipes-bsp/prueth-fw/prueth-fw-bin_git.bb | |||
@@ -0,0 +1,32 @@ | |||
1 | SUMMARY = "PRU Ethernet firmware for AM65xx" | ||
2 | |||
3 | LICENSE = "TI-TFL" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE.ti;md5=b5aebf0668bdf95621259288c4a46d76" | ||
5 | |||
6 | PV = "1.0.0" | ||
7 | |||
8 | CLEANBROKEN = "1" | ||
9 | |||
10 | COMPATIBLE_MACHINE = "am65xx-evm" | ||
11 | |||
12 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
13 | |||
14 | SRCREV = "5d8d6e8b1ec0d95ea29ca5b1c4ca09c14a6b5166" | ||
15 | BRANCH ?= "ti-linux-firmware-4.1.y" | ||
16 | |||
17 | SRC_URI = "git://git.ti.com/processor-firmware/ti-linux-firmware.git;protocol=git;branch=${BRANCH}" | ||
18 | |||
19 | S = "${WORKDIR}/git" | ||
20 | |||
21 | TARGET = "am65x-pru0-prueth-fw.elf am65x-pru1-prueth-fw.elf am65x-rtu0-prueth-fw.elf am65x-rtu1-prueth-fw.elf" | ||
22 | |||
23 | do_install() { | ||
24 | install -d ${D}${base_libdir}/firmware/ti-pruss | ||
25 | for f in ${TARGET}; do | ||
26 | install -m 0644 ${S}/ti-pruss/$f ${D}${base_libdir}/firmware/ti-pruss/$f | ||
27 | done | ||
28 | } | ||
29 | |||
30 | FILES_${PN} = "${base_libdir}/firmware" | ||
31 | |||
32 | INSANE_SKIP_${PN} = "arch" | ||