Mounts were done
prior to fstab being updated by tc-config. I have many manipulation tactics going on long before tc-config launches from rcS for what you might consider a "dynamic" command line (proc/cmdline)
The concept here is to mute responses (less cluttered boot) where necessary, but there's a few I haven't been able to put a cork in.
EXT3/2 notice: Thank you Curaga for showing me what's right in front of my eyes!!!
acpi/cron... these two are being stubborn. They both have init.d scripts, but neither of them like being quiet.
acpid is being launched by start-stop-daemon. Adding --quiet as well as redirecting has had no effect.
crond is being launched manually through busybox... busybox likes to chatter.
sudo app [start] >/dev/null 2>&1 or 2>/dev/null don't seem to have a bearing on the outcome.
crond (busybox 1.20.2) started, log level 8I'm thinking this one's due to the BB alias; which I'll be looking into. ACPI on the other hand... not sure of that one yet.
Thanks for taking the time to reply!