rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame] | 1 | # /bin/bash |
| 2 | filelist=$1 |
| 3 | product=auto2731evb-ivt-main |
| 4 | if [ $1 ] |
| 5 | then |
| 6 | direc=./$1 |
| 7 | else |
| 8 | direc="project_img" |
| 9 | fi |
| 10 | |
| 11 | mkdir -p $direc |
| 12 | cp ./build/tmp/deploy/images/$product/boot.img $direc/ |
| 13 | cp ./build/tmp/deploy/images/$product/adb.exe $direc/ |
| 14 | cp ./build/tmp/deploy/images/$product/adb-darwin $direc/ |
| 15 | cp ./build/tmp/deploy/images/$product/adb-linux-x86_64 $direc/ |
| 16 | cp ./build/tmp/deploy/images/$product/align_4kb.py $direc/ |
| 17 | cp ./build/tmp/deploy/images/$product/bl2.img $direc/ |
| 18 | cp ./build/tmp/deploy/images/$product/bl33.img $direc/ |
| 19 | cp ./build/tmp/deploy/images/$product/combo.dtbo $direc/ |
| 20 | cp ./build/tmp/deploy/images/$product/fbtool.py $direc/ |
| 21 | cp ./build/tmp/deploy/images/$product/flashimage.py $direc/ |
| 22 | cp ./build/tmp/deploy/images/$product/flashproc.py $direc/ |
| 23 | cp ./build/tmp/deploy/images/$product/MBR_EMMC $direc/ |
| 24 | cp ./build/tmp/deploy/images/$product/MBR_NAND $direc/ |
| 25 | cp ./build/tmp/deploy/images/$product/ota_full.zip $direc/ |
| 26 | cp ./build/tmp/deploy/images/$product/recovery.img $direc/ |
| 27 | cp ./build/tmp/deploy/images/$product/sncfg.ubi $direc/ |
| 28 | cp ./build/tmp/deploy/images/$product/spmfw.img $direc/ |
| 29 | cp ./build/tmp/deploy/images/$product/system.img $direc/ |
| 30 | cp ./build/tmp/deploy/images/$product/system_unsparse.img $direc/ |
| 31 | cp ./build/tmp/deploy/images/$product/target-files.zip $direc/ |
| 32 | cp ./build/tmp/deploy/images/$product/tee.img $direc/ |
| 33 | cp ./build/tmp/deploy/images/$product/userdata.img $direc/ |
| 34 | |
| 35 | echo "find your files in $direc." |