Brillo体系装置辅导
谷歌提出了Project IoT(Internet Of Things),物联网方案,并发布了Brillo操作体系。Brillo是一个物联网底层操作体系。它是源于Android,是对Android底层的一个细化,得到了Android的悉数支撑,比方蓝牙、Wifi等技能,而且能耗很低,安全性很高,任何设备制造商都能够直接运用,是一个彻底端到端的使用。
一、Brillo代码下载
repo init -u https://android.googlesource.com/brillo/manifest -b master
二、编译环境
Ubuntu 14.04
装置以下内容:
sudo apt-get install Git-core gnupg flex bison gperf build-essenTIal \
zip curl zlib1g-dev gcc-mulTIlib g++-mulTIlib libc6-dev-i386 \
lib32ncurses5-dev x11proto-core-dev libx11-dev lib32z-dev ccache \
libgl1-mesa-dev libxml2-uTIls xsltproc unzip openjdk-7-jdk Python-networkx
三、编译及烧录
下载dragonboard410c BSP包
wget https://developer.qualcomm.com/qfile/29541/dragonboard410c_brillo-v1.1.tar.gz
解压到对应目录
$ tar zxvf dragonboard410c_brillo-v1.1.tar.gz
$ mkdir -p vendor/bsp/qcom/device/dragonboard
$ cp -a dragonboard410c_brillo-v1.1/linux_410c_board_support_package_LA.BR.1.2.4_rb1.10 vendor/bsp/qcom/device/dragonboard/
$cp -a dragonboard410c_brillo-v1.1/qcom_410c_non-hlos_binaries_A8016BAAAAGLYD2131.1 vendor/bsp/qcom/device/dragonboard/
编译
$ source build/envsetup.sh
$ lunch dragonboard-eng
$ make -j8
烧录
履行脚本out/target/product/dragonboard/provision-device(device/qcom/dragonboard)即可完结烧录。
四、体系启动
Brillo体系启动后没有界面显现,能够经过串口或usb检查log。
串口衔接方法如下图:
串口波特率设置为115200 8N1。
USB衔接,经过adb指令衔接到设备;当设备作为device时,拨码开关拨到device端,如下图:
当作为host时,拨码开关拨到host端,如下图:
体系启动后,wifi默以为AP形式,经过ifconfig指令能够看到ip
在其他设备上能够查找到,如下图:
衔接后能够经过ping指令测验。