编译buildroot后要做的事

来源:互联网 发布:剑三毛毛捏脸数据 编辑:程序博客网 时间:2024/06/02 07:03

buildroot编译时间好长,实测2小时

nfs挂载失败

[ 21.201250] nfs: server 192.168.1.141 not responding, still trying

解决方法:配置/etc/network/interfaces文件

配置静态ip

3 iface lo inet loopback
  4 
  5 #auto eth0
  6 #iface eth0 inet dhcp
  7 auto eth0
  8 iface eth0 inet static
  9 address 192.168.1.20
 10 mask 255.255.255.0
 11 gateway 192.168.1.1

成功!

原创粉丝点击