On Wed, Feb 15, 2023 at 01:33:51PM -0600, Andrew Davis via lists.yoctoproject.org wrote: > If we rename files in the source directory the next time we need to rebuild > the original files will be gone and build will fail. Use symlinks instead. > > Signed-off-by: Andrew Davis <[email protected]>
Tested-by: Denys Dmytriyenko <[email protected]> > --- > .../recipes-ti/ti-rtos-bin/ti-rtos-firmware.bb | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/meta-ti-bsp/recipes-ti/ti-rtos-bin/ti-rtos-firmware.bb > b/meta-ti-bsp/recipes-ti/ti-rtos-bin/ti-rtos-firmware.bb > index 4744be84..56071a8c 100644 > --- a/meta-ti-bsp/recipes-ti/ti-rtos-bin/ti-rtos-firmware.bb > +++ b/meta-ti-bsp/recipes-ti/ti-rtos-bin/ti-rtos-firmware.bb > @@ -121,18 +121,18 @@ do_install:prepend:j721s2-hs-evm() { > # Update the am64xx ipc binaries to be consistent with other platforms > do_install:prepend:am64xx() { > ( cd ${RTOS_IPC_FW_DIR}; \ > - mv am64-main-r5f0_0-fw > ipc_echo_test_mcu1_0_release_strip.xer5f; \ > - mv am64-main-r5f0_1-fw > ipc_echo_test_mcu1_1_release_strip.xer5f; \ > - mv am64-main-r5f1_0-fw > ipc_echo_test_mcu2_0_release_strip.xer5f; \ > - mv am64-main-r5f1_1-fw > ipc_echo_test_mcu2_1_release_strip.xer5f; \ > - mv am64-mcu-m4f0_0-fw > ipc_echo_test_mcu3_0_release_strip.xer5f; \ > + ln -s am64-main-r5f0_0-fw > ipc_echo_test_mcu1_0_release_strip.xer5f; \ > + ln -s am64-main-r5f0_1-fw > ipc_echo_test_mcu1_1_release_strip.xer5f; \ > + ln -s am64-main-r5f1_0-fw > ipc_echo_test_mcu2_0_release_strip.xer5f; \ > + ln -s am64-main-r5f1_1-fw > ipc_echo_test_mcu2_1_release_strip.xer5f; \ > + ln -s am64-mcu-m4f0_0-fw > ipc_echo_test_mcu3_0_release_strip.xer5f; \ > ) > } > > # Update the am62xx ipc binaries to be consistent with other platforms > do_install:prepend:am62xx() { > ( cd ${RTOS_IPC_FW_DIR}; \ > - mv am62-mcu-m4f0_0-fw > ipc_echo_test_mcu2_0_release_strip.xer5f; \ > + ln -s am62-mcu-m4f0_0-fw > ipc_echo_test_mcu2_0_release_strip.xer5f; \ > ) > } > > -- > 2.39.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#15917): https://lists.yoctoproject.org/g/meta-ti/message/15917 Mute This Topic: https://lists.yoctoproject.org/mt/96991013/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-ti/leave/6695321/21656/1393940836/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
