From de355a34c41b0fc4700ca43d5b547f0ee0e5abc2 Mon Sep 17 00:00:00 2001 From: Justin Sobota Date: Tue, 28 Jun 2016 00:31:03 +0000 Subject: ti-pdk: Add makefile support to ti-pdk.bbclass for RTOS components Signed-off-by: Justin Sobota Signed-off-by: Denys Dmytriyenko --- classes/ti-pdk.bbclass | 59 ++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) (limited to 'classes') diff --git a/classes/ti-pdk.bbclass b/classes/ti-pdk.bbclass index ae76fdfe..fd7c3e7a 100644 --- a/classes/ti-pdk.bbclass +++ b/classes/ti-pdk.bbclass @@ -3,14 +3,26 @@ require recipes-ti/includes/ti-staging.inc inherit perlnative -DEPENDS = "ti-xdctools ti-cg-xml-native ti-sysbios common-csl-ip-rtos libxml-simple-perl-native gcc-arm-none-eabi-native" +DEPENDS = "ti-xdctools ti-cg-xml-native ti-sysbios common-csl-ip-rtos libxml-simple-perl-native gcc-arm-none-eabi-native ti-cgt6x-native ti-pdk-build-rtos" -DEPENDS_append_omap-a15 = " ti-cgt6x-native ti-ccsv6-native" -DEPENDS_append_keystone = " ti-cgt6x-native" +DEPENDS_append_omap-a15 = " ti-ccsv6-native" +DEPENDS_remove_ti33x = "ti-cgt6x-native" +DEPENDS_remove_ti43x = "ti-cgt6x-native" S = "${WORKDIR}/git" B = "${WORKDIR}/build" +# HTML hyperlink text +PDK_COMP_LINK_TEXT ?= "" + +DOC_FILE = "API_Documentation_${PN}.html" + +create_doc_link () { + PDK_COMP_DIR=`get_build_dir_bash` + + echo "${PDK_COMP_LINK_TEXT}" >> ${D}${PDK_INSTALL_DIR_RECIPE}/packages/.extras/doc/${DOC_FILE} +} + get_build_dir_bash() { if [ -f ${S}/package.xdc ] then @@ -36,6 +48,10 @@ export PDK_INSTALL_PATH = "${PDK_INSTALL_DIR}/packages" export XDCPATH = "${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;${PDK_INSTALL_DIR}/packages" export SECTTI="perl ${CG_XML_INSTALL_DIR}/ofd/sectti.pl" +XDCMAKE ?= "1" +LIMSOCS ?= "" +LIMBOARDS ?= "" + PARALLEL_XDC = "--jobs=${BB_NUMBER_THREADS}" do_configure() { @@ -43,24 +59,43 @@ do_configure() { mkdir -p ${BUILD_DIR} cp -r ${S}/* ${BUILD_DIR} - cd ${BUILD_DIR} - sed -i "s/\ \"\.\\\\\\\\\"\ +//" src/Module.xs - find -name "*.xs" -exec sed -i "s/ofd6x\.exe/ofd6x/" {} \; - find -name "*.xs" -exec sed -i "s/sectti\.exe/sectti/" {} \; - find -name "*.xs" -exec sed -i "/\.chm/d" {} \; - find -name "*.xs" -exec sed -i "s/pasm\_dos/pasm\_linux/" {} \; + if [ "${XDCMAKE}" == "1" ] + then + cd ${BUILD_DIR} + + sed -i "s/\ \"\.\\\\\\\\\"\ +//" src/Module.xs + find -name "*.xs" -exec sed -i "s/ofd6x\.exe/ofd6x/" {} \; + find -name "*.xs" -exec sed -i "s/sectti\.exe/sectti/" {} \; + find -name "*.xs" -exec sed -i "/\.chm/d" {} \; + find -name "*.xs" -exec sed -i "s/pasm\_dos/pasm\_linux/" {} \; + fi } do_compile() { - ${XDC_INSTALL_DIR}/xdc clean ${PARALLEL_XDC} -PR . - ${XDC_INSTALL_DIR}/xdc all ${PARALLEL_XDC} XDCARGS="${XDCARGS}" ROOTDIR="${ROOTDIR}" -PR . - ${XDC_INSTALL_DIR}/xdc release XDCARGS="${XDCARGS}" -PR . + + if [ "${XDCMAKE}" == "1" ] + then + ${XDC_INSTALL_DIR}/xdc clean ${PARALLEL_XDC} -PR . + ${XDC_INSTALL_DIR}/xdc all ${PARALLEL_XDC} XDCARGS="${XDCARGS}" ROOTDIR="${ROOTDIR}" -PR . + ${XDC_INSTALL_DIR}/xdc release XDCARGS="${XDCARGS}" -PR . + else + BUILD_DIR=${B}/`get_build_dir_bash` + cd ${BUILD_DIR} + + make release LIMIT_SOCS="${LIMSOCS}" LIMIT_BOARDS="${LIMBOARDS}" + fi } do_install () { install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages find -name "*.tar" -exec tar xf {} -C ${D}${PDK_INSTALL_DIR_RECIPE}/packages \; + + if [ "${PDK_COMP_LINK_TEXT}" != "" ] + then + install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages/.extras/doc + create_doc_link + fi } FILES_${PN} += "${PDK_INSTALL_DIR_RECIPE}/packages" -- cgit v1.2.3-54-g00ecf