* [PATCH] netcp-sa-fw: add initial version 1.0.0
@ 2016-01-26 21:37 Denys Dmytriyenko
2016-01-27 1:05 ` Karicheri, Muralidharan
0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2016-01-26 21:37 UTC (permalink / raw)
To: meta-ti
From: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
create mode 100644 recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb
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 0000000..5f07b92
--- /dev/null
+++ b/recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb
@@ -0,0 +1,29 @@
+DESCRIPTION = "NETCP SA firmware for Keystone"
+
+LICENSE = "TI-TFL"
+LIC_FILES_CHKSUM = "file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c"
+
+PV = "1.0.0"
+PR = "r0"
+
+CLEANBROKEN = "1"
+
+COMPATIBLE_MACHINE = "keystone"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+SRCREV = "588f602a21c62f90b1f4318b881c80a1e711317a"
+BRANCH ?= "ti-linux-firmware-4.1.y"
+
+SRC_URI = "git://git.ti.com/processor-firmware/ti-linux-firmware.git;protocol=git;branch=${BRANCH}"
+
+S = "${WORKDIR}/git"
+
+TARGET = "sa_mci.fw"
+
+do_install() {
+ install -d ${D}${base_libdir}/firmware
+ install -m 0644 ${S}/ti-keystone/${TARGET} ${D}${base_libdir}/firmware/${TARGET}
+}
+
+FILES_${PN} = "${base_libdir}/firmware"
--
2.2.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] netcp-sa-fw: add initial version 1.0.0
2016-01-26 21:37 [PATCH] netcp-sa-fw: add initial version 1.0.0 Denys Dmytriyenko
@ 2016-01-27 1:05 ` Karicheri, Muralidharan
2016-01-27 19:27 ` Denys Dmytriyenko
0 siblings, 1 reply; 3+ messages in thread
From: Karicheri, Muralidharan @ 2016-01-27 1:05 UTC (permalink / raw)
To: Denys Dmytriyenko, meta-ti@yoctoproject.org, Andrianov, Vitaly,
Ruei, Eric
Eric, Vitaly,
I think this can cause some potential confusion to customers. Isn't there a SA PDSP firmware as well? If yes, we will have to rename the firmware.
This is not a comment against the recipe itself, but want to avoid any future confusion.
Murali Karicheri
Linux Kernel, Software Development
>-----Original Message-----
>From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-bounces@yoctoproject.org] On
>Behalf Of Denys Dmytriyenko
>Sent: Tuesday, January 26, 2016 4:37 PM
>To: meta-ti@yoctoproject.org
>Subject: [meta-ti] [PATCH] netcp-sa-fw: add initial version 1.0.0
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb | 29
>+++++++++++++++++++++++++++++
> 1 file changed, 29 insertions(+)
> create mode 100644 recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb
>
>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 0000000..5f07b92
>--- /dev/null
>+++ b/recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb
>@@ -0,0 +1,29 @@
>+DESCRIPTION = "NETCP SA firmware for Keystone"
>+
>+LICENSE = "TI-TFL"
>+LIC_FILES_CHKSUM = "file://LICENCE.ti-
>keystone;md5=3a86335d32864b0bef996bee26cc0f2c"
>+
>+PV = "1.0.0"
>+PR = "r0"
>+
>+CLEANBROKEN = "1"
>+
>+COMPATIBLE_MACHINE = "keystone"
>+
>+PACKAGE_ARCH = "${MACHINE_ARCH}"
>+
>+SRCREV = "588f602a21c62f90b1f4318b881c80a1e711317a"
>+BRANCH ?= "ti-linux-firmware-4.1.y"
>+
>+SRC_URI = "git://git.ti.com/processor-firmware/ti-linux-
>firmware.git;protocol=git;branch=${BRANCH}"
>+
>+S = "${WORKDIR}/git"
>+
>+TARGET = "sa_mci.fw"
>+
>+do_install() {
>+ install -d ${D}${base_libdir}/firmware
>+ install -m 0644 ${S}/ti-keystone/${TARGET}
>${D}${base_libdir}/firmware/${TARGET}
>+}
>+
>+FILES_${PN} = "${base_libdir}/firmware"
>--
>2.2.0
>
>--
>_______________________________________________
>meta-ti mailing list
>meta-ti@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] netcp-sa-fw: add initial version 1.0.0
2016-01-27 1:05 ` Karicheri, Muralidharan
@ 2016-01-27 19:27 ` Denys Dmytriyenko
0 siblings, 0 replies; 3+ messages in thread
From: Denys Dmytriyenko @ 2016-01-27 19:27 UTC (permalink / raw)
To: Karicheri, Muralidharan; +Cc: meta-ti@yoctoproject.org, Andrianov, Vitaly
On Wed, Jan 27, 2016 at 01:05:25AM +0000, Karicheri, Muralidharan wrote:
> Eric, Vitaly,
>
> I think this can cause some potential confusion to customers. Isn't there a
> SA PDSP firmware as well? If yes, we will have to rename the firmware.
> This is not a comment against the recipe itself, but want to avoid any
> future confusion.
Murali,
Thanks! Any agreement on the FW name? If you decide to rename it, please
submit corresponding patch against linux-firmware repo first, as well as the
driver changes, of course.
--
Denys
> >-----Original Message-----
> >From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-bounces@yoctoproject.org] On
> >Behalf Of Denys Dmytriyenko
> >Sent: Tuesday, January 26, 2016 4:37 PM
> >To: meta-ti@yoctoproject.org
> >Subject: [meta-ti] [PATCH] netcp-sa-fw: add initial version 1.0.0
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb | 29
> >+++++++++++++++++++++++++++++
> > 1 file changed, 29 insertions(+)
> > create mode 100644 recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb
> >
> >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 0000000..5f07b92
> >--- /dev/null
> >+++ b/recipes-bsp/netcp-sa-fw/netcp-sa-fw_git.bb
> >@@ -0,0 +1,29 @@
> >+DESCRIPTION = "NETCP SA firmware for Keystone"
> >+
> >+LICENSE = "TI-TFL"
> >+LIC_FILES_CHKSUM = "file://LICENCE.ti-
> >keystone;md5=3a86335d32864b0bef996bee26cc0f2c"
> >+
> >+PV = "1.0.0"
> >+PR = "r0"
> >+
> >+CLEANBROKEN = "1"
> >+
> >+COMPATIBLE_MACHINE = "keystone"
> >+
> >+PACKAGE_ARCH = "${MACHINE_ARCH}"
> >+
> >+SRCREV = "588f602a21c62f90b1f4318b881c80a1e711317a"
> >+BRANCH ?= "ti-linux-firmware-4.1.y"
> >+
> >+SRC_URI = "git://git.ti.com/processor-firmware/ti-linux-
> >firmware.git;protocol=git;branch=${BRANCH}"
> >+
> >+S = "${WORKDIR}/git"
> >+
> >+TARGET = "sa_mci.fw"
> >+
> >+do_install() {
> >+ install -d ${D}${base_libdir}/firmware
> >+ install -m 0644 ${S}/ti-keystone/${TARGET}
> >${D}${base_libdir}/firmware/${TARGET}
> >+}
> >+
> >+FILES_${PN} = "${base_libdir}/firmware"
> >--
> >2.2.0
> >
> >--
> >_______________________________________________
> >meta-ti mailing list
> >meta-ti@yoctoproject.org
> >https://lists.yoctoproject.org/listinfo/meta-ti
> --
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-01-27 19:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-26 21:37 [PATCH] netcp-sa-fw: add initial version 1.0.0 Denys Dmytriyenko
2016-01-27 1:05 ` Karicheri, Muralidharan
2016-01-27 19:27 ` Denys Dmytriyenko
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.