* The CCS project file now contains symbols that the SDK installer will replace with correct values when the SDK is installed. * This makes it easier to manage changes in the toolchain sdk structure. * Due to this change seperate directories for architectures are no longer * required.
Signed-off-by: Franklin S. Cooper Jr <[email protected]> --- .../ti-crypto-examples/ti-crypto-examples_git.bb | 16 +++------------- 1 files changed, 3 insertions(+), 13 deletions(-) diff --git a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb index 78f2d32..995d60a 100644 --- a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb +++ b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb @@ -1,28 +1,20 @@ DESCRIPTION = "TI Cryptography Example Applications" HOMEPAGE = "http://arago-project.org/git/projects/?p=crypto-example-apps.git;a=summary" LICENSE = "BSD" -LIC_FILES_CHKSUM = "file://armv5te/AES/aes_256.c;beginline=9;endline=35;md5=8edbb4dee965d2f2eb5ca2822addcae5 \ - file://armv7a/AES/aes_256.c;beginline=9;endline=35;md5=8edbb4dee965d2f2eb5ca2822addcae5" +LIC_FILES_CHKSUM = "file://AES/aes_256.c;beginline=9;endline=35;md5=8edbb4dee965d2f2eb5ca2822addcae5" SECTION = "console" DEPENDS += "openssl" -PR = "r4" +PR = "r5" BRANCH ?= "master" -SRCREV = "ade3446fda75f4e07262b6162343a1b8d85521cb" +SRCREV = "1c6a493600ce1a830611cc5671639c03cc3ebc01" SRC_URI = "git://arago-project.org/git/projects/crypto-example-apps.git;protocol=git;branch=${BRANCH}" S = "${WORKDIR}/git/" -# This software contains two directories depending on ARM architecture -SOURCE_DIR = "${S}/${ARMPKGARCH}" - -# Specify armv5te for ARM9 devices -SOURCE_DIR_omapl138 = "${S}/armv5te" - do_compile() { - cd ${SOURCE_DIR} export CROSS_COMPILE=${TARGET_PREFIX} export CFLAGS='${TARGET_CC_ARCH}' # build the release version @@ -30,7 +22,5 @@ do_compile() { } do_install() { - cd ${SOURCE_DIR} - oe_runmake DESTDIR=${D} install } -- 1.7.0.4 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
