編譯arm平臺的ethtool

vc66vcc發表於2016-09-01

<iframe id="BAIDU_SSP__wrapper_u653336_0_iframe" src="http://pos.baidu.com/kcjm?rdid=653336&amp;dc=2&amp;di=u653336&amp;dri=0&amp;dis=0&amp;dai=1&amp;ps=236x405&amp;dcb=BAIDU_SSP_define&amp;dtm=HTML_POST&amp;dvi=0.0&amp;dci=-1&amp;dpt=none&amp;tsr=0&amp;tpr=1472707969300&amp;ti=%E7%BC%96%E8%AF%91arm%E5%B9%B3%E5%8F%B0%E7%9A%84ethtool_%E5%91%B5%E5%91%B5%E5%91%B5%E5%91%B5%E5%91%B5&amp;ari=2&amp;dbv=2&amp;drs=1&amp;pcs=1920x1011&amp;pss=1920x236&amp;cfv=22&amp;cpl=29&amp;chi=1&amp;cce=true&amp;cec=UTF-8&amp;tlm=1472679169&amp;rw=1011&amp;ltu=http%3A%2F%2Fwww.hehehehehe.cn%2Fi%2F570.html&amp;ltr=https%3A%2F%2Fwww.baidu.com%2Flink%3Furl%3D_JYKKLotPxhznp7axJwwVGYzHjJA2gzC_kwBNlgo0ULC7LDYwPRljh3HWceWCYLQ%26wd%3D%26eqid%3Ddbaa5231000013b40000000657c7bd71&amp;ecd=1&amp;psr=1920x1200&amp;par=1920x1160&amp;pis=-1x-1&amp;ccd=32&amp;cja=true&amp;cmi=48&amp;col=zh-CN&amp;cdo=-1&amp;tcn=1472707969&amp;qn=2738fe5910c5ebf7&amp;tt=1472707969284.16.94.110" width="120" height="270" align="center,center" vspace="0" hspace="0" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" allowtransparency="true" style="box-sizing: border-box; border-width: 0px; vertical-align: bottom; margin: 0px;"></iframe>
關閉

1.下載ethtool原始碼
git clone git://git.kernel.org/pub/scm/network/ethtool/ethtool.git
2.準備交叉編譯工具
可以從codesoucery下載
3.編譯
假設目標機器的規格如下:
ABI: EABI version 4
little endian
armv5te

按如下順序執行:
./autogen.sh
./configure CC=CROSS-COMPILER PATH CFLAGS=-march=armv5te --host=arm-xx-linux

或者 cat /proc/cpuinfo 檢視mcpu屬性或march屬性,新增對應configure屬性

./configure CC=CROSS-COMPILER CFLAGS=-mcpu=cortex-a7 --host=arm-xx-linux



如果需要靜態編譯則
開啟vim Makefile 在CC= CROSS-COMPILER後面加上--static
儲存
make

就在當前資料夾內生成一個可執行檔案ethtool
確認編譯後的檔案
readelf -h ethtool
確認以下資訊(具體內容要看自己的配置了)
OS/ABI UNIX - System V
Machine :ARM
Flags Version4 EABI


命令描述:

ethtool 是用於查詢及設定網路卡引數的命令。

使用概要:
ethtool ethx       //查詢ethx網口基本設定,其中 x 是對應網路卡的編號,如eth0、eth1等等
ethtool –h        //顯示ethtool的命令幫助(help)
ethtool –i ethX    //查詢ethX網口的相關資訊 
ethtool –d ethX    //查詢ethX網口註冊性資訊
ethtool –r ethX    //重置ethX網口到自適應模式
ethtool –S ethX    //查詢ethX網口收發包統計
ethtool –s ethX [speed 10|100|1000] [duplex half|full]  [autoneg on|off]        //設定網口速率10/100/1000M、設定網口半/全雙工、設定網口是否自協商


相關文章