jancyliu 发表于 2012-12-30 16:05:03

android差异化系统编译脚本配置文件

#!/bin/sh

SOU_DIR=device/fsl/newboard/coverfile

mkdir -p frameworks/base/core/java/android/voicecontrol

for f in `find $SOU_DIR -type f`

do

if [ "${f/.svn/}" = "$f"]; then

d=${f##*coverfile/}

echo "copy file:"

echo "source file:" $f;

echo "target file:" ${d}

cp -r ${f} ${d}-f
页: [1]
查看完整版本: android差异化系统编译脚本配置文件