diff options
Diffstat (limited to 'meta-ti-extras/recipes-ti/includes')
-rw-r--r-- | meta-ti-extras/recipes-ti/includes/ti-paths.inc | 2 | ||||
-rw-r--r-- | meta-ti-extras/recipes-ti/includes/ti-unpack.inc | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/meta-ti-extras/recipes-ti/includes/ti-paths.inc b/meta-ti-extras/recipes-ti/includes/ti-paths.inc index e8b0f17b..9f8b5897 100644 --- a/meta-ti-extras/recipes-ti/includes/ti-paths.inc +++ b/meta-ti-extras/recipes-ti/includes/ti-paths.inc | |||
@@ -20,7 +20,6 @@ export MATHLIB_C66_INSTALL_DIR_RECIPE = "${installdir}/ti-mathlib-c66x-tree" | |||
20 | export MATHLIB_C674_INSTALL_DIR_RECIPE = "${installdir}/ti-mathlib-c674x-tree" | 20 | export MATHLIB_C674_INSTALL_DIR_RECIPE = "${installdir}/ti-mathlib-c674x-tree" |
21 | export MPM_INSTALL_DIR_RECIPE = "${installdir}/ti-mpm-tree" | 21 | export MPM_INSTALL_DIR_RECIPE = "${installdir}/ti-mpm-tree" |
22 | export OMP_INSTALL_DIR_RECIPE = "${installdir}/ti-omp-tree" | 22 | export OMP_INSTALL_DIR_RECIPE = "${installdir}/ti-omp-tree" |
23 | export OSAL_INSTALL_DIR_RECIPE = "${installdir}/ti-osal-tree" | ||
24 | export PDK_INSTALL_DIR_RECIPE = "${installdir}/ti-pdk-tree" | 23 | export PDK_INSTALL_DIR_RECIPE = "${installdir}/ti-pdk-tree" |
25 | export SYSBIOS_INSTALL_DIR_RECIPE = "${installdir}/ti-sysbios-tree" | 24 | export SYSBIOS_INSTALL_DIR_RECIPE = "${installdir}/ti-sysbios-tree" |
26 | export SWTOOLS_INSTALL_DIR_RECIPE = "${installdir}/ti-swtools-tree" | 25 | export SWTOOLS_INSTALL_DIR_RECIPE = "${installdir}/ti-swtools-tree" |
@@ -48,7 +47,6 @@ export MATHLIB_C66_INSTALL_DIR = "${STAGING_DIR_TARGET}${MATHLIB_C66_INSTALL_DI | |||
48 | export MATHLIB_C674_INSTALL_DIR = "${STAGING_DIR_TARGET}${MATHLIB_C674_INSTALL_DIR_RECIPE}" | 47 | export MATHLIB_C674_INSTALL_DIR = "${STAGING_DIR_TARGET}${MATHLIB_C674_INSTALL_DIR_RECIPE}" |
49 | export MPM_INSTALL_DIR = "${STAGING_DIR_TARGET}${MPM_INSTALL_DIR_RECIPE}" | 48 | export MPM_INSTALL_DIR = "${STAGING_DIR_TARGET}${MPM_INSTALL_DIR_RECIPE}" |
50 | export OMP_INSTALL_DIR = "${STAGING_DIR_TARGET}${OMP_INSTALL_DIR_RECIPE}" | 49 | export OMP_INSTALL_DIR = "${STAGING_DIR_TARGET}${OMP_INSTALL_DIR_RECIPE}" |
51 | export OSAL_INSTALL_DIR = "${STAGING_DIR_TARGET}${OSAL_INSTALL_DIR_RECIPE}" | ||
52 | export PDK_INSTALL_DIR = "${STAGING_DIR_TARGET}${PDK_INSTALL_DIR_RECIPE}" | 50 | export PDK_INSTALL_DIR = "${STAGING_DIR_TARGET}${PDK_INSTALL_DIR_RECIPE}" |
53 | export SWTOOLS_INSTALL_DIR = "${STAGING_DIR_TARGET}${SWTOOLS_INSTALL_DIR_RECIPE}" | 51 | export SWTOOLS_INSTALL_DIR = "${STAGING_DIR_TARGET}${SWTOOLS_INSTALL_DIR_RECIPE}" |
54 | export SYSBIOS_INSTALL_DIR = "${STAGING_DIR_TARGET}${SYSBIOS_INSTALL_DIR_RECIPE}" | 52 | export SYSBIOS_INSTALL_DIR = "${STAGING_DIR_TARGET}${SYSBIOS_INSTALL_DIR_RECIPE}" |
diff --git a/meta-ti-extras/recipes-ti/includes/ti-unpack.inc b/meta-ti-extras/recipes-ti/includes/ti-unpack.inc index 13068843..4cefefbf 100644 --- a/meta-ti-extras/recipes-ti/includes/ti-unpack.inc +++ b/meta-ti-extras/recipes-ti/includes/ti-unpack.inc | |||
@@ -5,7 +5,7 @@ | |||
5 | # TI_BIN_UNPK_ARGS - contains the arguments to be passed to the bin file. | 5 | # TI_BIN_UNPK_ARGS - contains the arguments to be passed to the bin file. |
6 | # TI_BIN_UNPK_CMDS - contains list of commands separated with colon to be | 6 | # TI_BIN_UNPK_CMDS - contains list of commands separated with colon to be |
7 | # passed while unpacking the bin file. The keyword | 7 | # passed while unpacking the bin file. The keyword |
8 | # workdir expands to WORKDIR and commands are appendded | 8 | # workdir expands to UNPACKDIR and commands are appendded |
9 | # with '\n'. Eg. TI_BIN_UNPK_CMDS="Y:Y: qY:workdir" | 9 | # with '\n'. Eg. TI_BIN_UNPK_CMDS="Y:Y: qY:workdir" |
10 | # TI_BIN_UNPK_WDEXT - This variable extends workdir path, if user wants to put | 10 | # TI_BIN_UNPK_WDEXT - This variable extends workdir path, if user wants to put |
11 | # the output in some internal directory | 11 | # the output in some internal directory |
@@ -30,7 +30,7 @@ python ti_bin_do_unpack() { | |||
30 | 30 | ||
31 | # Change to the working directory | 31 | # Change to the working directory |
32 | save_cwd = os.getcwd() | 32 | save_cwd = os.getcwd() |
33 | workdir = localdata.getVar('WORKDIR') | 33 | workdir = localdata.getVar('UNPACKDIR') |
34 | workdir = bb.data.expand(workdir, localdata) | 34 | workdir = bb.data.expand(workdir, localdata) |
35 | os.chdir(workdir) | 35 | os.chdir(workdir) |
36 | 36 | ||