On Tue, Feb 07, 2023 at 05:42:35PM -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.
Just a question - will the install/deploy steps later dereference that symlink and install the file content or just a now broken symlink? Would a hardlink be better here and avoid uncertainty/confusion? > Signed-off-by: Andrew Davis <[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 c09f67b5..3c372b32 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 > @@ -125,18 +125,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 (#15805): https://lists.yoctoproject.org/g/meta-ti/message/15805 Mute This Topic: https://lists.yoctoproject.org/mt/96819774/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-ti/leave/6695321/21656/1393940836/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
