「R-Car環境」の版間の差分
6行目: | 6行目: | ||
価格:59,900円<br/> | 価格:59,900円<br/> | ||
<br/> | <br/> | ||
− | + | ■開発環境<br/> | |
+ | <br/> | ||
+ | おすすめは、裸族使うなどして外付けHDD(SSHDの2T)に、VMWAREのubuntu 環境を構築するといいです<br/> | ||
+ | 私は、USB3.0接続の普通のHDD使用していますが、Buildだけで4〜5時間かかりました。<br/> | ||
+ | <br/> | ||
ubuntu 14.04 64bit<br/> | ubuntu 14.04 64bit<br/> | ||
<br/> | <br/> | ||
16行目: | 20行目: | ||
$ sudo apt-get install python-wand python-crypto liblz4-tool ccache<br/> | $ sudo apt-get install python-wand python-crypto liblz4-tool ccache<br/> | ||
<br/> | <br/> | ||
+ | ■Build環境構築<br> | ||
workフォルダの作成<br/> | workフォルダの作成<br/> | ||
$ cd[Enter]<br/> | $ cd[Enter]<br/> | ||
28行目: | 33行目: | ||
$ git config --global user.email "XXXXXXX@gmail.com"<br/> | $ git config --global user.email "XXXXXXX@gmail.com"<br/> | ||
$ git config --global user.name "YOURNAME"<br/> | $ git config --global user.name "YOURNAME"<br/> | ||
+ | $ cd ~/work<br/> | ||
+ | $ export workspace=$(pwd)<br/> | ||
+ | $ chmod +x walkthrough.sh<br/> | ||
$ walkthrough.sh H3<br/> | $ walkthrough.sh H3<br/> | ||
<br/> | <br/> |
2018年10月17日 (水) 22:06時点における版
環境について
R-Car H3の Starter Kit Premier(以降、SK)
R-Car Kingfisher (以降、KF)
型番:SBEV-RCAR-KF-S03
価格:59,900円
■開発環境
おすすめは、裸族使うなどして外付けHDD(SSHDの2T)に、VMWAREのubuntu 環境を構築するといいです
私は、USB3.0接続の普通のHDD使用していますが、Buildだけで4〜5時間かかりました。
ubuntu 14.04 64bit
64Bit環境か確認する
$ uname -a
Linux ubuntu 3.16.0-30-generic #40~14.04.1-Ubuntu SMP Thu Jan 15 17:43:14 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
ubuntuにBuildに必要なツールをインストールする
$ sudo apt-get install python-wand python-crypto liblz4-tool ccache
■Build環境構築
workフォルダの作成
$ cd[Enter]
$ mkdir work
$ cd work
repoの取得
$ curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > repo
$ chmod +x repo
$ export PATH=$(pwd):${PATH}
gitにコミットしないが、コミット時のメールアドレスと名前を設定します。
$ git config --global user.email "XXXXXXX@gmail.com"
$ git config --global user.name "YOURNAME"
$ cd ~/work
$ export workspace=$(pwd)
$ chmod +x walkthrough.sh
$ walkthrough.sh H3
ARCHの設定 ※大事
$ export ARCH=aarch64
work/RELFILEとなるように、ファイルをコピーする
$ cd RELFILES
$ export HAVE_OMX="YES"
$ apply_patch.sh
※Renesasのパッチが適用され、LinuxとAndroidの各ソースが取得される
Buildします
$ cd mydroid
$ export TARGET_BOARD_PLATFORM=r8a7795
$ source build/envsetup.sh
$ lunch kingfisher-userdebug
$ export BUILD_BOOTLOADERS=true
$ export BUILD_BOOTLOADERS_SREC=true
$ make -j4
※環境によりますが、j4以下だとbuild通らないようです