* For these recipes I used the incorrect += or append syntax. * Correct the syntax to insure the proper logic.
Signed-off-by: Franklin S. Cooper Jr <[email protected]> --- .../packagegroup-arago-tisdk-amsdk-sdk-host.bb | 6 ++-- .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 38 ++++++++++--------- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb index d8846f3..7c237d0 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb @@ -1,6 +1,6 @@ DESCRIPTION = "Task to install additional scripts and applications into the SDK" LICENSE = "MIT" -PR = "r7" +PR = "r8" inherit packagegroup @@ -13,8 +13,8 @@ KERNEL_SRC = "${PREFERRED_PROVIDER_virtual/kernel}-src" TOOLS = "pinmux-utility" TOOLS_omap-a15 = "" -TOOLS_am37x-evm_append = " flash-utility" -TOOLS_am3517-evm_append = " flash-utility" +TOOLS_append_am37x-evm = " flash-utility" +TOOLS_append_am3517-evm = " flash-utility" README = "" README_omap-a15 = "tisdk-readme" diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb index da2003f..49963f6 100644 --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb @@ -32,7 +32,7 @@ SRC_URI = "\ file://Makefile_omapconf \ " -PR = "r9" +PR = "r10" MAKEFILES_COMMON = "linux \ matrix-gui \ @@ -43,33 +43,35 @@ MAKEFILES_COMMON = "linux \ refresh-screen \ qt-tstat \ " +MAKEFILES = "" # This example application should not be used when using non-SGX QUICK_PLAYGROUND = "${@base_conditional('ARAGO_QT_PROVIDER','qt4-embedded-gles','quick-playground','', d)}" # Add device specific make targets -MAKEFILES_omap3 += "u-boot-spl \ - ${QUICK_PLAYGROUND} \ + +MAKEFILES_append_omap3 = " u-boot-spl \ + ${QUICK_PLAYGROUND} \ " -MAKEFILES_am37x-evm += "av-examples \ - ti-ocf-crypto-module \ - wireless \ +MAKEFILES_append_am37x-evm = " av-examples \ + ti-ocf-crypto-module \ + wireless \ " -MAKEFILES_am3517-evm += "av-examples \ - ti-ocf-crypto-module \ +MAKEFILES_append_am3517-evm = " av-examples \ + ti-ocf-crypto-module \ " -MAKEFILES_ti33x += "u-boot-spl \ - ${QUICK_PLAYGROUND} \ - wireless \ +MAKEFILES_append_ti33x = " u-boot-spl \ + ${QUICK_PLAYGROUND} \ + wireless \ " -MAKEFILES_omap-a15 += "u-boot-spl \ - ${QUICK_PLAYGROUND} \ - omapconf \ - linux-dtbs \ +MAKEFILES_append_omap-a15 = " u-boot-spl \ + ${QUICK_PLAYGROUND} \ + omapconf \ + linux-dtbs \ " -MAKEFILES_am180x-evm += "pru \ - u-boot-legacy \ - wireless \ +MAKEFILES_append_am180x-evm = " pru \ + u-boot-legacy \ + wireless \ " PLATFORM_ARCH = "${ARMPKGARCH}" -- 1.7.0.4 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
