On 05/31/10 16:47, Vladimir Dronnikov wrote:
It seems that the kernel is not calling what is given in
/proc/sys/kernel/hotplug or that mdev is not sourcing /etc/mdev.conf
You can make /proc/sys/kernel/hotplug point to a helper script (say,
/etc/hotplug) which can read:
#!/bin/sh
set>>/tmp/MDEV
echo $@>>/tmp/MDEV
exec /bin/busybox mdev $*
and then analyse /tmp/MDEV.
And if you have strace on your system you can even:
#!/bin/sh
set>>/tmp/MDEV
echo $@>>/tmp/MDEV
exec /usr/bin/strace -f -v -s1024 -o /tmp/log.txt /bin/busybox mdev $*
-- Vladimir
Many thanks Vladimir,
in fact the problem was not is what mdev was doing but that it was not
getting triggered at all.
After some poking I found that CONFIG_CONFIGFS_FS was configured M
instead of Y .
That seems to have been the cause.
best regards.
_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox