When booting tinycore the process executes tc-config at the end of the script, it clears screen and shows the text logo and prompt of tinycore. You can use the boot option 'pause' where human interaction is needed to continue. If we add something like sleep 5 to the script, the result of all the actions in the script can be read, which after the boot process continues automatically.
/etc/init.d/tc-config
....
sleep 5
if [ -n "$PAUSE" ]; then
echo -n "${BLUE}Boot time configuration completed. Press <Enter> to continue.${NORMAL}"
read junk
fi
....
Another enhancement can be made by adding some color codes to the filetool restore option.
/usr/bin/filetool.sh
....
echo -n "${BLUE}Restoring backup files from${MAGENTA} $MOUNTPOINT/$FULLPATH/${MYDATA}.tgz${BLUE} "
sudo /bin/tar -C / -zxf $MOUNTPOINT/"$FULLPATH"/${MYDATA}.tgz 2>/dev/null &
rotdash $!
echo "${GREEN}Done.${NORMAL}"
....
The result can be seen in he attached image.