diff --git a/config.sh b/config.sh index 6bab5e1c..81283eb4 100755 --- a/config.sh +++ b/config.sh @@ -145,6 +145,12 @@ case "$1" in repo_sync $1 ;; +"dolphin") + echo DEVICE=scx15_sp7715ga >> .tmp-config && + echo PRODUCT_NAME=scx15_sp7715gaplus >> .tmp-config && + repo_sync $1 + ;; + "pandaboard") echo DEVICE=panda >> .tmp-config && repo_sync $1 @@ -192,6 +198,7 @@ case "$1" in echo - fugu echo - tarako echo - tara + echo - dolphin echo - pandaboard echo - flatfish echo - flame diff --git a/flash.sh b/flash.sh index 9c36f1e3..e7715ce4 100755 --- a/flash.sh +++ b/flash.sh @@ -129,7 +129,7 @@ flash_fastboot() if [ "$DEVICE" == "flatfish" ]; then DATA_PART_NAME="data" fi - if [ "$DEVICE" != "helix" ]; then + if [ "$DEVICE" != "helix" -a "$DEVICE_NAME" != "dolphin" ]; then run_fastboot $VERB cache && run_fastboot $VERB $DATA_PART_NAME if [ $? -ne 0 ]; then @@ -333,7 +333,7 @@ case "$DEVICE" in exit $? ;; -"flame"|"otoro"|"unagi"|"keon"|"peak"|"inari"|"sp8810ea"|"wasabi"|"flatfish") +"flame"|"otoro"|"unagi"|"keon"|"peak"|"inari"|"sp8810ea"|"wasabi"|"flatfish"|"scx15_sp7715ga") flash_fastboot nounlock $PROJECT ;;