Hi, i know this could seems like a "simple" question but after a lot fo try i can't seems to make it works, i am stuck on this. I am working on a sbc6000x board, linux 2.6.24, an embedded system.
I am working on a pretty nice project which when called like this run perfectly :
Code:
cd /bin
./apps
(/bin/apps don't works, it must be ./apps from the directory)
After searching a little about the startup i learned about rc.local and created it in /etc/init.d, rc.local look like this :
Code:
#!bin/sh
# /etc/rc.d/rc.local: Local system initialization script.
#
cd /bin
./apps
cd
Sadly it seems it is never called. I was thinking about maybe add cd /bin, /.apps to the end of the etc/profile but i don't know if profile can run command aside from simple scripts call.
Does anyone has an idea on why this don't work or on how i could do this ?