本文主要是介绍arm linux下使用mdev vs udev,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
udev 和mdev 是两个使用uevent 机制处理热插拔问题的用户空间程序,两者的实现机理不同。udev 是基于netlink 机制的,它在系统启动时运行了一个deamon 程序udevd,通过监听内核发送的uevent 来执行相应的热拔插动作,包括创建/删除设备节点,加载/卸载驱动模块等等。mdev 是基于uevent_helper 机制的,它在系统启动时修改了内核中的uevnet_helper 变量(通过写/proc/sys/kernel/hotplug),值为“/sbin/mdev”。这样内核产生uevent 时会调用uevent_helper 所指的用户级程序,也就是mdev,来执行相应的热拔插动作。udev 使用的netlink 机制在有大量uevent 的场合效率高,适合用在PC 机上;而mdev 使用的uevent_helper 机制实现简单,适合用在嵌入式系统中。另外要说明的一点是,uevent_helper 的初始值在内核编译时时可配置的,默认值为/sbin/hotplug。如果想修改它的值,写/proc/sys/kernel/hotplug 文件就可以了,例如:
echo “/sbin/mdev” > /proc/sys/kernel/hotplug
补充一点:如果使用的是udevd,那么uevent_helper变量应为空,即
echo “ ” > /proc/sys/kernel/hotplug
refer tohttp://sxw0624.blog.163.com/blog/static/200168038201272451049893/
http://bbs.csdn.net/topics/300056887
http://blog.csdn.net/walkingman321/article/details/5917737
1.udev
1.启动方式
一般是在inittab的rcS的服务启动列表里面去启动
/etc/
root@freescale /etc/rc.d$ cat rcS
#!/bin/sh
# minimal startup script, will work with msh (this is best available in
# MMUless format).
# load the configuration information
. /etc/rc.d/rc.conf //服务配置文件
mode=${1:-start}
if [ $mode = "start" ]
then
services=$cfg_services
else
services=$cfg_services_r
fi
cfg_services=${2:-$services}
echo "cfg:"
echo $cfg_services
# run the configured sequence
for i in $cfg_services
do
if [ -x /etc/rc.d/init.d/$i ]
then
/etc/rc.d/init.d/$i $mode //调用各个服务
fi
done
if [ $# -ge 2 ]
then
exit 0
fi
# show all kernel log messages
#echo 8 > /proc/sys/kernel/printk
# run rc.local if present and executable
if [ -x /etc/rc.d/rc.local ]
then
/etc/rc.d/rc.local $mode
fi
root@freescale /etc/rc.d$ cat rc.conf
all_services="mount-proc-sys mdev udev hostname devfsd depmod modules filesystems syslog network inetd portmap dropbear sshd boa smb dhcpd settime fslgnome watchdog bluetooth gtk2 pango"
all_services_r="pango gtk2 bluetooth watchdog fslgnome settime dhcpd smb boa sshd dropbear portmap inetd network syslog filesystems modules depmod devfsd hostname udev mdev mount-proc-sys"cfg_services="mount-proc-sys hostname depmod modules filesystems inetd "cfg_services_r=" inetd filesystems modules depmod hostname mount-proc-sys"export HOSTNAME="freescale"
export NTP_SERVER=""
export MODLIST=""
export RAMDIRS="/tmp /var"
export TMPFS="tmpfs"
export TMPFS_SIZE="512k"
export READONLY_FS=""
export INETD_ARGS=""
export BOA_ARGS=""
export SMBD_ARGS=""
export NMBD_ARGS=""
export DHCP_ARG=""
export DEPLOYMENT_STYLE="JFFS2"
export SYSCFG_DHCPC_CMD="udhcpc -b -i "
export DROPBEAR_ARGS=""
root@freescale /etc/rc.d/init.d$ cat udev
#!/bin/sh
PATH=$PATH:/sbin:/binif [ ! -x /sbin/udevd ]
thenexit 0
ficase "$1" instart)echo "" > /proc/sys/kernel/hotplugmount -n -o mode=0755 -t tmpfs tmpfs /dev# Create static device nodes in /devmknod /dev/console c 5 1mknod /dev/null c 1 3echo "Starting the hotplug events dispatcher udevd"udevd --daemonecho "Synthesizing initial hotplug events"udevtriggerudevsettle --timeout=300mkdir /dev/ptsmount -n -t devpts devpts /dev/ptsmkdir /dev/shm;;stop);;reload)udevcontrol --reload_rules;;*)echo "Usage: /etc/rc.d/init.d/udev {start|stop|reload}"echoexit 1;;
esacexit 0
如果不需要启动时启动,需要在rc.conf中删除掉对应的服务项目
手动启动udev:
/etc/rc.d/init.d/udev start
启动时,主要启动了
udevd --daemon
udevtrigger
2.mdev
[root@hemei]# cat /etc/init.d/rcS
http://blog.csdn.net/hugerat/article/details/3437099
这篇关于arm linux下使用mdev vs udev的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!