Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add script to import files from a git checkout. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | base |
Files: | files | file ages | folders |
SHA1: |
51cdfe5c9a44eb08c27928373e26f775 |
User & Date: | dan 2017-11-27 20:21:58.131 |
Context
2017-11-27
| ||
20:21 | Add script to import files from a git checkout. (Leaf check-in: 51cdfe5c9a user: dan tags: base) | |
20:06 | Add the original versions of all the Android files imported and modified in this project. The versions imported are from commit e819e49b31dc0bc82dd617700299ad13ff6fd7f8 on the master branch of the git repository here: https://android.googlesource.com/platform/frameworks/base/ (check-in: bd482c8af6 user: dan tags: base) | |
Changes
Added import_from_base.sh.
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/usr/bin/env bash set -e if [[ $# -ne 1 ]] ; then echo "$0 <path to android base>" exit -1 fi BASE=/home/dan/tmp/git/base/ FILES=`find sqlite3/src/main/java/ -name *.java | grep -v CloseGuard` FILES+=" " FILES+=`find sqlite3/src/main/jni/ -name android_database*.cpp` FILES+=" " FILES+=`find sqlite3/src/main/jni/ -name android_database*.h` for f in $FILES ; do B=`basename $f` echo "Copying $B..." cp `find $BASE -name $B` $f done |