* [PATCH 1/3] ti-rm: Move from meta-arago to meta-ti
@ 2014-10-07 21:31 Sam Nelson
2014-10-07 21:31 ` [PATCH 2/3] rm-lld: rename recipe Sam Nelson
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Sam Nelson @ 2014-10-07 21:31 UTC (permalink / raw)
To: meta-ti
-Moved recipe to meta-arago based on review comments
(from http://arago-project.org/git/?p=meta-arago.git;a=blob;f=meta-arago-extras/recipes-bsp/ti-rm/ti-rm_git.bb;h=38ec0ada5330977a5e19928e02060c9857b1f8d0;hb=HEAD)
- Provides resource manager low level driver
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
recipes-bsp/rm-lld/ti-rm_git.bb | 49 +++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
create mode 100644 recipes-bsp/rm-lld/ti-rm_git.bb
diff --git a/recipes-bsp/rm-lld/ti-rm_git.bb b/recipes-bsp/rm-lld/ti-rm_git.bb
new file mode 100644
index 0000000..276c01e
--- /dev/null
+++ b/recipes-bsp/rm-lld/ti-rm_git.bb
@@ -0,0 +1,49 @@
+DESCRIPTION = "TI Resource Manager Low Level Driver"
+LICENSE = "TI BSD"
+LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc"
+
+BRANCH="master"
+SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}"
+# Below commit ID corresponds to DEV.RM_LLD.02.01.00.04
+SRCREV = "59e3bf5fca3995dd0f79bbdd1af988d278a2a049"
+PR = "r0"
+PV = "02.01.00.04"
+
+COMPATIBLE_MACHINE = "keystone"
+
+DEPENDS = "ti-ipc"
+
+PACKAGES =+ "${PN}-test"
+
+FILES_${PN}-test = "${bindir}/rmDspClientTest_*.out \
+ ${bindir}/rmLinuxClientTest_*.out \
+ ${bindir}/ti/drv/rm/test/dts_files/*.dtb"
+
+DEVICELIST = "k2h k2k"
+
+CHOICELIST = "yes no"
+
+BASEDIR = "${WORKDIR}/git"
+S = "${BASEDIR}/ti/drv/rm"
+
+do_compile () {
+# Now build the lld
+ make -f makefile_armv7 clean lib PDK_INSTALL_PATH=${STAGING_INCDIR} RM_SRC_DIR=${S}
+ for device in ${DEVICELIST}
+ do
+ for choice in ${CHOICELIST}
+ do
+ make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} DEVICE="$device" USEDYNAMIC_LIB="$choice"
+ done
+ done
+}
+
+do_install () {
+ install -d ${D}${includedir}/ti/drv/rm
+ install -d ${D}${libdir}
+ install -d ${D}${bindir}
+ for device in ${DEVICELIST}
+ do
+ make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device"
+ done
+}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/3] rm-lld: rename recipe
2014-10-07 21:31 [PATCH 1/3] ti-rm: Move from meta-arago to meta-ti Sam Nelson
@ 2014-10-07 21:31 ` Sam Nelson
2014-10-07 21:38 ` Denys Dmytriyenko
2014-10-07 21:31 ` [PATCH 3/3] rm-lld: Update to new version 2.1.0.6 Sam Nelson
2014-10-07 21:40 ` [PATCH 1/3] ti-rm: Move from meta-arago to meta-ti Denys Dmytriyenko
2 siblings, 1 reply; 6+ messages in thread
From: Sam Nelson @ 2014-10-07 21:31 UTC (permalink / raw)
To: meta-ti
- removed ti-prefix based on review
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
recipes-bsp/rm-lld/rm-lld_git.bb | 49 ++++++++++++++++++++++++++++++++++++++
recipes-bsp/rm-lld/ti-rm_git.bb | 49 --------------------------------------
2 files changed, 49 insertions(+), 49 deletions(-)
create mode 100644 recipes-bsp/rm-lld/rm-lld_git.bb
delete mode 100644 recipes-bsp/rm-lld/ti-rm_git.bb
diff --git a/recipes-bsp/rm-lld/rm-lld_git.bb b/recipes-bsp/rm-lld/rm-lld_git.bb
new file mode 100644
index 0000000..276c01e
--- /dev/null
+++ b/recipes-bsp/rm-lld/rm-lld_git.bb
@@ -0,0 +1,49 @@
+DESCRIPTION = "TI Resource Manager Low Level Driver"
+LICENSE = "TI BSD"
+LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc"
+
+BRANCH="master"
+SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}"
+# Below commit ID corresponds to DEV.RM_LLD.02.01.00.04
+SRCREV = "59e3bf5fca3995dd0f79bbdd1af988d278a2a049"
+PR = "r0"
+PV = "02.01.00.04"
+
+COMPATIBLE_MACHINE = "keystone"
+
+DEPENDS = "ti-ipc"
+
+PACKAGES =+ "${PN}-test"
+
+FILES_${PN}-test = "${bindir}/rmDspClientTest_*.out \
+ ${bindir}/rmLinuxClientTest_*.out \
+ ${bindir}/ti/drv/rm/test/dts_files/*.dtb"
+
+DEVICELIST = "k2h k2k"
+
+CHOICELIST = "yes no"
+
+BASEDIR = "${WORKDIR}/git"
+S = "${BASEDIR}/ti/drv/rm"
+
+do_compile () {
+# Now build the lld
+ make -f makefile_armv7 clean lib PDK_INSTALL_PATH=${STAGING_INCDIR} RM_SRC_DIR=${S}
+ for device in ${DEVICELIST}
+ do
+ for choice in ${CHOICELIST}
+ do
+ make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} DEVICE="$device" USEDYNAMIC_LIB="$choice"
+ done
+ done
+}
+
+do_install () {
+ install -d ${D}${includedir}/ti/drv/rm
+ install -d ${D}${libdir}
+ install -d ${D}${bindir}
+ for device in ${DEVICELIST}
+ do
+ make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device"
+ done
+}
diff --git a/recipes-bsp/rm-lld/ti-rm_git.bb b/recipes-bsp/rm-lld/ti-rm_git.bb
deleted file mode 100644
index 276c01e..0000000
--- a/recipes-bsp/rm-lld/ti-rm_git.bb
+++ /dev/null
@@ -1,49 +0,0 @@
-DESCRIPTION = "TI Resource Manager Low Level Driver"
-LICENSE = "TI BSD"
-LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc"
-
-BRANCH="master"
-SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}"
-# Below commit ID corresponds to DEV.RM_LLD.02.01.00.04
-SRCREV = "59e3bf5fca3995dd0f79bbdd1af988d278a2a049"
-PR = "r0"
-PV = "02.01.00.04"
-
-COMPATIBLE_MACHINE = "keystone"
-
-DEPENDS = "ti-ipc"
-
-PACKAGES =+ "${PN}-test"
-
-FILES_${PN}-test = "${bindir}/rmDspClientTest_*.out \
- ${bindir}/rmLinuxClientTest_*.out \
- ${bindir}/ti/drv/rm/test/dts_files/*.dtb"
-
-DEVICELIST = "k2h k2k"
-
-CHOICELIST = "yes no"
-
-BASEDIR = "${WORKDIR}/git"
-S = "${BASEDIR}/ti/drv/rm"
-
-do_compile () {
-# Now build the lld
- make -f makefile_armv7 clean lib PDK_INSTALL_PATH=${STAGING_INCDIR} RM_SRC_DIR=${S}
- for device in ${DEVICELIST}
- do
- for choice in ${CHOICELIST}
- do
- make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} DEVICE="$device" USEDYNAMIC_LIB="$choice"
- done
- done
-}
-
-do_install () {
- install -d ${D}${includedir}/ti/drv/rm
- install -d ${D}${libdir}
- install -d ${D}${bindir}
- for device in ${DEVICELIST}
- do
- make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device"
- done
-}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/3] rm-lld: Update to new version 2.1.0.6
2014-10-07 21:31 [PATCH 1/3] ti-rm: Move from meta-arago to meta-ti Sam Nelson
2014-10-07 21:31 ` [PATCH 2/3] rm-lld: rename recipe Sam Nelson
@ 2014-10-07 21:31 ` Sam Nelson
2014-10-07 21:45 ` Denys Dmytriyenko
2014-10-07 21:40 ` [PATCH 1/3] ti-rm: Move from meta-arago to meta-ti Denys Dmytriyenko
2 siblings, 1 reply; 6+ messages in thread
From: Sam Nelson @ 2014-10-07 21:31 UTC (permalink / raw)
To: meta-ti
- Add dependency on libdaemon
- Remove device dependency
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
recipes-bsp/rm-lld/rm-lld_git.bb | 24 ++++++++----------------
1 file changed, 8 insertions(+), 16 deletions(-)
diff --git a/recipes-bsp/rm-lld/rm-lld_git.bb b/recipes-bsp/rm-lld/rm-lld_git.bb
index 276c01e..e3646cf 100644
--- a/recipes-bsp/rm-lld/rm-lld_git.bb
+++ b/recipes-bsp/rm-lld/rm-lld_git.bb
@@ -4,14 +4,14 @@ LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b6536
BRANCH="master"
SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}"
-# Below commit ID corresponds to DEV.RM_LLD.02.01.00.04
-SRCREV = "59e3bf5fca3995dd0f79bbdd1af988d278a2a049"
-PR = "r0"
-PV = "02.01.00.04"
+# Below commit ID corresponds to DEV.RM_LLD.02.01.00.06
+SRCREV = "dc0dba4a6b0358efcb861d50b3dae21beb5281a8"
+PR = "r1"
+PV = "02.01.00.06"
COMPATIBLE_MACHINE = "keystone"
-DEPENDS = "ti-ipc"
+DEPENDS = "ti-ipc libdaemon"
PACKAGES =+ "${PN}-test"
@@ -19,8 +19,6 @@ FILES_${PN}-test = "${bindir}/rmDspClientTest_*.out \
${bindir}/rmLinuxClientTest_*.out \
${bindir}/ti/drv/rm/test/dts_files/*.dtb"
-DEVICELIST = "k2h k2k"
-
CHOICELIST = "yes no"
BASEDIR = "${WORKDIR}/git"
@@ -29,12 +27,9 @@ S = "${BASEDIR}/ti/drv/rm"
do_compile () {
# Now build the lld
make -f makefile_armv7 clean lib PDK_INSTALL_PATH=${STAGING_INCDIR} RM_SRC_DIR=${S}
- for device in ${DEVICELIST}
+ for choice in ${CHOICELIST}
do
- for choice in ${CHOICELIST}
- do
- make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} DEVICE="$device" USEDYNAMIC_LIB="$choice"
- done
+ make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} USEDYNAMIC_LIB="$choice"
done
}
@@ -42,8 +37,5 @@ do_install () {
install -d ${D}${includedir}/ti/drv/rm
install -d ${D}${libdir}
install -d ${D}${bindir}
- for device in ${DEVICELIST}
- do
- make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device"
- done
+ make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir}
}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 2/3] rm-lld: rename recipe
2014-10-07 21:31 ` [PATCH 2/3] rm-lld: rename recipe Sam Nelson
@ 2014-10-07 21:38 ` Denys Dmytriyenko
0 siblings, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2014-10-07 21:38 UTC (permalink / raw)
To: Sam Nelson; +Cc: meta-ti
Sam,
Please combine #2 and #3 patches. Plus, use -M flag when you generate the
patch, so it won't be presented as adding new and removing old, but just as a
simple rename.
--
Denys
On Tue, Oct 07, 2014 at 05:31:28PM -0400, Sam Nelson wrote:
> - removed ti-prefix based on review
>
> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> ---
> recipes-bsp/rm-lld/rm-lld_git.bb | 49 ++++++++++++++++++++++++++++++++++++++
> recipes-bsp/rm-lld/ti-rm_git.bb | 49 --------------------------------------
> 2 files changed, 49 insertions(+), 49 deletions(-)
> create mode 100644 recipes-bsp/rm-lld/rm-lld_git.bb
> delete mode 100644 recipes-bsp/rm-lld/ti-rm_git.bb
>
> diff --git a/recipes-bsp/rm-lld/rm-lld_git.bb b/recipes-bsp/rm-lld/rm-lld_git.bb
> new file mode 100644
> index 0000000..276c01e
> --- /dev/null
> +++ b/recipes-bsp/rm-lld/rm-lld_git.bb
> @@ -0,0 +1,49 @@
> +DESCRIPTION = "TI Resource Manager Low Level Driver"
> +LICENSE = "TI BSD"
> +LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc"
> +
> +BRANCH="master"
> +SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}"
> +# Below commit ID corresponds to DEV.RM_LLD.02.01.00.04
> +SRCREV = "59e3bf5fca3995dd0f79bbdd1af988d278a2a049"
> +PR = "r0"
> +PV = "02.01.00.04"
> +
> +COMPATIBLE_MACHINE = "keystone"
> +
> +DEPENDS = "ti-ipc"
> +
> +PACKAGES =+ "${PN}-test"
> +
> +FILES_${PN}-test = "${bindir}/rmDspClientTest_*.out \
> + ${bindir}/rmLinuxClientTest_*.out \
> + ${bindir}/ti/drv/rm/test/dts_files/*.dtb"
> +
> +DEVICELIST = "k2h k2k"
> +
> +CHOICELIST = "yes no"
> +
> +BASEDIR = "${WORKDIR}/git"
> +S = "${BASEDIR}/ti/drv/rm"
> +
> +do_compile () {
> +# Now build the lld
> + make -f makefile_armv7 clean lib PDK_INSTALL_PATH=${STAGING_INCDIR} RM_SRC_DIR=${S}
> + for device in ${DEVICELIST}
> + do
> + for choice in ${CHOICELIST}
> + do
> + make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} DEVICE="$device" USEDYNAMIC_LIB="$choice"
> + done
> + done
> +}
> +
> +do_install () {
> + install -d ${D}${includedir}/ti/drv/rm
> + install -d ${D}${libdir}
> + install -d ${D}${bindir}
> + for device in ${DEVICELIST}
> + do
> + make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device"
> + done
> +}
> diff --git a/recipes-bsp/rm-lld/ti-rm_git.bb b/recipes-bsp/rm-lld/ti-rm_git.bb
> deleted file mode 100644
> index 276c01e..0000000
> --- a/recipes-bsp/rm-lld/ti-rm_git.bb
> +++ /dev/null
> @@ -1,49 +0,0 @@
> -DESCRIPTION = "TI Resource Manager Low Level Driver"
> -LICENSE = "TI BSD"
> -LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc"
> -
> -BRANCH="master"
> -SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}"
> -# Below commit ID corresponds to DEV.RM_LLD.02.01.00.04
> -SRCREV = "59e3bf5fca3995dd0f79bbdd1af988d278a2a049"
> -PR = "r0"
> -PV = "02.01.00.04"
> -
> -COMPATIBLE_MACHINE = "keystone"
> -
> -DEPENDS = "ti-ipc"
> -
> -PACKAGES =+ "${PN}-test"
> -
> -FILES_${PN}-test = "${bindir}/rmDspClientTest_*.out \
> - ${bindir}/rmLinuxClientTest_*.out \
> - ${bindir}/ti/drv/rm/test/dts_files/*.dtb"
> -
> -DEVICELIST = "k2h k2k"
> -
> -CHOICELIST = "yes no"
> -
> -BASEDIR = "${WORKDIR}/git"
> -S = "${BASEDIR}/ti/drv/rm"
> -
> -do_compile () {
> -# Now build the lld
> - make -f makefile_armv7 clean lib PDK_INSTALL_PATH=${STAGING_INCDIR} RM_SRC_DIR=${S}
> - for device in ${DEVICELIST}
> - do
> - for choice in ${CHOICELIST}
> - do
> - make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} DEVICE="$device" USEDYNAMIC_LIB="$choice"
> - done
> - done
> -}
> -
> -do_install () {
> - install -d ${D}${includedir}/ti/drv/rm
> - install -d ${D}${libdir}
> - install -d ${D}${bindir}
> - for device in ${DEVICELIST}
> - do
> - make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} 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] 6+ messages in thread
* Re: [PATCH 1/3] ti-rm: Move from meta-arago to meta-ti
2014-10-07 21:31 [PATCH 1/3] ti-rm: Move from meta-arago to meta-ti Sam Nelson
2014-10-07 21:31 ` [PATCH 2/3] rm-lld: rename recipe Sam Nelson
2014-10-07 21:31 ` [PATCH 3/3] rm-lld: Update to new version 2.1.0.6 Sam Nelson
@ 2014-10-07 21:40 ` Denys Dmytriyenko
2 siblings, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2014-10-07 21:40 UTC (permalink / raw)
To: Sam Nelson; +Cc: meta-ti
On Tue, Oct 07, 2014 at 05:31:27PM -0400, Sam Nelson wrote:
> -Moved recipe to meta-arago based on review comments
^^ from meta-arago?
> (from http://arago-project.org/git/?p=meta-arago.git;a=blob;f=meta-arago-extras/recipes-bsp/ti-rm/ti-rm_git.bb;h=38ec0ada5330977a5e19928e02060c9857b1f8d0;hb=HEAD)
Do you want the link above? It's not really necessary, but I can go either
way.
> - Provides resource manager low level driver
>
> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> ---
> recipes-bsp/rm-lld/ti-rm_git.bb | 49 +++++++++++++++++++++++++++++++++++++++
> 1 file changed, 49 insertions(+)
> create mode 100644 recipes-bsp/rm-lld/ti-rm_git.bb
>
> diff --git a/recipes-bsp/rm-lld/ti-rm_git.bb b/recipes-bsp/rm-lld/ti-rm_git.bb
> new file mode 100644
> index 0000000..276c01e
> --- /dev/null
> +++ b/recipes-bsp/rm-lld/ti-rm_git.bb
> @@ -0,0 +1,49 @@
> +DESCRIPTION = "TI Resource Manager Low Level Driver"
> +LICENSE = "TI BSD"
> +LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc"
> +
> +BRANCH="master"
> +SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}"
> +# Below commit ID corresponds to DEV.RM_LLD.02.01.00.04
> +SRCREV = "59e3bf5fca3995dd0f79bbdd1af988d278a2a049"
> +PR = "r0"
> +PV = "02.01.00.04"
> +
> +COMPATIBLE_MACHINE = "keystone"
> +
> +DEPENDS = "ti-ipc"
> +
> +PACKAGES =+ "${PN}-test"
> +
> +FILES_${PN}-test = "${bindir}/rmDspClientTest_*.out \
> + ${bindir}/rmLinuxClientTest_*.out \
> + ${bindir}/ti/drv/rm/test/dts_files/*.dtb"
> +
> +DEVICELIST = "k2h k2k"
> +
> +CHOICELIST = "yes no"
> +
> +BASEDIR = "${WORKDIR}/git"
> +S = "${BASEDIR}/ti/drv/rm"
> +
> +do_compile () {
> +# Now build the lld
> + make -f makefile_armv7 clean lib PDK_INSTALL_PATH=${STAGING_INCDIR} RM_SRC_DIR=${S}
> + for device in ${DEVICELIST}
> + do
> + for choice in ${CHOICELIST}
> + do
> + make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} DEVICE="$device" USEDYNAMIC_LIB="$choice"
> + done
> + done
> +}
> +
> +do_install () {
> + install -d ${D}${includedir}/ti/drv/rm
> + install -d ${D}${libdir}
> + install -d ${D}${bindir}
> + for device in ${DEVICELIST}
> + do
> + make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} 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] 6+ messages in thread
* Re: [PATCH 3/3] rm-lld: Update to new version 2.1.0.6
2014-10-07 21:31 ` [PATCH 3/3] rm-lld: Update to new version 2.1.0.6 Sam Nelson
@ 2014-10-07 21:45 ` Denys Dmytriyenko
0 siblings, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2014-10-07 21:45 UTC (permalink / raw)
To: Sam Nelson; +Cc: meta-ti
On Tue, Oct 07, 2014 at 05:31:29PM -0400, Sam Nelson wrote:
> - Add dependency on libdaemon
> - Remove device dependency
>
> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> ---
> recipes-bsp/rm-lld/rm-lld_git.bb | 24 ++++++++----------------
> 1 file changed, 8 insertions(+), 16 deletions(-)
>
> diff --git a/recipes-bsp/rm-lld/rm-lld_git.bb b/recipes-bsp/rm-lld/rm-lld_git.bb
> index 276c01e..e3646cf 100644
> --- a/recipes-bsp/rm-lld/rm-lld_git.bb
> +++ b/recipes-bsp/rm-lld/rm-lld_git.bb
> @@ -4,14 +4,14 @@ LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b6536
>
> BRANCH="master"
> SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}"
> -# Below commit ID corresponds to DEV.RM_LLD.02.01.00.04
> -SRCREV = "59e3bf5fca3995dd0f79bbdd1af988d278a2a049"
> -PR = "r0"
> -PV = "02.01.00.04"
> +# Below commit ID corresponds to DEV.RM_LLD.02.01.00.06
> +SRCREV = "dc0dba4a6b0358efcb861d50b3dae21beb5281a8"
> +PR = "r1"
> +PV = "02.01.00.06"
A very minor nitpick - when you update PV, you usually reset PR.
> COMPATIBLE_MACHINE = "keystone"
>
> -DEPENDS = "ti-ipc"
> +DEPENDS = "ti-ipc libdaemon"
>
> PACKAGES =+ "${PN}-test"
>
> @@ -19,8 +19,6 @@ FILES_${PN}-test = "${bindir}/rmDspClientTest_*.out \
> ${bindir}/rmLinuxClientTest_*.out \
> ${bindir}/ti/drv/rm/test/dts_files/*.dtb"
>
> -DEVICELIST = "k2h k2k"
> -
> CHOICELIST = "yes no"
>
> BASEDIR = "${WORKDIR}/git"
> @@ -29,12 +27,9 @@ S = "${BASEDIR}/ti/drv/rm"
> do_compile () {
> # Now build the lld
> make -f makefile_armv7 clean lib PDK_INSTALL_PATH=${STAGING_INCDIR} RM_SRC_DIR=${S}
> - for device in ${DEVICELIST}
> + for choice in ${CHOICELIST}
> do
> - for choice in ${CHOICELIST}
> - do
> - make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} DEVICE="$device" USEDYNAMIC_LIB="$choice"
> - done
> + make -f makefile_armv7 tests IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} PDK_INSTALL_PATH=${BASEDIR} USEDYNAMIC_LIB="$choice"
> done
> }
>
> @@ -42,8 +37,5 @@ do_install () {
> install -d ${D}${includedir}/ti/drv/rm
> install -d ${D}${libdir}
> install -d ${D}${bindir}
> - for device in ${DEVICELIST}
> - do
> - make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device"
> - done
> + make -f makefile_armv7 install installbin installbin_test INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} INSTALL_BIN_BASE_DIR=${D}${bindir}
> }
> --
> 1.7.9.5
>
> --
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-10-07 21:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-07 21:31 [PATCH 1/3] ti-rm: Move from meta-arago to meta-ti Sam Nelson
2014-10-07 21:31 ` [PATCH 2/3] rm-lld: rename recipe Sam Nelson
2014-10-07 21:38 ` Denys Dmytriyenko
2014-10-07 21:31 ` [PATCH 3/3] rm-lld: Update to new version 2.1.0.6 Sam Nelson
2014-10-07 21:45 ` Denys Dmytriyenko
2014-10-07 21:40 ` [PATCH 1/3] ti-rm: Move from meta-arago to meta-ti 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.