Hi,
I added a new script into my recipe busybox, so the new file is a C file I had to use:
do_compile() {
${CC} ${WORKDIR}/myscript.c -o ${WORKDIR}/myscript
}
then
do_install_append() {
}
After I finish everything and bake again I got this error says:
sed: can't read busybox.links*: No such file or directory
Is because I need to reconfigure the busybox to add the C output file?
If so how to make my busybox realizes my changes.