소스 검색

[version.sh]add BT-6710

balbekova 5 년 전
부모
커밋
32c84f45a5
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      projects/gcc/tools/version.sh

+ 3 - 0
projects/gcc/tools/version.sh

@@ -13,6 +13,9 @@ SRC=$'#define HARDWARE_BT6707 1\r\n#include <stdio.h>\r\n#include "common_config
 elif [ "$1" = "bt6709" ];
 then
 SRC=$'#define HARDWARE_BT6709 1\r\n#include <stdio.h>\r\n#include "common_config.h"\r\n'
+elif [ "$1" = "bt6710" ];
+then
+SRC=$'#define HARDWARE_BT6710 1\r\n#include <stdio.h>\r\n#include "common_config.h"\r\n'
 fi
 SRC+=$'int main(int argc, char *argv[]) {printf("%s", VERSION);}'
 echo "$SRC" > $BIN.c