I made a small init script in order to see if there are any unusual processess with open filehandles blocking the remount, however I couldn't spot anything on first sight.
I used the following script:
----lsof----
#!/bin/sh
lsof | tee /root/lsof.out
sync; sync
----lsof----
and made it run just before umountfs and umountroot on shutdown/reboot (via "update-rc.d lsof start 35 0 6 .").
I made a small init script in order to see if there are any unusual processess with open filehandles blocking the remount, however I couldn't spot anything on first sight.
I used the following script:
----lsof----
#!/bin/sh
lsof | tee /root/lsof.out
sync; sync
----lsof----
and made it run just before umountfs and umountroot on shutdown/reboot (via "update-rc.d lsof start 35 0 6 .").
The output is attached.