Quoth Lance Spaulding: > [ ! -x /bin/autorun ] || sh /bin/autorun Just out of curiosity, why did you write it like that? Wouldn't this be clearer:
[ -x /bin/autorun ] && sh /bin/autorun Anyway, if there's just one app that you want to automatically run, you can refer to it directly; just add something like this to the end of /etc/rc: /bin/yourapp & (You probably want to run it in the background so that you still get a shell as well.) _______________________________________________ uClinux-dev mailing list [email protected] http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This message was resent by [email protected] To unsubscribe see: http://mailman.uclinux.org/mailman/options/uclinux-dev
