ひるね - Chromium OS
戻る>2006/The Chromium Projects

ビルドは,Ubuntu 9.10 32bit*1 on VMware Player 3 で.
Chromium はバイナリで.
実行はVMware Player 3で.

Chromium OS


ここここから.
google アカウント必要場合と,googleアカウント不要の場合の両方を試してみる.
まずは,google アカウント必要の場合(default)

環境設定


Chromium のビルドの設定ができていればOK.

コードの取得


ここに従う.
gitの version を確認する.
ubuntu:~$ git --version
git version 1.6.3.3
ダメっぽいが,チャレンジ.

ubuntu:~$ mkdir chromiumos
ubuntu:~$ cd chromium
ubuntu:~/chromiumos$ gclient config http://src.chromium.org/git/chromiumos.git
ubuntu:~/chromiumos$ gclient sync
Error: git version 1.6.3.3 < minimum required 1.6.6

やっぱり,ダメでした.
ここに記載の通り,ここを参考に git を入れ替えてから再挑戦.

sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git-core subversion

cd ~/chromiumos
gclient config http://src.chromium.org/git/chromiumos.git
gclient sync << いまここ

gclient sync が完了しているかどうかわからなくなってしまったので,もう一度 gclient sync したところ,

ubuntu:~/chromiumos$ gclient sync
Syncing projects:  60% (32/53)  
_____ chromiumos.git/src/third_party/ibus/files at refs/heads/branch-off-facc441
Error: Switching upstream branch from refs/remotes/origin/master to refs/remotes/origin/branch-off-facc441

となってしまった.
ここに従って,以下の様にしたところ,

rm -fr chromiumos.git/src/third_party/ibus/files
gclient sync
〜省略〜
Syncing projects: 100% (53/53), done.  

解決したように見える.

ビルド


ここを参考に,ビルドを実行.

cd chromiumos/chromiumos.git/src/scripts
./make_chroot
make_chroot: i686 is not supported as a host machine architecture.

うむ.困った.ここを読んでいる途中.



つづく

google アカウント不要の場合(option)


差分のみ説明.

つづく.