Howto

usagi-toolの下準備

1. ソースの準備

USAGI Project から「usagi-tool-stable-20050714.tar.bz2」を取得して展開してください。

[PC ~]$ wget ftp://ftp.linux-ipv6.org/pub/usagi/stable/split/usagi-tool-stable-20050714.tar.bz2
[PC ~]$ tar xjvf usagi-tool-stable-20050714.tar.bz2
[PC ~]$ 

2. ビルドの準備

展開したソースに パッチ をあて、make prepareを実行します。

[PC ~]$ wget http://armadillo.atmark-techno.com/armadillo-210/howto/ipv6/usagi-tool-20050714-cross.patch
[PC ~]$ cd usagi
[PC usagi]$ patch -p1 <../usagi-tool-20050714-cross.patch
[PC usagi]$ make prepare TARGET=linux26
[PC usagi]$ 

3. libinet6のビルド

usagi-toolのアプリケーションのほとんどがこのライブラリを使用します。
前もってビルドしておきます。

[PC ~]$ cd usagi/libinet6
[PC usagi/libinet6]$ .configure
[PC usagi/libinet6]$ make CC=arm-linux-gcc
[PC usagi/libinet6]$