I'm using ptxdist to build uclinux for an EFM32GG DK3750. It provides a small unix shell, with busybox. When I then try to compile io.js for the distribution, and copy it to the target bin folder and run the program on the target, I get the error
iojs: applet not found
This is the same result I get from typing busybox iojs
. Typing a random string in the shell, I get that there's no such file on the system.
Using ls -l
in /bin
shows that iojs is a binary, unlike the other commands provided through busybox, which are symlinks. Executing the binary directly with ./bin/iojs
results in the same error. What way can I tell busybox to not try to execute the applet, but that I want to use the binary in bin?