common_config.sh 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #!/bin/bash
  2. #strVendor='hiview'
  3. #strProject='ht7315_evb'
  4. #strChip='ht7315'
  5. strDate=`date "+%Y-%m-%d %H:%M:%S"`
  6. funWriteLog()
  7. {
  8. strLog="$strDate $*"
  9. echo $strLog
  10. }
  11. funGenerateConfigFile()
  12. {
  13. : > $1
  14. if [ -f $2/$strChip/common.config ]
  15. then
  16. while read strLine
  17. do
  18. if [ "$strLine" != "" -a "$strLine" != " " -a "$strLine" != " " -a "$strLine" != " " ]
  19. then
  20. echo "export $strLine">>$1
  21. fi
  22. done < $2/$strChip/common.config
  23. else
  24. funWriteLog "$2/$strChip/common.config not exist"
  25. fi
  26. if [ -f $projectPath/../user/$strVendor/$strProject/property.config ]
  27. then
  28. grep "?=" $projectPath/../user/$strVendor/$strProject/property.config > $1.tmp
  29. else
  30. funWriteLog "$projectPath/../user/$strVendor/$strProject/property.config not exist"
  31. fi
  32. if [ -f $1.tmp ]
  33. then
  34. while read strLine
  35. do
  36. if [ "$strLine" != "" -a "$strLine" != " " -a "$strLine" != " " -a "$strLine" != " " ]
  37. then
  38. echo "export $strLine">>$1
  39. fi
  40. done < $1.tmp
  41. else
  42. funWriteLog "$1.tmp not exist"
  43. fi
  44. echo "export CONFIG_VENDOR ?= $strVendor" >>$1
  45. echo "export CONFIG_PROJECT ?= $strProject" >>$1
  46. echo "export CONFIG_CODE_PATH ?= $srcRootPath" >>$1
  47. }
  48. funListChoice()
  49. {
  50. echo "******************************************************************************"
  51. echo -e "seq \t vendor \t project \t chip"
  52. echo -e " 2 \t hiview \t ht7315_evb \t ht7315"
  53. echo -e " 8 \t hiview \t ht7315_product ht7315"
  54. echo -e " 9 \t hisense \t G5F \t \t ht7315"
  55. echo "******************************************************************************"
  56. read strValue
  57. case $strValue in
  58. 2)
  59. strVendor='hiview'
  60. strProject='ht7315_evb'
  61. strChip='ht7315'
  62. ;;
  63. 8)
  64. strVendor='hiview'
  65. strProject='ht7315_product'
  66. strChip='ht7315'
  67. ;;
  68. 9)
  69. strVendor='hisense'
  70. strProject='G5F'
  71. strChip='ht7315'
  72. ;;
  73. esac
  74. }
  75. funSelectPara()
  76. {
  77. echo "Please Choose Parameter Config"
  78. funListChoice
  79. }