--- In "ramandeep" <> wrote:
>
>
> Hi All,
>
> Thanks Robert.
> Problem solved.I booted in the busybox environment and executed script
> 'linuxrc-sdmount' which automatically mounts the debian partition of linux in
> /mnt/root.
>
> Further to this I was trying to execute an application (compiled in Debian
> partition of SD card using gcc)in the busybox environment.The app works fine
> with the SD card mounted at /mnt/root but when I unmount this
> partition(/mnt/root) I get the following error:
>
> /bin/sh: ./prog: not found
>
> Any ideas as to what could be the issue here?
>
> Thanks,
> Ramandeep
It is quite likely that your program prog is looked for a shared library and
can't find it. /lib will be a link to /mnt/root/lib, which is not there. The
shell error message is misleading and suggests that it is prog that is not
found, which is not the case.
Recompile the prog with -static as an option to gcc.
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ts-7000/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/ts-7000/join
(Yahoo! ID required)
<*> To change settings via email:
<*> To unsubscribe from this group, send an email to:
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|