project_config.sh 501 B

12345678910111213141516171819202122232425262728
  1. #!/bin/bash
  2. projectPath=$(cd `dirname $0`; pwd)
  3. dstConfigFile=$projectPath/../out/.config
  4. srcConfigPath=$projectPath/config
  5. srcRootPath=$(dirname $(dirname $(readlink -f $0)))
  6. source $projectPath/common_config.sh
  7. funCheckOutDir()
  8. {
  9. local dstOutDir=$projectPath/../out
  10. if [ ! -d $dstOutDir ]
  11. then
  12. mkdir -p $dstOutDir
  13. fi
  14. }
  15. funCheckOutDir
  16. if [ $# == 3 ];then
  17. strVendor=$1
  18. strProject=$2
  19. strChip=$3
  20. fi
  21. if [ $# == 0 ];then
  22. funSelectPara
  23. fi
  24. funGenerateConfigFile $dstConfigFile $srcConfigPath