Sometimes the system will hang during reboot as well, I think it may be related to `plymouth-stop`, but I don't have strong evidence of that currently.
My kernel config has only very minimal changes from `omap2plus_defconfig`
- enabling devtmpfs and automounting it
- disabling omap2, omap4, etc, except omap3
- disabling all boards except for overo
I don't think that plymouth is a particularly necessary service (especially since I don't have a display), so my temporary solution is to disable it like so:
cd /etc/init
ls plymouth*.conf | while read CONF
do
mv ${CONF} ${CONF}.off
done
Can anyone offer me any suggestions?
AJ ONeal