一:使用有wifi配置的根檔案系統
刷機可以參考:
(開發板)fdisk -c 0
// 燒錄uboot
fastboot flash bootloader linux+qt4.8/uboot.bin
//重啟
fastboot reboot
set bootcmd 'movi read kernel 30008000; bootm 30008000'
set bootargs console=ttysac2,115200 root=/dev/mmcblk0p2 rw init=/linuxrc rootfstype=ext2
(開發板)fdisk -c 0
// 燒錄kernel
fastboot flash kernel linux+qt4.8/zimage-qt
// 燒錄android rom
fastboot flash system linux+qt4.8/rootfs_qt4.ext3
二:配置網路
# ifconfig
# ifconfig eth0 192.168.43.10
# ping 192.168.43.30
三:掛載nfs伺服器
mount -t nfs -o nolock 192.168.43.30:/home/liu/arm/rootfs/rootfs1 /mymnt
四:建立wifi驅動原始檔
root@liu-virtual-machine:/home/liu/arm/test/wifi_source# ls
ate common iwpriv_usage.txt makefile mgmt phy readme_sta_usb rt2870sta.dat sta_ate_iwpriv_usage.txt
chips include mac mcu os rate_ctrl rt2870stacard.dat sta tools
X210串列埠配置與stdio移植
串列埠控制器初始化關鍵步驟 1 初始化串列埠的tx和rx引腳所對應的gpio 查原理圖可知rx和rx分別對應gpa0 1和gpa0 0 2 gpa0con 0xe0200000 bit 3 0 0b0010 bit 7 4 0b0010 3 初始化這幾個關鍵暫存器ucon0 ulcon0 umcon...
ARM裸機 x210的啟動方式
x210的啟動方式 一.基本概念 1.記憶體 sram靜態記憶體 特點 容量小 高 不需要軟體初始化 上電就可以使用 dram動態記憶體 特點 容量大 低 不能上電就工作 需要軟體進行一定的初始化 2.外存 norflash 容量小 可以通過匯流排的方式直接連線到cpu cpu上電後就可以訪問 一般...
嘗試編譯x210的uboot
x210的編譯首先要經過配置,之後才能進行編譯。我這裡使用的是九鼎官方已經做好的x210的uboot 進行編譯得到u boot.bin。uboot的或得路徑可以是從uboot的官方 可以是soc官方 也可以是你用的開發板的廠家。編譯過程 1 在linux源生目錄下配置編譯 1 x210移植過的ubo...