OpenWrt for Arduino Yun cheat sheet

From misc notes
Revision as of 10:13, 29 January 2016 by Nxhack (talk | contribs)
Jump to navigation Jump to search

Arduino Yun の Atheros AR9331 で稼働する OpenWrt が、LLC 版 OpenWrt-yun も Linino もカーネルやパッケージが古くていろいろ残念なので OpenWrt の最新版との同期がとれるかをメモ。

すでにあるポーティング版 OpenWrt-yun

Arduino Yun フォーラムで発見した RedSnake64 さんの実装。

RedSnake64版 OpenWrt-yun:

https://github.com/RedSnake64/openwrt-yun
ChaosCalmer_v1.2
人柱で導入してみた。mDNS がつかえず .local でアクセスできなかった。IP 指定で設定まではいけたがいったん実験終了。
avahi-daemon 確認する事。

本家 OpenWrt の Yun Profile を調査する

OpenWrt Project ですでに Arduino Yun の Profile がある。

target/linux/ar71xx/generic/profiles/arduino.mk
ar71xx: add Arduino Yun
yunbridge
Arduino YUN bridge library が取り込まれている。

OpenWrt snapshot images:

https://downloads.openwrt.org/snapshots/trunk/ar71xx/generic/
https://downloads.openwrt.org/snapshots/trunk/ar71xx/generic/packages/
openwrt-ar71xx-generic-yun-16M-squashfs-sysupgrade.bin
時々ビルドに失敗して snapshots から消えてしまうようだ。一週間ぐらい気長に待つ。
次はこれで実験する予定。
git.openwrt.org Git - openwrt trunk tree
OpenWrt 本体とコアなパッケージのレポジトリ。
https://github.com/openwrt/packages
本家のオプションパッケージは github で管理するようになっている。
Where to get packages OpenWrt Wiki

OpenWrt build メモ

RedSnake64 さん版を野良ビルド中...できるだけ本家の HEAD に近いように工夫する実験中...

git clone --depth=1 --branch 15.05 --single-branch https://github.com/RedSnake64/openwrt-yun.git
git clone --depth=1 --branch master --single-branch https://github.com/openwrt/openwrt.git
次はこっちで実験
apt-get update
apt-get install -y git subversion build-essential asciidoc \
	fastjar flex gawk libgtk2.0-dev intltool zlib1g-dev \
	genisoimage libncurses5-dev libssl-dev ruby sdcc unzip \
	bison libboost-dev libxml-parser-perl libusb-dev bin86 \
	bcc sharutils openjdk-7-jdk mercurial cvs bzr \
	nodejs-legacy curl
apt-get install g++-multilib
Installing Node.js via package manager | Node.js
Ubuntu 純正パッケージの nodejs, npm 使うとビルドこける。
https://downloads.openwrt.org/sources/
パッケージのソースの取得に失敗する場合はここからとって ./dl/ 配下に置いておく。
http://libfreecwmp.org/
ここにつながらないのでコケる。
./scripts/feeds uninstall libfreecwmp freecwmp libmicroxml
ダメっぽいので捨てた...
./scripts/feeds uninstall aria2
./build.sh YUN_PACKAGES_ONLY
Yun 関係のみの場合。

feeds.conf.default:

src-git packages https://github.com/openwrt/packages.git
src-git luci https://github.com/openwrt/luci.git
src-git routing https://github.com/openwrt-routing/packages.git
src-git telephony https://github.com/openwrt/telephony.git
src-git management https://github.com/openwrt-management/packages.git
src-git arduino https://github.com/RedSnake64/openwrt-arduino-packages.git;for-15.05
これでビルド実験中...