running script in android at startup on tiny210

Kevin Lambert
The android/linux distro that comes with the tiny210 doesnt have an
/etc/init.d directory or /etc/rc.local for starting off boot time scripts. 
I need to get a script to run on this tablet under android at boot time and
does anybody know where to put it?

Thanks,.

Kevin

Reggie
I guess it depends entirely how early you want your script called, if you
look in the init.mini210.rc file in the root, search for init.mini210.sh,
this will show you how a script can be called. be aware of the section it's
in, 'on post-fs-data' this will affect exactly when your script is called! 
Other sections in the init.mini210.rc file are 'on boot' and 'on fs'.

Of course I'm using the names from the mini210 images but I expect the
files to be exactly the same or very similar even if the names are slightly
different.

Kevin Lambert
Thanks, that gave me what I needed.

Kevin Lambert
I spoke too soon, I modified init.mini210.rc to run my new script except
that it isnt actually running it because the link that should show up in
/dev/ isnt there.

Reggie
not entirely sure what to suggest without more information about what
you're missing in /dev/ or how you're trying to call your script.