We plan on not having docs populated in the intaller, to allow for easier doc updates on the release pages without having to update the installer. So move the licenses directory out of the docs directory
Signed-off-by: Aniket Limaye <[email protected]> --- meta-arago-distro/classes/tisdk-bundle.bbclass | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/meta-arago-distro/classes/tisdk-bundle.bbclass b/meta-arago-distro/classes/tisdk-bundle.bbclass index b92ca0c0..4e613c6f 100644 --- a/meta-arago-distro/classes/tisdk-bundle.bbclass +++ b/meta-arago-distro/classes/tisdk-bundle.bbclass @@ -240,7 +240,7 @@ echo " <h2>Credits</h2> <h2>Licenses</h2> -<p>Licenses can be found in the \"docs/licenses\" directory of the SDK install directory</p> +<p>Licenses can be found in the \"licenses\" directory of the SDK install directory</p> <h2><u><b>GCC RUNTIME LIBRARY EXCEPTION</b></u></h2> <p>Version 3.1, 31 March 2009</p> @@ -287,7 +287,7 @@ cat >> ${SW_MANIFEST_TEXT} << 'EOF' <Licenses> -Licenses can be found in the "docs/licenses" directory of the SDK install directory +Licenses can be found in the "licenses/" directory of the SDK install directory GCC RUNTIME LIBRARY EXCEPTION Version 3.1, 31 March 2009 @@ -876,11 +876,7 @@ tisdk_image_build () { # the licenses that were used in the build. if [ -d ${DEPLOY_DIR}/licenses ] then - if [ ! -d ${IMAGE_ROOTFS}/docs ] - then - mkdir -p ${IMAGE_ROOTFS}/docs - fi - cp -rf ${DEPLOY_DIR}/licenses ${IMAGE_ROOTFS}/docs/ + cp -rf ${DEPLOY_DIR}/licenses ${IMAGE_ROOTFS}/ fi # Create the TI software manifest -- 2.34.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14686): https://lists.yoctoproject.org/g/meta-arago/message/14686 Mute This Topic: https://lists.yoctoproject.org/mt/99787713/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
