imx6平台:(已验证OKMX6Q-S2,OKMX6UL-C) 在imx6平台根目录下bin目录下存在自动登录的软连接login,登录验证则是由etc/rc.d/rc_mxc.S脚本实现的。 要实现自动登录可以给该链接传递参数,使其直接登录root账户。
修改rc_mxc.S使其内容如下: #!/bin/bash # /bin/login -f root //直接传递root登陆的参数 /* if grep -sq ttymxc0 /proc/cmdline; then /sbin/getty -L ttymxc0 115200 vt100 elif grep -sq ttymxc1 /proc/cmdline; then /sbin/getty -L ttymxc1 115200 vt100 elif grep -sq ttymxc2 /proc/cmdline; then /sbin/getty -L ttymxc2 115200 vt100 elif grep -sq ttymxc3 /proc/cmdline; then /sbin/getty -L ttymxc3 115200 vt100 else sleep 100000 */ fi 这样开机后无需验证即可直接登录root账户 |
|小黑屋| 飞凌嵌入式 ( 冀ICP备12004394号-1 )
GMT+8, 2024-11-22 03:26
Powered by Discuz! X3.4
© 2001-2013 Comsenz Inc.