Ubuntu Linux编译出能运行在DD、Tomato下的软件(5)

通常交叉编译开源软件一般只需以下几步即可编译

1 export PATH="$PATH:/home/jacky/tools/dd/bin"

2 ./configure --host=mipsel-linux

3 make

...........................................................................

针对tomato对xclient进行的小修改

xclient源码中,使用了pkill、dhclient命令,但是tomato中并没有这两个命令,

所以用killall替代pkill,用dhcpc-renew替代dhclient。

通常在tomato中客户端是设置成开机自动运行的,我们难以知道客户端运行情况。

所以我想了一个折中的方法,把拨号时的提示信息输出到日志文件中。

tomato中有个logger命令,可以用他把信息输入到日志文件中,

如运行logger hello,可在tomato日志中发现信息user.notice root: hello

具体修改如图所示

Ubuntu Linux编译出能运行在DD、Tomato下的软件

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwsgxp.html