Tiny Core Linux
Tiny Core Base => TCB Q&A Forum => Topic started by: bigpcman on November 06, 2009, 02:12:43 PM
-
Robert could you please remind me what this means:
"Re-implements /opt/tce boot time support."
-
For easy mode remastering. Your repository can be included in the image.
-
For easy mode remastering. Your repository can be included in the image.
OK, that leads me to another question. What happens on boot and post boot if there is an /opt/tce repository and a /sdb/tce repository present.
-
What is the load order of /opt/tce and /tce and how the startup scripts executed?
-
The load order and startup script execution is the same as before, using dependency logic. The startup scripts are simply executed in the proper order after all the extensions are loaded and ldconfig/depmod run.
-
from tce-setup script:
if [ "$(ls -A /opt/tce)" ]; then
TCEDIR=/opt/tce
FILELIST=`ls "$TCEDIR"/*.tc* | grep -E .tc[ez][ml]*$`
for FILE in $FILELIST; do process; done
fi
if [ -s /opt/.tce_dir ]; then
TCEDIR="$(cat /opt/.tce_dir)"
FILELIST=`ls "$TCEDIR"/*.tc* | grep -E .tc[ez][ml]*$`
for FILE in $FILELIST; do process; done
fi
-
from tce-setup script:
grep -E .tc[ez][ml]*$
wow...that's sweet :)