diff options
-rw-r--r-- | recipes-bsp/atf/atf_git.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes-bsp/atf/atf_git.bb b/recipes-bsp/atf/atf_git.bb index 34203266..58b1d8f7 100644 --- a/recipes-bsp/atf/atf_git.bb +++ b/recipes-bsp/atf/atf_git.bb | |||
@@ -65,7 +65,12 @@ do_compile() { | |||
65 | export LIBPATH="${RECIPE_SYSROOT_NATIVE}" | 65 | export LIBPATH="${RECIPE_SYSROOT_NATIVE}" |
66 | install -d ${S}/include/tools_share/openssl | 66 | install -d ${S}/include/tools_share/openssl |
67 | cp -r ${RECIPE_SYSROOT}/usr/include/openssl/* ${S}/include/tools_share/openssl | 67 | cp -r ${RECIPE_SYSROOT}/usr/include/openssl/* ${S}/include/tools_share/openssl |
68 | ${RECIPE_SYSROOT_NATIVE}/usr/bin/cst/gen_keys 1024 | 68 | if [ ! -f ${RECIPE_SYSROOT_NATIVE}/usr/bin/cst/srk.pri ]; then |
69 | ${RECIPE_SYSROOT_NATIVE}/usr/bin/cst/gen_keys 1024 | ||
70 | else | ||
71 | cp ${RECIPE_SYSROOT_NATIVE}/usr/bin/cst/srk.pri ${S} | ||
72 | cp ${RECIPE_SYSROOT_NATIVE}/usr/bin/cst/srk.pub ${S} | ||
73 | fi | ||
69 | 74 | ||
70 | if [ "${BUILD_FUSE}" = "true" ]; then | 75 | if [ "${BUILD_FUSE}" = "true" ]; then |
71 | ${RECIPE_SYSROOT_NATIVE}/usr/bin/cst/gen_fusescr ${RECIPE_SYSROOT_NATIVE}/usr/bin/cst/input_files/gen_fusescr/${chassistype}/input_fuse_file | 76 | ${RECIPE_SYSROOT_NATIVE}/usr/bin/cst/gen_fusescr ${RECIPE_SYSROOT_NATIVE}/usr/bin/cst/input_files/gen_fusescr/${chassistype}/input_fuse_file |