写在前面:最近几篇以【OpenWRT】打头的帖子并不会涉及到RF技术,所以请高抬贵手,不要移版。
前面的Helloworld程序还要手动复制到路由器上,非常麻烦。
为了解决这个问题,可以用挂载同步网络文件夹,比如samba或nfs,其中nfs相对简单易用些。
首先,在fedora上
yum install rpcbind nfs-utils
vi /etc/exports
- /home/llp/openwrt/OpenWrt-SDK-ramips-mt7620_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64/build_dir 192.168.* (rw,sync,no_root_squash)
复制代码 systemctl restart rpcbind.service
systemctl restart nfs.service
systemctl stop firewalld
然后,在路由器上:
mount -o nolock 192.168.8.220:/home/llp/openwrt/OpenWrt-SDK-ramips-mt7620_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64/build_dir /root/build_dir
这样便可以直接执行helloworld了
- root@OpenWrt:~/build_dir/target-mipsel_24kec+dsp_uClibc-0.9.33.2/helloworld# ./h
- elloworld
- Hello World!
复制代码
NFS搞定后,在开发机编译出来的应用程序就可以通过gdb命令,实现一键远程调试了。、
下一篇会在codeblock中尝试这种方案。