All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rtos-recipes: Add files to ${PN}-dev instead of ${PN}.
@ 2015-06-04 16:59 Jacob Stiffler
  2015-06-04 17:02 ` Denys Dmytriyenko
  2015-06-04 19:59 ` Denys Dmytriyenko
  0 siblings, 2 replies; 3+ messages in thread
From: Jacob Stiffler @ 2015-06-04 16:59 UTC (permalink / raw)
  To: meta-ti

* These packages only contain firmware development files.

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../common-csl-ip/common-csl-ip-rtos_git.bb        |    5 ++++-
 recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb        |    7 ++++---
 recipes-ti/bios/ti-sysbios.inc                     |    4 ++++
 recipes-ti/bios/ti-sysbios_6.41.02.41.bb           |    4 +---
 .../ti-framework-components.inc                    |    3 ++-
 .../ti-framework-components_3.40.00.02.bb          |    2 +-
 recipes-ti/ipc/ti-ipc-rtos.inc                     |    3 ++-
 recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb           |    1 +
 recipes-ti/xdais/ti-xdais.inc                      |    5 +++++
 recipes-ti/xdais/ti-xdais_7.24.00.04.bb            |    3 +--
 10 files changed, 25 insertions(+), 12 deletions(-)

diff --git a/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb b/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb
index 5d4a552..c1fb566 100644
--- a/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb
+++ b/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb
@@ -3,6 +3,8 @@ require common-csl-ip.inc
 require recipes-ti/includes/ti-paths.inc
 require recipes-ti/includes/ti-staging.inc
 
+PR = "r1"
+
 DEPENDS = "ti-xdctools ti-cgt6x-native ti-sysbios"
 
 S = "${WORKDIR}/ti/csl"
@@ -30,4 +32,5 @@ do_install () {
     find -name "*.tar" -exec tar xf {} -C ${D}${PDK_INSTALL_DIR_RECIPE}/packages \;
 }
 
-FILES_${PN} += "${PDK_INSTALL_DIR_RECIPE}/packages"
+ALLOW_EMPTY_${PN} = "1"
+FILES_${PN}-dev += "${PDK_INSTALL_DIR_RECIPE}/packages"
diff --git a/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb b/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb
index 246d7a8..a4e0df6 100644
--- a/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb
+++ b/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb
@@ -2,7 +2,7 @@ require edma3-lld.inc
 require recipes-ti/includes/ti-paths.inc
 require recipes-ti/includes/ti-staging.inc
 
-PR = "r0"
+PR = "r1"
 
 DEPENDS = "ti-cgt6x-native ti-sysbios ti-xdctools"
 
@@ -70,6 +70,7 @@ do_install () {
     cp -pPrf ${S}/* ${D}${EDMA3_LLD_INSTALL_DIR_RECIPE}
 }
 
-INSANE_SKIP_${PN} = "arch"
+INSANE_SKIP_${PN}-dev = "arch"
 
-FILES_${PN} += "${EDMA3_LLD_INSTALL_DIR_RECIPE}"
+ALLOW_EMPTY_${PN} = "1"
+FILES_${PN}-dev += "${EDMA3_LLD_INSTALL_DIR_RECIPE}"
diff --git a/recipes-ti/bios/ti-sysbios.inc b/recipes-ti/bios/ti-sysbios.inc
index d04a158..c44fec3 100644
--- a/recipes-ti/bios/ti-sysbios.inc
+++ b/recipes-ti/bios/ti-sysbios.inc
@@ -19,3 +19,7 @@ do_install() {
     cp -pPrf ${S}/* ${D}${SYSBIOS_INSTALL_DIR_RECIPE}
 }
 
+ALLOW_EMPTY_${PN} = "1"
+FILES_${PN}-dev += "${SYSBIOS_INSTALL_DIR_RECIPE}"
+
+INSANE_SKIP_${PN}-dev = "arch ldflags staticdev"
diff --git a/recipes-ti/bios/ti-sysbios_6.41.02.41.bb b/recipes-ti/bios/ti-sysbios_6.41.02.41.bb
index fcad086..ccc6ad1 100644
--- a/recipes-ti/bios/ti-sysbios_6.41.02.41.bb
+++ b/recipes-ti/bios/ti-sysbios_6.41.02.41.bb
@@ -1,7 +1,7 @@
 require ti-sysbios.inc
 
 PV = "6_41_02_41"
-PR = "r0"
+PR = "r1"
 
 LIC_FILES_CHKSUM = "file://bios_${PV}_manifest.html;md5=a4af75ec6d586c5267c71075eebff418"
 
@@ -10,5 +10,3 @@ SRC_URI[sysbiosbin.sha256sum] = "2c47b4a3aa9513d10e5811a8ac7ed1d6ce3d13df57a0bff
 
 TI_BIN_UNPK_CMDS=""
 TI_BIN_UNPK_ARGS = "--mode unattended --prefix ${WORKDIR}"
-
-INSANE_SKIP_${PN} = "installed-vs-shipped"
diff --git a/recipes-ti/framework-components/ti-framework-components.inc b/recipes-ti/framework-components/ti-framework-components.inc
index b8d3f7c..e111ec4 100644
--- a/recipes-ti/framework-components/ti-framework-components.inc
+++ b/recipes-ti/framework-components/ti-framework-components.inc
@@ -17,4 +17,5 @@ do_install() {
 
 INSANE_SKIP_${PN} = "ldflags"
 
-FILES_${PN} += "${FC_INSTALL_DIR_RECIPE}"
+ALLOW_EMPTY_${PN} = "1"
+FILES_${PN}-dev += "${FC_INSTALL_DIR_RECIPE}"
diff --git a/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb b/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb
index 2dd8548..78f764d 100644
--- a/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb
+++ b/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb
@@ -1,7 +1,7 @@
 require ti-framework-components.inc
 
 PV = "3_40_00_02"
-PR = "r0"
+PR = "r1"
 
 LIC_FILES_CHKSUM = "file://framework_components_${PV}_Manifest.html;md5=e3ce0b3e17175b7200f346d0c6dbbcc6"
 
diff --git a/recipes-ti/ipc/ti-ipc-rtos.inc b/recipes-ti/ipc/ti-ipc-rtos.inc
index fe179f5..d14c756 100644
--- a/recipes-ti/ipc/ti-ipc-rtos.inc
+++ b/recipes-ti/ipc/ti-ipc-rtos.inc
@@ -15,4 +15,5 @@ do_install() {
     cp -pPrf ${S}/* ${D}${IPC_INSTALL_DIR_RECIPE}
 }
 
-FILES_${PN} += "${IPC_INSTALL_DIR_RECIPE}"
+ALLOW_EMPTY_${PN} = "1"
+FILES_${PN}-dev += "${IPC_INSTALL_DIR_RECIPE}"
diff --git a/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb b/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb
index 4c67c6e..ef5087d 100644
--- a/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb
+++ b/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb
@@ -1,6 +1,7 @@
 require ti-ipc-rtos.inc
 
 PV = "3_35_01_07"
+PR = "r1"
 
 LIC_FILES_CHKSUM = "file://${S}/ipc-linux.mak;beginline=1;endline=30;md5=7b327f9b710fd7c95e545b91cec79255"
 
diff --git a/recipes-ti/xdais/ti-xdais.inc b/recipes-ti/xdais/ti-xdais.inc
index 2e7eb13..a7017e7 100644
--- a/recipes-ti/xdais/ti-xdais.inc
+++ b/recipes-ti/xdais/ti-xdais.inc
@@ -14,3 +14,8 @@ do_install() {
     install -d ${D}${XDAIS_INSTALL_DIR_RECIPE}
     cp -pPrf ${S}/* ${D}${XDAIS_INSTALL_DIR_RECIPE}
 }
+
+INSANE_SKIP_${PN}-dev = "arch"
+
+ALLOW_EMPTY_${PN} = "1"
+FILES_${PN}-dev += "${XDAIS_INSTALL_DIR_RECIPE}"
diff --git a/recipes-ti/xdais/ti-xdais_7.24.00.04.bb b/recipes-ti/xdais/ti-xdais_7.24.00.04.bb
index 0f27514..8148f73 100644
--- a/recipes-ti/xdais/ti-xdais_7.24.00.04.bb
+++ b/recipes-ti/xdais/ti-xdais_7.24.00.04.bb
@@ -1,10 +1,9 @@
 require ti-xdais.inc
 
 PV = "7_24_00_04"
+PR = "r1"
 
 LIC_FILES_CHKSUM = "file://xdais_7_24_00_04_Manifest.html;md5=fd16442230745f0877cfe1c622669fd6"
 
 SRC_URI[xdaistarball.md5sum] = "f7514085b531f2ae49b37b30194e4989"
 SRC_URI[xdaistarball.sha256sum] = "79fd30377ab4c497292aeefb0565f81703d9020d1242b02ca9968c561e0de9a1"
-
-INSANE_SKIP_${PN} = "installed-vs-shipped"
-- 
1.7.9.5



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

* Re: [PATCH] rtos-recipes: Add files to ${PN}-dev instead of ${PN}.
  2015-06-04 16:59 [PATCH] rtos-recipes: Add files to ${PN}-dev instead of ${PN} Jacob Stiffler
@ 2015-06-04 17:02 ` Denys Dmytriyenko
  2015-06-04 19:59 ` Denys Dmytriyenko
  1 sibling, 0 replies; 3+ messages in thread
From: Denys Dmytriyenko @ 2015-06-04 17:02 UTC (permalink / raw)
  To: Jacob Stiffler; +Cc: meta-ti

Thanks! Ack.

On Thu, Jun 04, 2015 at 12:59:05PM -0400, Jacob Stiffler wrote:
> * These packages only contain firmware development files.
> 
> Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
> ---
>  .../common-csl-ip/common-csl-ip-rtos_git.bb        |    5 ++++-
>  recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb        |    7 ++++---
>  recipes-ti/bios/ti-sysbios.inc                     |    4 ++++
>  recipes-ti/bios/ti-sysbios_6.41.02.41.bb           |    4 +---
>  .../ti-framework-components.inc                    |    3 ++-
>  .../ti-framework-components_3.40.00.02.bb          |    2 +-
>  recipes-ti/ipc/ti-ipc-rtos.inc                     |    3 ++-
>  recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb           |    1 +
>  recipes-ti/xdais/ti-xdais.inc                      |    5 +++++
>  recipes-ti/xdais/ti-xdais_7.24.00.04.bb            |    3 +--
>  10 files changed, 25 insertions(+), 12 deletions(-)
> 
> diff --git a/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb b/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb
> index 5d4a552..c1fb566 100644
> --- a/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb
> +++ b/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb
> @@ -3,6 +3,8 @@ require common-csl-ip.inc
>  require recipes-ti/includes/ti-paths.inc
>  require recipes-ti/includes/ti-staging.inc
>  
> +PR = "r1"
> +
>  DEPENDS = "ti-xdctools ti-cgt6x-native ti-sysbios"
>  
>  S = "${WORKDIR}/ti/csl"
> @@ -30,4 +32,5 @@ do_install () {
>      find -name "*.tar" -exec tar xf {} -C ${D}${PDK_INSTALL_DIR_RECIPE}/packages \;
>  }
>  
> -FILES_${PN} += "${PDK_INSTALL_DIR_RECIPE}/packages"
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${PDK_INSTALL_DIR_RECIPE}/packages"
> diff --git a/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb b/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb
> index 246d7a8..a4e0df6 100644
> --- a/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb
> +++ b/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb
> @@ -2,7 +2,7 @@ require edma3-lld.inc
>  require recipes-ti/includes/ti-paths.inc
>  require recipes-ti/includes/ti-staging.inc
>  
> -PR = "r0"
> +PR = "r1"
>  
>  DEPENDS = "ti-cgt6x-native ti-sysbios ti-xdctools"
>  
> @@ -70,6 +70,7 @@ do_install () {
>      cp -pPrf ${S}/* ${D}${EDMA3_LLD_INSTALL_DIR_RECIPE}
>  }
>  
> -INSANE_SKIP_${PN} = "arch"
> +INSANE_SKIP_${PN}-dev = "arch"
>  
> -FILES_${PN} += "${EDMA3_LLD_INSTALL_DIR_RECIPE}"
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${EDMA3_LLD_INSTALL_DIR_RECIPE}"
> diff --git a/recipes-ti/bios/ti-sysbios.inc b/recipes-ti/bios/ti-sysbios.inc
> index d04a158..c44fec3 100644
> --- a/recipes-ti/bios/ti-sysbios.inc
> +++ b/recipes-ti/bios/ti-sysbios.inc
> @@ -19,3 +19,7 @@ do_install() {
>      cp -pPrf ${S}/* ${D}${SYSBIOS_INSTALL_DIR_RECIPE}
>  }
>  
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${SYSBIOS_INSTALL_DIR_RECIPE}"
> +
> +INSANE_SKIP_${PN}-dev = "arch ldflags staticdev"
> diff --git a/recipes-ti/bios/ti-sysbios_6.41.02.41.bb b/recipes-ti/bios/ti-sysbios_6.41.02.41.bb
> index fcad086..ccc6ad1 100644
> --- a/recipes-ti/bios/ti-sysbios_6.41.02.41.bb
> +++ b/recipes-ti/bios/ti-sysbios_6.41.02.41.bb
> @@ -1,7 +1,7 @@
>  require ti-sysbios.inc
>  
>  PV = "6_41_02_41"
> -PR = "r0"
> +PR = "r1"
>  
>  LIC_FILES_CHKSUM = "file://bios_${PV}_manifest.html;md5=a4af75ec6d586c5267c71075eebff418"
>  
> @@ -10,5 +10,3 @@ SRC_URI[sysbiosbin.sha256sum] = "2c47b4a3aa9513d10e5811a8ac7ed1d6ce3d13df57a0bff
>  
>  TI_BIN_UNPK_CMDS=""
>  TI_BIN_UNPK_ARGS = "--mode unattended --prefix ${WORKDIR}"
> -
> -INSANE_SKIP_${PN} = "installed-vs-shipped"
> diff --git a/recipes-ti/framework-components/ti-framework-components.inc b/recipes-ti/framework-components/ti-framework-components.inc
> index b8d3f7c..e111ec4 100644
> --- a/recipes-ti/framework-components/ti-framework-components.inc
> +++ b/recipes-ti/framework-components/ti-framework-components.inc
> @@ -17,4 +17,5 @@ do_install() {
>  
>  INSANE_SKIP_${PN} = "ldflags"
>  
> -FILES_${PN} += "${FC_INSTALL_DIR_RECIPE}"
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${FC_INSTALL_DIR_RECIPE}"
> diff --git a/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb b/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb
> index 2dd8548..78f764d 100644
> --- a/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb
> +++ b/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb
> @@ -1,7 +1,7 @@
>  require ti-framework-components.inc
>  
>  PV = "3_40_00_02"
> -PR = "r0"
> +PR = "r1"
>  
>  LIC_FILES_CHKSUM = "file://framework_components_${PV}_Manifest.html;md5=e3ce0b3e17175b7200f346d0c6dbbcc6"
>  
> diff --git a/recipes-ti/ipc/ti-ipc-rtos.inc b/recipes-ti/ipc/ti-ipc-rtos.inc
> index fe179f5..d14c756 100644
> --- a/recipes-ti/ipc/ti-ipc-rtos.inc
> +++ b/recipes-ti/ipc/ti-ipc-rtos.inc
> @@ -15,4 +15,5 @@ do_install() {
>      cp -pPrf ${S}/* ${D}${IPC_INSTALL_DIR_RECIPE}
>  }
>  
> -FILES_${PN} += "${IPC_INSTALL_DIR_RECIPE}"
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${IPC_INSTALL_DIR_RECIPE}"
> diff --git a/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb b/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb
> index 4c67c6e..ef5087d 100644
> --- a/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb
> +++ b/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb
> @@ -1,6 +1,7 @@
>  require ti-ipc-rtos.inc
>  
>  PV = "3_35_01_07"
> +PR = "r1"
>  
>  LIC_FILES_CHKSUM = "file://${S}/ipc-linux.mak;beginline=1;endline=30;md5=7b327f9b710fd7c95e545b91cec79255"
>  
> diff --git a/recipes-ti/xdais/ti-xdais.inc b/recipes-ti/xdais/ti-xdais.inc
> index 2e7eb13..a7017e7 100644
> --- a/recipes-ti/xdais/ti-xdais.inc
> +++ b/recipes-ti/xdais/ti-xdais.inc
> @@ -14,3 +14,8 @@ do_install() {
>      install -d ${D}${XDAIS_INSTALL_DIR_RECIPE}
>      cp -pPrf ${S}/* ${D}${XDAIS_INSTALL_DIR_RECIPE}
>  }
> +
> +INSANE_SKIP_${PN}-dev = "arch"
> +
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${XDAIS_INSTALL_DIR_RECIPE}"
> diff --git a/recipes-ti/xdais/ti-xdais_7.24.00.04.bb b/recipes-ti/xdais/ti-xdais_7.24.00.04.bb
> index 0f27514..8148f73 100644
> --- a/recipes-ti/xdais/ti-xdais_7.24.00.04.bb
> +++ b/recipes-ti/xdais/ti-xdais_7.24.00.04.bb
> @@ -1,10 +1,9 @@
>  require ti-xdais.inc
>  
>  PV = "7_24_00_04"
> +PR = "r1"
>  
>  LIC_FILES_CHKSUM = "file://xdais_7_24_00_04_Manifest.html;md5=fd16442230745f0877cfe1c622669fd6"
>  
>  SRC_URI[xdaistarball.md5sum] = "f7514085b531f2ae49b37b30194e4989"
>  SRC_URI[xdaistarball.sha256sum] = "79fd30377ab4c497292aeefb0565f81703d9020d1242b02ca9968c561e0de9a1"
> -
> -INSANE_SKIP_${PN} = "installed-vs-shipped"
> -- 
> 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] rtos-recipes: Add files to ${PN}-dev instead of ${PN}.
  2015-06-04 16:59 [PATCH] rtos-recipes: Add files to ${PN}-dev instead of ${PN} Jacob Stiffler
  2015-06-04 17:02 ` Denys Dmytriyenko
@ 2015-06-04 19:59 ` Denys Dmytriyenko
  1 sibling, 0 replies; 3+ messages in thread
From: Denys Dmytriyenko @ 2015-06-04 19:59 UTC (permalink / raw)
  To: Jacob Stiffler; +Cc: meta-ti

You haven't rebased your patch - IPC is at version 3.36 now...


On Thu, Jun 04, 2015 at 12:59:05PM -0400, Jacob Stiffler wrote:
> * These packages only contain firmware development files.
> 
> Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
> ---
>  .../common-csl-ip/common-csl-ip-rtos_git.bb        |    5 ++++-
>  recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb        |    7 ++++---
>  recipes-ti/bios/ti-sysbios.inc                     |    4 ++++
>  recipes-ti/bios/ti-sysbios_6.41.02.41.bb           |    4 +---
>  .../ti-framework-components.inc                    |    3 ++-
>  .../ti-framework-components_3.40.00.02.bb          |    2 +-
>  recipes-ti/ipc/ti-ipc-rtos.inc                     |    3 ++-
>  recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb           |    1 +
>  recipes-ti/xdais/ti-xdais.inc                      |    5 +++++
>  recipes-ti/xdais/ti-xdais_7.24.00.04.bb            |    3 +--
>  10 files changed, 25 insertions(+), 12 deletions(-)
> 
> diff --git a/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb b/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb
> index 5d4a552..c1fb566 100644
> --- a/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb
> +++ b/recipes-bsp/common-csl-ip/common-csl-ip-rtos_git.bb
> @@ -3,6 +3,8 @@ require common-csl-ip.inc
>  require recipes-ti/includes/ti-paths.inc
>  require recipes-ti/includes/ti-staging.inc
>  
> +PR = "r1"
> +
>  DEPENDS = "ti-xdctools ti-cgt6x-native ti-sysbios"
>  
>  S = "${WORKDIR}/ti/csl"
> @@ -30,4 +32,5 @@ do_install () {
>      find -name "*.tar" -exec tar xf {} -C ${D}${PDK_INSTALL_DIR_RECIPE}/packages \;
>  }
>  
> -FILES_${PN} += "${PDK_INSTALL_DIR_RECIPE}/packages"
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${PDK_INSTALL_DIR_RECIPE}/packages"
> diff --git a/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb b/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb
> index 246d7a8..a4e0df6 100644
> --- a/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb
> +++ b/recipes-bsp/edma3-lld/edma3-lld-rtos_git.bb
> @@ -2,7 +2,7 @@ require edma3-lld.inc
>  require recipes-ti/includes/ti-paths.inc
>  require recipes-ti/includes/ti-staging.inc
>  
> -PR = "r0"
> +PR = "r1"
>  
>  DEPENDS = "ti-cgt6x-native ti-sysbios ti-xdctools"
>  
> @@ -70,6 +70,7 @@ do_install () {
>      cp -pPrf ${S}/* ${D}${EDMA3_LLD_INSTALL_DIR_RECIPE}
>  }
>  
> -INSANE_SKIP_${PN} = "arch"
> +INSANE_SKIP_${PN}-dev = "arch"
>  
> -FILES_${PN} += "${EDMA3_LLD_INSTALL_DIR_RECIPE}"
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${EDMA3_LLD_INSTALL_DIR_RECIPE}"
> diff --git a/recipes-ti/bios/ti-sysbios.inc b/recipes-ti/bios/ti-sysbios.inc
> index d04a158..c44fec3 100644
> --- a/recipes-ti/bios/ti-sysbios.inc
> +++ b/recipes-ti/bios/ti-sysbios.inc
> @@ -19,3 +19,7 @@ do_install() {
>      cp -pPrf ${S}/* ${D}${SYSBIOS_INSTALL_DIR_RECIPE}
>  }
>  
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${SYSBIOS_INSTALL_DIR_RECIPE}"
> +
> +INSANE_SKIP_${PN}-dev = "arch ldflags staticdev"
> diff --git a/recipes-ti/bios/ti-sysbios_6.41.02.41.bb b/recipes-ti/bios/ti-sysbios_6.41.02.41.bb
> index fcad086..ccc6ad1 100644
> --- a/recipes-ti/bios/ti-sysbios_6.41.02.41.bb
> +++ b/recipes-ti/bios/ti-sysbios_6.41.02.41.bb
> @@ -1,7 +1,7 @@
>  require ti-sysbios.inc
>  
>  PV = "6_41_02_41"
> -PR = "r0"
> +PR = "r1"
>  
>  LIC_FILES_CHKSUM = "file://bios_${PV}_manifest.html;md5=a4af75ec6d586c5267c71075eebff418"
>  
> @@ -10,5 +10,3 @@ SRC_URI[sysbiosbin.sha256sum] = "2c47b4a3aa9513d10e5811a8ac7ed1d6ce3d13df57a0bff
>  
>  TI_BIN_UNPK_CMDS=""
>  TI_BIN_UNPK_ARGS = "--mode unattended --prefix ${WORKDIR}"
> -
> -INSANE_SKIP_${PN} = "installed-vs-shipped"
> diff --git a/recipes-ti/framework-components/ti-framework-components.inc b/recipes-ti/framework-components/ti-framework-components.inc
> index b8d3f7c..e111ec4 100644
> --- a/recipes-ti/framework-components/ti-framework-components.inc
> +++ b/recipes-ti/framework-components/ti-framework-components.inc
> @@ -17,4 +17,5 @@ do_install() {
>  
>  INSANE_SKIP_${PN} = "ldflags"
>  
> -FILES_${PN} += "${FC_INSTALL_DIR_RECIPE}"
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${FC_INSTALL_DIR_RECIPE}"
> diff --git a/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb b/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb
> index 2dd8548..78f764d 100644
> --- a/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb
> +++ b/recipes-ti/framework-components/ti-framework-components_3.40.00.02.bb
> @@ -1,7 +1,7 @@
>  require ti-framework-components.inc
>  
>  PV = "3_40_00_02"
> -PR = "r0"
> +PR = "r1"
>  
>  LIC_FILES_CHKSUM = "file://framework_components_${PV}_Manifest.html;md5=e3ce0b3e17175b7200f346d0c6dbbcc6"
>  
> diff --git a/recipes-ti/ipc/ti-ipc-rtos.inc b/recipes-ti/ipc/ti-ipc-rtos.inc
> index fe179f5..d14c756 100644
> --- a/recipes-ti/ipc/ti-ipc-rtos.inc
> +++ b/recipes-ti/ipc/ti-ipc-rtos.inc
> @@ -15,4 +15,5 @@ do_install() {
>      cp -pPrf ${S}/* ${D}${IPC_INSTALL_DIR_RECIPE}
>  }
>  
> -FILES_${PN} += "${IPC_INSTALL_DIR_RECIPE}"
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${IPC_INSTALL_DIR_RECIPE}"
> diff --git a/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb b/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb
> index 4c67c6e..ef5087d 100644
> --- a/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb
> +++ b/recipes-ti/ipc/ti-ipc-rtos_3.35.01.07.bb
> @@ -1,6 +1,7 @@
>  require ti-ipc-rtos.inc
>  
>  PV = "3_35_01_07"
> +PR = "r1"
>  
>  LIC_FILES_CHKSUM = "file://${S}/ipc-linux.mak;beginline=1;endline=30;md5=7b327f9b710fd7c95e545b91cec79255"
>  
> diff --git a/recipes-ti/xdais/ti-xdais.inc b/recipes-ti/xdais/ti-xdais.inc
> index 2e7eb13..a7017e7 100644
> --- a/recipes-ti/xdais/ti-xdais.inc
> +++ b/recipes-ti/xdais/ti-xdais.inc
> @@ -14,3 +14,8 @@ do_install() {
>      install -d ${D}${XDAIS_INSTALL_DIR_RECIPE}
>      cp -pPrf ${S}/* ${D}${XDAIS_INSTALL_DIR_RECIPE}
>  }
> +
> +INSANE_SKIP_${PN}-dev = "arch"
> +
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}-dev += "${XDAIS_INSTALL_DIR_RECIPE}"
> diff --git a/recipes-ti/xdais/ti-xdais_7.24.00.04.bb b/recipes-ti/xdais/ti-xdais_7.24.00.04.bb
> index 0f27514..8148f73 100644
> --- a/recipes-ti/xdais/ti-xdais_7.24.00.04.bb
> +++ b/recipes-ti/xdais/ti-xdais_7.24.00.04.bb
> @@ -1,10 +1,9 @@
>  require ti-xdais.inc
>  
>  PV = "7_24_00_04"
> +PR = "r1"
>  
>  LIC_FILES_CHKSUM = "file://xdais_7_24_00_04_Manifest.html;md5=fd16442230745f0877cfe1c622669fd6"
>  
>  SRC_URI[xdaistarball.md5sum] = "f7514085b531f2ae49b37b30194e4989"
>  SRC_URI[xdaistarball.sha256sum] = "79fd30377ab4c497292aeefb0565f81703d9020d1242b02ca9968c561e0de9a1"
> -
> -INSANE_SKIP_${PN} = "installed-vs-shipped"
> -- 
> 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-06-04 19:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-04 16:59 [PATCH] rtos-recipes: Add files to ${PN}-dev instead of ${PN} Jacob Stiffler
2015-06-04 17:02 ` Denys Dmytriyenko
2015-06-04 19:59 ` 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.