All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] netapi: Add recipe for NETAPI module
@ 2015-02-24 22:43 Sam Nelson
  2015-02-26 16:57 ` Denys Dmytriyenko
  0 siblings, 1 reply; 3+ messages in thread
From: Sam Nelson @ 2015-02-24 22:43 UTC (permalink / raw)
  To: meta-ti

- Provide TI user space network library and test code
- Supports k2h, k2k, k2l & k2e devices

Signed-off-by: Sam Nelson <sam.nelson@ti.com>

---
Changes from previous patch
- Modifed recipes to use oe_runmake for the applications as well
---
---
 recipes-ti/netapi/netapi-test_git.bb |   49 ++++++++++++++++++++++++++++++++++
 recipes-ti/netapi/netapi.inc         |   16 +++++++++++
 recipes-ti/netapi/netapi_git.bb      |   34 +++++++++++++++++++++++
 3 files changed, 99 insertions(+)
 create mode 100644 recipes-ti/netapi/netapi-test_git.bb
 create mode 100644 recipes-ti/netapi/netapi.inc
 create mode 100644 recipes-ti/netapi/netapi_git.bb

diff --git a/recipes-ti/netapi/netapi-test_git.bb b/recipes-ti/netapi/netapi-test_git.bb
new file mode 100644
index 0000000..9d49c29
--- /dev/null
+++ b/recipes-ti/netapi/netapi-test_git.bb
@@ -0,0 +1,49 @@
+DESCRIPTION = "Provides test and application binaries using NETAPI module"
+COMPATIBLE_MACHINE = "keystone"
+DEPENDS = "netapi ipsecmgr"
+
+include netapi.inc
+
+EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
+
+do_compile () {
+#   Build the netapi binaries
+	for device in ${DEVICELIST}
+	do
+		for choice in ${CHOICELIST}
+		do
+			oe_runmake -f makefile_armv7 tests NETAPI_SRC_DIR=${S} NETAPI_INC_DIR=${BASEDIR} \
+				USEDYNAMIC_LIB="$choice" DEVICE="$device"
+		done
+
+#     Now build the netapi appplications
+		cd ${S}/applications/ipsec_offload/ipsecmgr/build
+		oe_runmake clean NETAPI_SRC_DIR=${S} DEVICE="$device"
+		oe_runmake app NETAPI_SRC_DIR=${S} DEVICE="$device"
+
+		cd ${S}/applications/ipsec_offload/config-app/build
+		oe_runmake clean DEVICE="$device"
+		oe_runmake app DEVICE="$device"
+		cd ${S}
+	done
+}
+
+do_install () {
+	for device in ${DEVICELIST}
+	do
+		oe_runmake -f makefile_armv7 installbin INSTALL_INC_BASE_DIR=${D}/${includedir} \
+			INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} \
+			SYSCONFDIR=${D}${sysconfdir} DEVICE="$device"
+
+		cd ${S}/applications/ipsec_offload/ipsecmgr/build
+		oe_runmake install \
+			INSTALL_BIN_BASE_DIR=${D}${bindir} SYSCONFDIR=${D}${sysconfdir} \
+			DEVICE="$device"
+
+		cd ${S}/applications/ipsec_offload/config-app/build
+		oe_runmake install \
+			INSTALL_BIN_BASE_DIR=${D}${bindir} SYSCONFDIR=${D}${sysconfdir} \
+			DEVICE="$device"
+		cd ${S}
+	done
+}
diff --git a/recipes-ti/netapi/netapi.inc b/recipes-ti/netapi/netapi.inc
new file mode 100644
index 0000000..b8d481a
--- /dev/null
+++ b/recipes-ti/netapi/netapi.inc
@@ -0,0 +1,16 @@
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://${WORKDIR}/git/COPYING.txt;md5=f2b4f162358b1ffaf3f2307287ca2074"
+
+BRANCH = "master"
+SRC_URI = "git://git.ti.com/keystone-rtos/netapi.git;protocol=git;branch=${BRANCH}"
+
+# Below Commit ID corresponds to "DEV.NETAPI.01.01.00.04"
+SRCREV= "dc08af268200908d3d8a456ac852c65c53d2fd12"
+PV = "01.01.00.04"
+
+DEVICELIST = "k2h k2k k2l k2e"
+
+CHOICELIST = "yes no"
+
+BASEDIR = "${WORKDIR}/git"
+S = "${BASEDIR}/ti/runtime/netapi"
diff --git a/recipes-ti/netapi/netapi_git.bb b/recipes-ti/netapi/netapi_git.bb
new file mode 100644
index 0000000..d568cd0
--- /dev/null
+++ b/recipes-ti/netapi/netapi_git.bb
@@ -0,0 +1,34 @@
+DESCRIPTION = "Provides NETAPI module: TI user space network library"
+
+COMPATIBLE_MACHINE = "keystone"
+
+DEPENDS = "common-csl-ip rm-lld qmss-lld cppi-lld sa-lld hplib pktlib nwal-lld"
+
+NAME = "netapi"
+
+include netapi.inc
+
+EXTRA_OEMAKE = "-f makefile_armv7 PDK_INSTALL_PATH=${STAGING_INCDIR}"
+
+do_compile () {
+#   Now build the netapi
+	for device in ${DEVICELIST}
+	do
+		for choice in ${CHOICELIST}
+		do
+			oe_runmake  clean NETAPI_SRC_DIR=${S} NETAPI_INC_DIR=${BASEDIR} \
+				USEDYNAMIC_LIB="$choice" DEVICE="$device"
+			oe_runmake lib NETAPI_SRC_DIR=${S} NETAPI_INC_DIR=${BASEDIR} \
+				USEDYNAMIC_LIB="$choice" DEVICE="$device"
+		done
+	done
+}
+
+do_install () {
+	for device in ${DEVICELIST}
+	do
+		oe_runmake install INSTALL_INC_BASE_DIR=${D}${includedir} \
+			INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} \
+			SYSCONFDIR=${D}${sysconfdir} DEVICE="$device"
+	done
+}
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] netapi: Add recipe for NETAPI module
  2015-02-24 22:43 [PATCH v2] netapi: Add recipe for NETAPI module Sam Nelson
@ 2015-02-26 16:57 ` Denys Dmytriyenko
  2015-02-26 17:57   ` Nelson, Sam
  0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2015-02-26 16:57 UTC (permalink / raw)
  To: Sam Nelson; +Cc: meta-ti

On Tue, Feb 24, 2015 at 05:43:47PM -0500, Sam Nelson wrote:
> - Provide TI user space network library and test code
> - Supports k2h, k2k, k2l & k2e devices
> 
> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> 
> ---
> Changes from previous patch
> - Modifed recipes to use oe_runmake for the applications as well
> ---
> ---
>  recipes-ti/netapi/netapi-test_git.bb |   49 ++++++++++++++++++++++++++++++++++
>  recipes-ti/netapi/netapi.inc         |   16 +++++++++++
>  recipes-ti/netapi/netapi_git.bb      |   34 +++++++++++++++++++++++
>  3 files changed, 99 insertions(+)
>  create mode 100644 recipes-ti/netapi/netapi-test_git.bb
>  create mode 100644 recipes-ti/netapi/netapi.inc
>  create mode 100644 recipes-ti/netapi/netapi_git.bb
> 
> diff --git a/recipes-ti/netapi/netapi-test_git.bb b/recipes-ti/netapi/netapi-test_git.bb
> new file mode 100644
> index 0000000..9d49c29
> --- /dev/null
> +++ b/recipes-ti/netapi/netapi-test_git.bb
> @@ -0,0 +1,49 @@
> +DESCRIPTION = "Provides test and application binaries using NETAPI module"
> +COMPATIBLE_MACHINE = "keystone"
> +DEPENDS = "netapi ipsecmgr"
> +
> +include netapi.inc
> +
> +EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
> +
> +do_compile () {
> +#   Build the netapi binaries
> +	for device in ${DEVICELIST}
> +	do
> +		for choice in ${CHOICELIST}
> +		do
> +			oe_runmake -f makefile_armv7 tests NETAPI_SRC_DIR=${S} NETAPI_INC_DIR=${BASEDIR} \
> +				USEDYNAMIC_LIB="$choice" DEVICE="$device"
> +		done
> +
> +#     Now build the netapi appplications
> +		cd ${S}/applications/ipsec_offload/ipsecmgr/build
> +		oe_runmake clean NETAPI_SRC_DIR=${S} DEVICE="$device"
> +		oe_runmake app NETAPI_SRC_DIR=${S} DEVICE="$device"
> +
> +		cd ${S}/applications/ipsec_offload/config-app/build
> +		oe_runmake clean DEVICE="$device"
> +		oe_runmake app DEVICE="$device"
> +		cd ${S}
> +	done
> +}
> +
> +do_install () {
> +	for device in ${DEVICELIST}
> +	do
> +		oe_runmake -f makefile_armv7 installbin INSTALL_INC_BASE_DIR=${D}/${includedir} \
> +			INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} \
> +			SYSCONFDIR=${D}${sysconfdir} DEVICE="$device"
> +
> +		cd ${S}/applications/ipsec_offload/ipsecmgr/build
> +		oe_runmake install \
> +			INSTALL_BIN_BASE_DIR=${D}${bindir} SYSCONFDIR=${D}${sysconfdir} \
> +			DEVICE="$device"
> +
> +		cd ${S}/applications/ipsec_offload/config-app/build
> +		oe_runmake install \
> +			INSTALL_BIN_BASE_DIR=${D}${bindir} SYSCONFDIR=${D}${sysconfdir} \
> +			DEVICE="$device"
> +		cd ${S}
> +	done
> +}
> diff --git a/recipes-ti/netapi/netapi.inc b/recipes-ti/netapi/netapi.inc
> new file mode 100644
> index 0000000..b8d481a
> --- /dev/null
> +++ b/recipes-ti/netapi/netapi.inc
> @@ -0,0 +1,16 @@
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://${WORKDIR}/git/COPYING.txt;md5=f2b4f162358b1ffaf3f2307287ca2074"
> +
> +BRANCH = "master"
> +SRC_URI = "git://git.ti.com/keystone-rtos/netapi.git;protocol=git;branch=${BRANCH}"
> +
> +# Below Commit ID corresponds to "DEV.NETAPI.01.01.00.04"
> +SRCREV= "dc08af268200908d3d8a456ac852c65c53d2fd12"
> +PV = "01.01.00.04"
> +
> +DEVICELIST = "k2h k2k k2l k2e"
> +
> +CHOICELIST = "yes no"
> +
> +BASEDIR = "${WORKDIR}/git"
> +S = "${BASEDIR}/ti/runtime/netapi"
> diff --git a/recipes-ti/netapi/netapi_git.bb b/recipes-ti/netapi/netapi_git.bb
> new file mode 100644
> index 0000000..d568cd0
> --- /dev/null
> +++ b/recipes-ti/netapi/netapi_git.bb
> @@ -0,0 +1,34 @@
> +DESCRIPTION = "Provides NETAPI module: TI user space network library"
> +
> +COMPATIBLE_MACHINE = "keystone"
> +
> +DEPENDS = "common-csl-ip rm-lld qmss-lld cppi-lld sa-lld hplib pktlib nwal-lld"
> +
> +NAME = "netapi"

Sorry, didn't notice it at first - what is this NAME variable for?


> +include netapi.inc
> +
> +EXTRA_OEMAKE = "-f makefile_armv7 PDK_INSTALL_PATH=${STAGING_INCDIR}"
> +
> +do_compile () {
> +#   Now build the netapi
> +	for device in ${DEVICELIST}
> +	do
> +		for choice in ${CHOICELIST}
> +		do
> +			oe_runmake  clean NETAPI_SRC_DIR=${S} NETAPI_INC_DIR=${BASEDIR} \
> +				USEDYNAMIC_LIB="$choice" DEVICE="$device"
> +			oe_runmake lib NETAPI_SRC_DIR=${S} NETAPI_INC_DIR=${BASEDIR} \
> +				USEDYNAMIC_LIB="$choice" DEVICE="$device"
> +		done
> +	done
> +}
> +
> +do_install () {
> +	for device in ${DEVICELIST}
> +	do
> +		oe_runmake install INSTALL_INC_BASE_DIR=${D}${includedir} \
> +			INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} \
> +			SYSCONFDIR=${D}${sysconfdir} DEVICE="$device"
> +	done
> +}
> -- 
> 1.7.9.5
> 
> -- 
> _______________________________________________
> 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 v2] netapi: Add recipe for NETAPI module
  2015-02-26 16:57 ` Denys Dmytriyenko
@ 2015-02-26 17:57   ` Nelson, Sam
  0 siblings, 0 replies; 3+ messages in thread
From: Nelson, Sam @ 2015-02-26 17:57 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-ti@yoctoproject.org



> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Thursday, February 26, 2015 11:57 AM
> To: Nelson, Sam
> Cc: meta-ti@yoctoproject.org
> Subject: Re: [meta-ti] [PATCH v2] netapi: Add recipe for NETAPI module
> 
> On Tue, Feb 24, 2015 at 05:43:47PM -0500, Sam Nelson wrote:
> > - Provide TI user space network library and test code
> > - Supports k2h, k2k, k2l & k2e devices
> >
> > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> >
> > ---
> > Changes from previous patch
> > - Modifed recipes to use oe_runmake for the applications as well
> > ---
> > ---
> >  recipes-ti/netapi/netapi-test_git.bb |   49
> ++++++++++++++++++++++++++++++++++
> >  recipes-ti/netapi/netapi.inc         |   16 +++++++++++
> >  recipes-ti/netapi/netapi_git.bb      |   34 +++++++++++++++++++++++
> >  3 files changed, 99 insertions(+)
> >  create mode 100644 recipes-ti/netapi/netapi-test_git.bb
> >  create mode 100644 recipes-ti/netapi/netapi.inc
> >  create mode 100644 recipes-ti/netapi/netapi_git.bb
> >
> > diff --git a/recipes-ti/netapi/netapi-test_git.bb b/recipes-ti/netapi/netapi-
> test_git.bb
> > new file mode 100644
> > index 0000000..9d49c29
> > --- /dev/null
> > +++ b/recipes-ti/netapi/netapi-test_git.bb
> > @@ -0,0 +1,49 @@
> > +DESCRIPTION = "Provides test and application binaries using NETAPI
> module"
> > +COMPATIBLE_MACHINE = "keystone"
> > +DEPENDS = "netapi ipsecmgr"
> > +
> > +include netapi.inc
> > +
> > +EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}"
> > +
> > +do_compile () {
> > +#   Build the netapi binaries
> > +	for device in ${DEVICELIST}
> > +	do
> > +		for choice in ${CHOICELIST}
> > +		do
> > +			oe_runmake -f makefile_armv7 tests
> NETAPI_SRC_DIR=${S} NETAPI_INC_DIR=${BASEDIR} \
> > +				USEDYNAMIC_LIB="$choice"
> DEVICE="$device"
> > +		done
> > +
> > +#     Now build the netapi appplications
> > +		cd ${S}/applications/ipsec_offload/ipsecmgr/build
> > +		oe_runmake clean NETAPI_SRC_DIR=${S} DEVICE="$device"
> > +		oe_runmake app NETAPI_SRC_DIR=${S} DEVICE="$device"
> > +
> > +		cd ${S}/applications/ipsec_offload/config-app/build
> > +		oe_runmake clean DEVICE="$device"
> > +		oe_runmake app DEVICE="$device"
> > +		cd ${S}
> > +	done
> > +}
> > +
> > +do_install () {
> > +	for device in ${DEVICELIST}
> > +	do
> > +		oe_runmake -f makefile_armv7 installbin
> INSTALL_INC_BASE_DIR=${D}/${includedir} \
> > +			INSTALL_LIB_BASE_DIR=${D}${libdir}
> INSTALL_BIN_BASE_DIR=${D}${bindir} \
> > +			SYSCONFDIR=${D}${sysconfdir} DEVICE="$device"
> > +
> > +		cd ${S}/applications/ipsec_offload/ipsecmgr/build
> > +		oe_runmake install \
> > +			INSTALL_BIN_BASE_DIR=${D}${bindir}
> SYSCONFDIR=${D}${sysconfdir} \
> > +			DEVICE="$device"
> > +
> > +		cd ${S}/applications/ipsec_offload/config-app/build
> > +		oe_runmake install \
> > +			INSTALL_BIN_BASE_DIR=${D}${bindir}
> SYSCONFDIR=${D}${sysconfdir} \
> > +			DEVICE="$device"
> > +		cd ${S}
> > +	done
> > +}
> > diff --git a/recipes-ti/netapi/netapi.inc b/recipes-ti/netapi/netapi.inc
> > new file mode 100644
> > index 0000000..b8d481a
> > --- /dev/null
> > +++ b/recipes-ti/netapi/netapi.inc
> > @@ -0,0 +1,16 @@
> > +LICENSE = "BSD-3-Clause"
> > +LIC_FILES_CHKSUM =
> "file://${WORKDIR}/git/COPYING.txt;md5=f2b4f162358b1ffaf3f2307287ca207
> 4"
> > +
> > +BRANCH = "master"
> > +SRC_URI = "git://git.ti.com/keystone-
> rtos/netapi.git;protocol=git;branch=${BRANCH}"
> > +
> > +# Below Commit ID corresponds to "DEV.NETAPI.01.01.00.04"
> > +SRCREV= "dc08af268200908d3d8a456ac852c65c53d2fd12"
> > +PV = "01.01.00.04"
> > +
> > +DEVICELIST = "k2h k2k k2l k2e"
> > +
> > +CHOICELIST = "yes no"
> > +
> > +BASEDIR = "${WORKDIR}/git"
> > +S = "${BASEDIR}/ti/runtime/netapi"
> > diff --git a/recipes-ti/netapi/netapi_git.bb b/recipes-ti/netapi/netapi_git.bb
> > new file mode 100644
> > index 0000000..d568cd0
> > --- /dev/null
> > +++ b/recipes-ti/netapi/netapi_git.bb
> > @@ -0,0 +1,34 @@
> > +DESCRIPTION = "Provides NETAPI module: TI user space network library"
> > +
> > +COMPATIBLE_MACHINE = "keystone"
> > +
> > +DEPENDS = "common-csl-ip rm-lld qmss-lld cppi-lld sa-lld hplib pktlib nwal-
> lld"
> > +
> > +NAME = "netapi"
> 
> Sorry, didn't notice it at first - what is this NAME variable for?
[Sam] Looks like not needed. I will send update patch.
> 
> 
> > +include netapi.inc
> > +
> > +EXTRA_OEMAKE = "-f makefile_armv7
> PDK_INSTALL_PATH=${STAGING_INCDIR}"
> > +
> > +do_compile () {
> > +#   Now build the netapi
> > +	for device in ${DEVICELIST}
> > +	do
> > +		for choice in ${CHOICELIST}
> > +		do
> > +			oe_runmake  clean NETAPI_SRC_DIR=${S}
> NETAPI_INC_DIR=${BASEDIR} \
> > +				USEDYNAMIC_LIB="$choice"
> DEVICE="$device"
> > +			oe_runmake lib NETAPI_SRC_DIR=${S}
> NETAPI_INC_DIR=${BASEDIR} \
> > +				USEDYNAMIC_LIB="$choice"
> DEVICE="$device"
> > +		done
> > +	done
> > +}
> > +
> > +do_install () {
> > +	for device in ${DEVICELIST}
> > +	do
> > +		oe_runmake install INSTALL_INC_BASE_DIR=${D}${includedir} \
> > +			INSTALL_LIB_BASE_DIR=${D}${libdir}
> INSTALL_BIN_BASE_DIR=${D}${bindir} \
> > +			SYSCONFDIR=${D}${sysconfdir} DEVICE="$device"
> > +	done
> > +}
> > --
> > 1.7.9.5
> >
> > --
> > _______________________________________________
> > 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:[~2015-02-26 17:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-24 22:43 [PATCH v2] netapi: Add recipe for NETAPI module Sam Nelson
2015-02-26 16:57 ` Denys Dmytriyenko
2015-02-26 17:57   ` Nelson, Sam

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.