My busybox does not execute non-applet utility commands
I installed the latest busybox to my new embedded project. It runs OK until I try to put dropbear in my application. The b开发者_运维百科usybox shell complains that dropbear is not found although "which dropbear" command gives me the correct answer "/sbin/dropbear". If I change its mode to RW, it complains that dropbear is not executable. I have tried other non-bosybox commands and it complains the same. It must be a setup issue. Can anyone help me out? Thank you very much.
Allan
Perhaps you're missing the necessary libraries? Some environments don't print helpful messages when this happens. Check what libraries it wants to link against.
ldd
or objdump -x <file> |grep NEEDED
are helpful.
You probably want to do this from your build machine, as it sounds like the embedded shell environment is pretty broken.
精彩评论