diff --git a/trunk/scripts/package-arm.sh b/trunk/scripts/package-arm.sh deleted file mode 100755 index 17d7d01d4..000000000 --- a/trunk/scripts/package-arm.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -echo "在Ubuntu12下面交叉编译arm用的脚本" - -echo "argv[0]=$0" -if [[ ! -f $0 ]]; then - echo "directly execute the scripts on shell."; - work_dir=`pwd` -else - echo "execute scripts in file: $0"; - work_dir=`dirname $0`; work_dir=`(cd ${work_dir} && pwd)` -fi - -bash ${work_dir}/package.sh --arm diff --git a/trunk/scripts/package-raspberrypi.sh b/trunk/scripts/package-raspberrypi.sh deleted file mode 100755 index d1c163beb..000000000 --- a/trunk/scripts/package-raspberrypi.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -echo "在RaspberryPi下直接打包,不编译直接打包(编译慢,手工编译)" - -echo "argv[0]=$0" -if [[ ! -f $0 ]]; then - echo "directly execute the scripts on shell."; - work_dir=`pwd` -else - echo "execute scripts in file: $0"; - work_dir=`dirname $0`; work_dir=`(cd ${work_dir} && pwd)` -fi - -bash ${work_dir}/package.sh --no-build