Hi
I was wondering why when using the
--quiet parameter on kernel command line, dinit was continuing to output status lines at boot.
I found out that
/sbin/init is linked to
dinit-init which is a shell script handling a cgroup configuration file, but not sending actual script parameters to dinit.
There are two ways to fix it:
- specify init=/sbin/dinit (plus additional parameters) on boot loader (thus loosing that cgroup configuration)
- modify /sbin/dinit-init script to add "$@" at the end of dinit exec line
A minor bug but that can be easily fixed :)