Hi,
according to https://github.com/RMerl/asuswrt-merlin/wiki/User-scripts init-start is the earliest part right after jffs partion is mounted. Means that I can start accessing files on jffs from init-start script? E.g. to run program.
But if I call in /jffs/scripts/init-start
it produces the log file but with empty content
Myprog is an executable that I can run fine after boot.
Or what would be then the earliest (user script) part to run an executable from jffs?
Thanks for answering.
according to https://github.com/RMerl/asuswrt-merlin/wiki/User-scripts init-start is the earliest part right after jffs partion is mounted. Means that I can start accessing files on jffs from init-start script? E.g. to run program.
But if I call in /jffs/scripts/init-start
Code:
#!/bin/sh
stat /jffs/myprog > /jffs/myprog.log
Myprog is an executable that I can run fine after boot.
Or what would be then the earliest (user script) part to run an executable from jffs?
Thanks for answering.