diff options
author | Denys Dmytriyenko <denys@ti.com> | 2016-09-13 04:40:59 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2016-09-12 22:26:38 -0400 |
commit | f0ae7e1c366d6e20e0ad228aa965fc294ec35ccd (patch) | |
tree | 1a7d39e2cf09701ad4ac09160bcafcdb1143d04d /recipes-bsp | |
parent | c554a8735a392cf5f7d9370d62391c3d335e1220 (diff) | |
download | meta-ti-f0ae7e1c366d6e20e0ad228aa965fc294ec35ccd.tar.gz |
serdes-fw: update to 3.3.0.2c version
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp')
-rw-r--r-- | recipes-bsp/serdes-fw/serdes-fw_git.bb | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/recipes-bsp/serdes-fw/serdes-fw_git.bb b/recipes-bsp/serdes-fw/serdes-fw_git.bb index 2564cec7..69e1e979 100644 --- a/recipes-bsp/serdes-fw/serdes-fw_git.bb +++ b/recipes-bsp/serdes-fw/serdes-fw_git.bb | |||
@@ -3,8 +3,7 @@ DESCRIPTION = "SerDes firmware for Keystone PCIe and 1/10GigE" | |||
3 | LICENSE = "TI-TFL" | 3 | LICENSE = "TI-TFL" |
4 | LIC_FILES_CHKSUM = "file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c" | 4 | LIC_FILES_CHKSUM = "file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c" |
5 | 5 | ||
6 | PV = "1.0.0" | 6 | PV = "3.3.0.2c" |
7 | PR = "r0" | ||
8 | 7 | ||
9 | CLEANBROKEN = "1" | 8 | CLEANBROKEN = "1" |
10 | 9 | ||
@@ -12,25 +11,19 @@ COMPATIBLE_MACHINE = "keystone" | |||
12 | 11 | ||
13 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 12 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
14 | 13 | ||
15 | SRCREV = "8756d98081e1011a1334b0769f13ffb31d3b41bd" | 14 | SRCREV = "8d861bd8f8f792df60b6873989ff208766fbebae" |
16 | BRANCH ?= "ti-linux-firmware-4.1.y" | 15 | BRANCH ?= "ti-linux-firmware-4.1.y" |
17 | 16 | ||
18 | SRC_URI = "git://git.ti.com/processor-firmware/ti-linux-firmware.git;protocol=git;branch=${BRANCH}" | 17 | SRC_URI = "git://git.ti.com/processor-firmware/ti-linux-firmware.git;protocol=git;branch=${BRANCH}" |
19 | 18 | ||
20 | S = "${WORKDIR}/git" | 19 | S = "${WORKDIR}/git" |
21 | ORIGINPCIE = "ks2_pcie_serdes_1.0.0.bin" | 20 | TARGET = "ks2_pcie_serdes.bin ks2_gbe_serdes.bin ks2_xgbe_serdes.bin" |
22 | ORIGINGBE = "ks2_gbe_serdes_1.0.0.bin" | ||
23 | ORIGINXGBE = "ks2_xgbe_serdes_1.0.0.bin" | ||
24 | |||
25 | TARGETPCIE = "ks2_pcie_serdes.bin" | ||
26 | TARGETGBE = "ks2_gbe_serdes.bin" | ||
27 | TARGETXGBE = "ks2_xgbe_serdes.bin" | ||
28 | 21 | ||
29 | do_install() { | 22 | do_install() { |
30 | install -d ${D}${base_libdir}/firmware | 23 | install -d ${D}${base_libdir}/firmware |
31 | install -m 0644 ${S}/ti-keystone/${ORIGINPCIE} ${D}${base_libdir}/firmware/${TARGETPCIE} | 24 | for f in ${TARGET}; do |
32 | install -m 0644 ${S}/ti-keystone/${ORIGINGBE} ${D}${base_libdir}/firmware/${TARGETGBE} | 25 | install -m 0644 ${S}/ti-keystone/$f ${D}${base_libdir}/firmware/$f |
33 | install -m 0644 ${S}/ti-keystone/${ORIGINXGBE} ${D}${base_libdir}/firmware/${TARGETXGBE} | 26 | done |
34 | } | 27 | } |
35 | 28 | ||
36 | FILES_${PN} = "${base_libdir}/firmware" | 29 | FILES_${PN} = "${base_libdir}/firmware" |