]> git.wh0rd.org - home.git/blame_incremental - .chromite/chrome_sdk.bashrc
gdbinit: split up & migrate some to python
[home.git] / .chromite / chrome_sdk.bashrc
... / ...
CommitLineData
1IP=100.100.11.159
2
3n() {
4 [[ $# -eq 0 ]] && set -- chrome
5 ninja -C out_${SDK_BOARD}/Release -j500 "$@"
6}
7
8d() {
9 deploy_chrome --build-dir=out_${SDK_BOARD}/Release --to=${IP} "$@"
10}
11
12cat <<EOF
13
14Commands:
15 gclient: use runhooks for a new board
16 gn gen out_\${SDK_BOARD}/Release --args="\${GN_ARGS}"
17 n: run ninja to compile chrome
18 d: deploy the compiled code to ${IP}
19
20EOF