TODO: update differences with m-i-t

This commit is contained in:
Lucas De Marchi 2012-01-12 14:45:11 -02:00
parent 0cf2832a31
commit f564394f99

14
TODO
View File

@ -96,6 +96,20 @@ modprobe
module appearing on /sys/modules/* without a initstate file to determine if
it is builtin.
* modprobe from m-i-t does not honour softdeps for install commands. E.g.:
config:
install bli "echo bli"
install bla "echo bla"
softdep bla pre: bli
With m-i-t, the output of 'modprobe --show-depends bla' will be:
install "echo bla"
While with kmod:
install "echo bli"
install "echo bla"
depmod
------