build.py 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  1. #!/usr/bin/env python
  2. #
  3. # Copyright (c) 2020 Actions Semiconductor Co., Ltd
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. import os
  8. import sys
  9. import time
  10. import argparse
  11. import platform
  12. import shutil
  13. import subprocess
  14. import re
  15. import xml.etree.ElementTree as ET
  16. sdk_arch = "arm"
  17. sdk_root = os.getcwd()
  18. sdk_root_parent = os.path.dirname(sdk_root)
  19. #sdk_mcuboot_dir=os.path.join(sdk_root_parent, "bootloader", "mcuboot")
  20. #sdk_mcuboot_imgtool = os.path.join(sdk_mcuboot_dir, "scripts", "imgtool.py")
  21. #sdk_mcuboot_key= os.path.join(sdk_mcuboot_dir, "root-rsa-2048.pem")
  22. #sdk_mcuboot_app_path=os.path.join(sdk_mcuboot_dir, "boot", "zephyr")
  23. sdk_boards_dir = os.path.join(sdk_root, "boards", sdk_arch)
  24. #sdk_application_dir = os.path.join(sdk_root_parent, "application")
  25. sdk_application_dir=""
  26. sdk_app_dir = os.path.join(sdk_root_parent, "bootloader", "application")
  27. sdk_samples_dir = os.path.join(sdk_root, "samples")
  28. sdk_script_dir = os.path.join(sdk_root, "tools")
  29. sdk_script_prebuilt_dir = os.path.join(sdk_script_dir, "prebuilt")
  30. build_config_file = os.path.join(sdk_root, ".build_config")
  31. sdk_parent_boards_dir = os.path.join(sdk_root_parent, "zephyr","boards", sdk_arch)
  32. application = ""
  33. sub_app = ""
  34. board_conf = ""
  35. app_conf = ""
  36. def is_windows():
  37. sysstr = platform.system()
  38. if (sysstr.startswith('Windows') or \
  39. sysstr.startswith('MSYS') or \
  40. sysstr.startswith('MINGW') or \
  41. sysstr.startswith('CYGWIN')):
  42. return True
  43. else:
  44. return False
  45. def to_int(str):
  46. try:
  47. int(str)
  48. return int(str)
  49. except ValueError:
  50. try:
  51. float(str)
  52. return int(float(str))
  53. except ValueError:
  54. return False
  55. def read_choice( tip, path):
  56. print("")
  57. print(" %s" %(tip))
  58. print("")
  59. dirs = next(os.walk(path))[1]
  60. i = 0
  61. for file in dirs:
  62. file_path = os.path.join(path, file)
  63. if os.path.isdir(file_path):
  64. i += 1
  65. print(" %d. %s" %(i, file))
  66. print("")
  67. input_prompt = "Which would you like? [" + dirs[0] + "] "
  68. str = ""
  69. try:
  70. str = input(input_prompt)
  71. except Exception as ex:
  72. print("")
  73. if to_int(str) != False:
  74. j = to_int(str)
  75. else:
  76. j = 1
  77. if j > i:
  78. j = i
  79. j -= 1
  80. return dirs[j]
  81. def run_cmd(cmd):
  82. """Echo and run the given command.
  83. Args:
  84. cmd: the command represented as a list of strings.
  85. Returns:
  86. A tuple of the output and the exit code.
  87. """
  88. # print("Running: ", " ".join(cmd))
  89. p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  90. output, _ = p.communicate()
  91. #print("%s" % (output.rstrip()))
  92. return (output, p.returncode)
  93. def build_nvram_bin(out_dir, board_dir, app_confg_dir):
  94. nvram_path = os.path.join(out_dir, "nvram.bin")
  95. app_cfg_path = os.path.join(app_confg_dir, "nvram.prop")
  96. board_cnf_path = os.path.join(board_dir, "nvram.prop")
  97. print("\n build_nvram \n")
  98. if not os.path.isfile(board_cnf_path):
  99. print("\n board nvram %s not exists\n" %(board_cnf_path))
  100. return
  101. if not os.path.isfile(app_cfg_path):
  102. print("\n app nvram %s not exists\n" %(app_cfg_path))
  103. return
  104. script_nvram_path = os.path.join(sdk_script_dir, 'build_nvram_bin.py')
  105. cmd = ['python', '-B', script_nvram_path, '-o', nvram_path, app_cfg_path, board_cnf_path]
  106. (outmsg, exit_code) = run_cmd(cmd)
  107. if exit_code !=0:
  108. print('make build_nvram_bin error')
  109. print(outmsg)
  110. sys.exit(1)
  111. print("\n build_nvram finshed\n\n")
  112. def dir_cp(out_dir, in_dir):
  113. print("\n cp dir %s to dir %s \n" %(in_dir, out_dir))
  114. if os.path.exists(in_dir) == True:
  115. if os.path.exists(out_dir) == True:
  116. for parent, dirnames, filenames in os.walk(in_dir):
  117. for filename in filenames:
  118. pathfile = os.path.join(parent, filename)
  119. shutil.copyfile(pathfile, os.path.join(out_dir, filename))
  120. else:
  121. shutil.copytree(in_dir, out_dir)
  122. def dir_tree_cp(out_dir, in_dir):
  123. # keep directory structure
  124. print("\n cp dir %s to dir %s \n" %(in_dir, out_dir))
  125. if os.path.exists(in_dir):
  126. if os.path.exists(out_dir):
  127. for parent, dirnames, filenames in os.walk(in_dir):
  128. for filename in filenames:
  129. copy_to_dir = os.path.join(out_dir, os.path.relpath(parent, in_dir))
  130. if not os.path.isdir(copy_to_dir):
  131. os.mkdir(copy_to_dir)
  132. pathfile = os.path.join(parent, filename)
  133. shutil.copyfile(pathfile, os.path.join(copy_to_dir, filename))
  134. else:
  135. shutil.copytree(in_dir, out_dir)
  136. def build_sdfs_bin_name(out_dir, board_dir, app_confg_dir, sdfs_name):
  137. board_sdfs_dir = os.path.join(board_dir, sdfs_name)
  138. app_sdfs_dir = os.path.join(app_confg_dir, sdfs_name)
  139. #print("\n build_sdfs : sdfs_dir %s, board dfs %s\n\n" %(sdfs_dir, board_sdfs_dir))
  140. if (os.path.exists(board_sdfs_dir) == False) and (os.path.exists(app_sdfs_dir) == False):
  141. print("\n build_sdfs : %s not exists\n\n" %(sdfs_name))
  142. return
  143. sdfs_dir = os.path.join(out_dir, sdfs_name)
  144. if os.path.exists(sdfs_dir) == True:
  145. shutil.rmtree(sdfs_dir)
  146. time.sleep(0.1)
  147. if os.path.exists(board_sdfs_dir) == True:
  148. dir_cp(sdfs_dir, board_sdfs_dir)
  149. if os.path.exists(app_sdfs_dir) == True:
  150. dir_cp(sdfs_dir, app_sdfs_dir)
  151. script_sdfs_path = os.path.join(sdk_script_dir, 'build_sdfs.py')
  152. sdfs_bin_path = os.path.join(out_dir, sdfs_name+".bin")
  153. cmd = ['python', '-B', script_sdfs_path, '-o', sdfs_bin_path, '-d', sdfs_dir]
  154. (outmsg, exit_code) = run_cmd(cmd)
  155. if exit_code !=0:
  156. print('make build_sdfs_bin error')
  157. print(outmsg)
  158. sys.exit(1)
  159. print("\n build_sdfs %s finshed\n\n" %(sdfs_name))
  160. def build_sdfs_bin_bydir(out_dir, board_dir, app_confg_dir):
  161. bpath = os.path.join(board_dir, "fs_sdfs");
  162. apath = os.path.join(app_confg_dir, "fs_sdfs");
  163. if (os.path.exists(bpath) == False) and (os.path.exists(apath) == False):
  164. print('not fs_sdfs')
  165. return
  166. all_dirs = {}
  167. if os.path.exists(bpath) == True:
  168. for file in os.listdir(bpath):
  169. print("board list %s ---\n" %(file))
  170. if os.path.isdir(os.path.join(bpath,file)):
  171. all_dirs[file] = file
  172. if os.path.exists(apath) == True:
  173. for file in os.listdir(apath):
  174. print("app list %s ---\n" %(file))
  175. if os.path.isdir(os.path.join(apath,file)):
  176. all_dirs[file] = file
  177. for dir in all_dirs.keys():
  178. print("--build_sdfs %s ---\n" %(dir))
  179. build_sdfs_bin_name(out_dir, bpath, apath, dir)
  180. def build_sdfs_bin(out_dir, board_dir, app_confg_dir):
  181. build_sdfs_bin_name(out_dir, board_dir, app_confg_dir,"ksdfs")
  182. build_sdfs_bin_name(out_dir, board_dir, app_confg_dir,"sdfs")
  183. build_sdfs_bin_name(out_dir, board_dir, app_confg_dir,"fatfs")
  184. build_sdfs_bin_bydir(out_dir, board_dir, app_confg_dir)
  185. def file_link(filename, file_add):
  186. if not os.path.exists(filename):
  187. return
  188. if not os.path.exists(file_add):
  189. return
  190. print("file %s, link %s \n" %(filename, file_add))
  191. with open(file_add, 'rb') as fa:
  192. file_data = fa.read()
  193. fa.close()
  194. fsize = os.path.getsize(filename)
  195. with open(filename, 'rb+') as f:
  196. f.seek(fsize, 0)
  197. f.write(file_data)
  198. f.close()
  199. def is_config_KALLSYMS(cfg_path):
  200. bret = False
  201. print("\n cfg_path =%s\n" %cfg_path)
  202. fp = open(cfg_path,"r")
  203. lines = fp.readlines()
  204. for elem in lines:
  205. if elem[0] != '#':
  206. _c = elem.strip().split("=")
  207. if _c[0] == "CONFIG_KALLSYMS":
  208. print("CONFIG_KALLSYMS");
  209. bret = True
  210. break;
  211. fp.close
  212. print("\nCONFIG_KALLSYMS=%d\n" %bret )
  213. return bret
  214. def build_ksdfs_bin(out_dir, board_dir, app_confg_dir, os_out_dir):
  215. sdfs_dir = os.path.join(out_dir, "ksdfs")
  216. if os.path.exists(sdfs_dir) == True:
  217. shutil.rmtree(sdfs_dir)
  218. time.sleep(0.01)
  219. board_sdfs_dir = os.path.join(board_dir, "ksdfs")
  220. print("\n build_ksdfs : ksdfs_dir %s, board dfs %s\n\n" %(sdfs_dir, board_sdfs_dir))
  221. if os.path.exists(board_sdfs_dir) == False:
  222. print("\n build_ksdfs : board dfs %s not exists\n\n" %(board_sdfs_dir))
  223. return
  224. dir_cp(sdfs_dir, board_sdfs_dir)
  225. if is_config_KALLSYMS(os.path.join(os_out_dir, ".config")) == True:
  226. print("cpy ksym.bin");
  227. shutil.copyfile(os.path.join(os_out_dir, "ksym.bin"), os.path.join(sdfs_dir, "ksym.bin"))
  228. app_sdfs_dir = os.path.join(app_confg_dir, "ksdfs")
  229. if os.path.exists(app_sdfs_dir) == True:
  230. dir_cp(sdfs_dir, app_sdfs_dir)
  231. script_sdfs_path = os.path.join(sdk_script_dir, 'build_sdfs.py')
  232. sdfs_bin_path = os.path.join(out_dir, "ksdfs.bin")
  233. cmd = ['python', '-B', script_sdfs_path, '-o', sdfs_bin_path, '-d', sdfs_dir]
  234. (outmsg, exit_code) = run_cmd(cmd)
  235. if exit_code !=0:
  236. print('make build_ksdfs_bin error')
  237. print(outmsg)
  238. sys.exit(1)
  239. print("\n build_ksdfs finshed---\n\n")
  240. file_link(os.path.join(out_dir, "app.bin"), sdfs_bin_path)
  241. #file_link(os.path.join(out_dir, "recovery.bin"), sdfs_bin_path)
  242. def build_datafs_bin(out_dir, app_confg_dir, fw_cfgfile):
  243. script_datafs_path = os.path.join(sdk_script_dir, 'build_datafs.py')
  244. tree = ET.ElementTree(file=fw_cfgfile)
  245. root = tree.getroot()
  246. if (root.tag != 'firmware'):
  247. sys.stderr.write('error: invalid firmware config file')
  248. sys.exit(1)
  249. part_list = root.find('partitions').findall('partition')
  250. for part in part_list:
  251. part_prop = {}
  252. for prop in part:
  253. part_prop[prop.tag] = prop.text.strip()
  254. if ('storage_id' in part_prop.keys()) and (0 != int(part_prop['storage_id'], 0)):
  255. app_datafs_dir = os.path.join(app_confg_dir, part_prop['name'])
  256. if os.path.exists(app_datafs_dir) == False:
  257. print("\n build_datafs : app config datafs %s not exists\n\n" %(app_datafs_dir))
  258. continue
  259. datafs_cap = 0
  260. for parent, dirs, files in os.walk(app_datafs_dir):
  261. for file in files:
  262. datafs_cap += os.path.getsize(os.path.join(parent, file))
  263. if datafs_cap == 0:
  264. print("\n build_datafs: no file in %s\n\n" %(app_datafs_dir))
  265. continue
  266. # reserved 0x80000 space for FAT filesystem region such as boot sector, FAT region, root directory region.
  267. datafs_cap += 0x80000
  268. datafs_cap = int((datafs_cap + 511) / 512) * 512
  269. if datafs_cap > int(part_prop['size'], 0):
  270. print("\n build_datafs: too large file:%d and max:%d\n\n" %(datafs_cap, int(part_prop['size'], 0)))
  271. continue
  272. datafs_bin_path = os.path.join(out_dir, part_prop['file_name'])
  273. print('DATAFS (%s) capacity => 0x%x' %(datafs_bin_path, datafs_cap))
  274. cmd = ['python', '-B', script_datafs_path, '-o', datafs_bin_path, '-s', str(datafs_cap), '-d', app_datafs_dir]
  275. (outmsg, exit_code) = run_cmd(cmd)
  276. if exit_code !=0:
  277. print('make build_datafs_bin %s error' %(datafs_bin_path))
  278. print(outmsg)
  279. sys.exit(1)
  280. print("\n build_datafs finshed\n\n")
  281. def read_soc_by_config(cfg_path):
  282. soc = "lark"
  283. fp = open(cfg_path,"r")
  284. lines = fp.readlines()
  285. for elem in lines:
  286. if elem[0] != '#':
  287. _c = elem.strip().split("=")
  288. if _c[0] == "CONFIG_SOC_SERIES":
  289. soc = _c[1].strip('"')
  290. break;
  291. fp.close
  292. return soc
  293. def build_firmware(board, out_dir, board_dir, app_dir):
  294. print("\n build_firmware : out %s, board %s, app_dir %s\n\n" %(out_dir, board_dir, app_dir))
  295. FW_DIR = os.path.join(out_dir, "_firmware")
  296. OS_OUTDIR = os.path.join(out_dir, "zephyr")
  297. if os.path.exists(FW_DIR) == False:
  298. os.mkdir(FW_DIR)
  299. FW_DIR_BIN = os.path.join(FW_DIR, "bin")
  300. if os.path.exists(FW_DIR_BIN) == False:
  301. os.mkdir(FW_DIR_BIN)
  302. ksdfs_dir = os.path.join(FW_DIR_BIN, "ksdfs")
  303. if is_config_KALLSYMS(os.path.join(OS_OUTDIR, ".config")) and os.path.isdir(ksdfs_dir):
  304. print("cpy ksym.bin");
  305. shutil.copyfile(os.path.join(OS_OUTDIR, "ksym.bin"), os.path.join(ksdfs_dir, "ksym.bin"))
  306. build_nvram_bin(FW_DIR_BIN, board_dir, app_dir)
  307. build_sdfs_bin(FW_DIR_BIN, board_dir, app_dir)
  308. soc = read_soc_by_config(os.path.join(OS_OUTDIR, ".config"))
  309. print("\n build_firmware : soc name= %s\n" %(soc))
  310. dir_cp(FW_DIR_BIN, os.path.join(sdk_script_prebuilt_dir, soc, "common", "bin"))
  311. dir_cp(FW_DIR_BIN, os.path.join(sdk_script_prebuilt_dir, soc, "bin"))
  312. fw_cfgfile = os.path.join(FW_DIR, "firmware.xml")
  313. #copy firmware.xml
  314. if os.path.exists(os.path.join(board_dir, "firmware.xml")):
  315. print("FW: Override the default firmware.xml")
  316. shutil.copyfile(os.path.join(board_dir, "firmware.xml"), fw_cfgfile)
  317. if os.path.exists(os.path.join(app_dir, "firmware.xml")):
  318. print("FW: Override the project firmware.xml")
  319. shutil.copyfile(os.path.join(app_dir, "firmware.xml"), fw_cfgfile)
  320. if not os.path.exists(fw_cfgfile):
  321. print("failed to find out firmware.xml")
  322. sys.exit(1)
  323. # check override mbrec.bin
  324. if os.path.exists(os.path.join(board_dir, "mbrec.bin")):
  325. print("FW: Override the board mbrec.bin")
  326. shutil.copyfile(os.path.join(board_dir, "mbrec.bin"), os.path.join(FW_DIR_BIN, "mbrec.bin"))
  327. # check override afi.bin
  328. if os.path.exists(os.path.join(board_dir, "afi.bin")):
  329. print("FW: Override the board afi.bin")
  330. shutil.copyfile(os.path.join(board_dir, "afi.bin"), os.path.join(FW_DIR_BIN, "afi.bin"))
  331. # check override bootloader.ini
  332. if os.path.exists(os.path.join(board_dir, "bootloader.ini")):
  333. print("FW: Override the board bootloader.ini")
  334. shutil.copyfile(os.path.join(board_dir, "bootloader.ini"), os.path.join(FW_DIR_BIN, "bootloader.ini"))
  335. if os.path.exists(os.path.join(board_dir, "recovery.bin")):
  336. print("FW: Copy recovery.bin")
  337. shutil.copyfile(os.path.join(board_dir, "recovery.bin"), os.path.join(FW_DIR_BIN, "recovery.bin"))
  338. prebuild_dir = os.path.join(app_dir, "prebuild")
  339. if os.path.exists(prebuild_dir):
  340. print("FW: Copy prebuild files")
  341. dir_tree_cp(FW_DIR_BIN, prebuild_dir)
  342. # shutil.copytree(prebuild_dir, self.bin_dir, dirs_exist_ok = True)
  343. # cmd = ['xcopy', prebuild_dir, FW_DIR_BIN, '/F', '/S', '/y']
  344. # run_cmd(cmd)
  345. print("\nFW: Post build mbrec.bin\n")
  346. script_firmware_path = os.path.join(sdk_script_dir, 'build_boot_image.py')
  347. cmd = ['python', '-B', script_firmware_path, os.path.join(FW_DIR_BIN, "mbrec.bin"), \
  348. os.path.join(FW_DIR_BIN, "bootloader.ini"), \
  349. os.path.join(FW_DIR_BIN, "nand_id.bin")]
  350. print("\n build cmd : %s\n\n" %(cmd))
  351. (outmsg, exit_code) = run_cmd(cmd)
  352. if exit_code !=0:
  353. print('make build_boot_image error')
  354. print(outmsg)
  355. sys.exit(1)
  356. build_datafs_bin(FW_DIR_BIN, app_dir, fw_cfgfile)
  357. #copy zephyr.bin
  358. app_bin_src_path = os.path.join(OS_OUTDIR, "zephyr.bin")
  359. if os.path.exists(app_bin_src_path) == False:
  360. print("\n app.bin not eixt=%s\n\n" %(app_bin_src_path))
  361. return
  362. #app_bin_dst_path=os.path.join(FW_DIR_BIN, "zephyr.bin")
  363. app_bin_dst_path=os.path.join(FW_DIR_BIN, "app.bin")
  364. shutil.copyfile(app_bin_src_path, app_bin_dst_path)
  365. # build_ksdfs_bin(FW_DIR_BIN, board_dir, app_dir, OS_OUTDIR)
  366. # signed img
  367. """
  368. app_bin_sign_path=os.path.join(FW_DIR_BIN, "app.bin")
  369. cmd = ['python', '-B', sdk_mcuboot_imgtool, 'sign', \
  370. '--key', sdk_mcuboot_key,\
  371. '--header-size', "0x200",\
  372. '--align', "8", \
  373. '--version', "1.2",\
  374. '--slot-size', "0x60000",\
  375. app_bin_dst_path,\
  376. app_bin_sign_path]
  377. print("\n signed cmd : %s\n\n" %(cmd))
  378. (outmsg, exit_code) = run_cmd(cmd)
  379. if exit_code !=0:
  380. print('signed img error')
  381. print(outmsg)
  382. sys.exit(1)
  383. #copy mcuboot.bin
  384. boot_bin_src_path = os.path.join(out_dir, "boot", "zephyr", "zephyr.bin")
  385. if os.path.exists(boot_bin_src_path) == False:
  386. print("\n mcuboot not eixt=%s\n\n" %(boot_bin_src_path))
  387. return
  388. shutil.copyfile(boot_bin_src_path, os.path.join(FW_DIR_BIN, "mcuboot.bin"))
  389. """
  390. print("\n--board %s ==--\n\n" %( board))
  391. script_firmware_path = os.path.join(sdk_script_dir, 'build_firmware.py')
  392. cmd = ['python', '-B', script_firmware_path, '-c', fw_cfgfile, \
  393. '-e', os.path.join(FW_DIR_BIN, "encrypt.bin"),\
  394. '-ef', os.path.join(FW_DIR_BIN, "efuse.bin"),\
  395. '-s', "lark",\
  396. '-b', board]
  397. print("\n build cmd : %s\n\n" %(cmd))
  398. (outmsg, exit_code) = run_cmd(cmd)
  399. if exit_code !=0:
  400. print('make build_firmware error')
  401. print(outmsg)
  402. sys.exit(1)
  403. def build_zephyr_app_by_keil(board, out_dir, app_dir, app_cfg_p, libname, silent):
  404. if (is_windows()):
  405. os.chdir(sdk_root)
  406. build_args = "ninja2mdk.cmd " + board
  407. build_args += " " + os.path.relpath(app_dir)
  408. build_args += " " + app_cfg_p
  409. if libname is not None:
  410. build_args += " " + libname
  411. print("\n bulid cmd:%s \n\n" %(build_args))
  412. ret = os.system(build_args)
  413. if ret != 0:
  414. print("\n bulid error\n")
  415. sys.exit(1)
  416. print("\n Warning: please build using Keil-MDK! \n\n")
  417. if silent == False:
  418. mdk_dir = os.path.join(out_dir, "mdk_clang")
  419. os.startfile(os.path.join(mdk_dir, "mdk_clang.uvprojx"))
  420. sys.exit(0)
  421. else:
  422. print("\n Error: please build on windows! \n\n")
  423. sys.exit(1)
  424. def build_zephyr_app_by_gcc(board, out_dir, app_dir, app_cfg_p, libname, silent):
  425. build_args = "west build -p auto -b " + board
  426. build_args += " -d " + out_dir + " " + app_dir
  427. if app_cfg_p != ".":
  428. cfg_file = os.path.join(app_cfg_p, "prj.conf")
  429. if os.path.exists(os.path.join(app_dir,cfg_file)) == True:
  430. if (is_windows()):
  431. cfg_file = cfg_file.replace('\\', '/')
  432. build_args += " -- " + " -DCONF_FILE=" + cfg_file
  433. os.chdir(sdk_root)
  434. print("\n bulid cmd:%s \n\n" %(build_args))
  435. ret = os.system(build_args)
  436. if ret != 0:
  437. print("\n bulid error\n")
  438. sys.exit(1)
  439. def build_zephyr_menuconfig(out_dir):
  440. build_args = "west build -d " + out_dir
  441. build_args += " -t menuconfig"
  442. print("\n bulid cmd:%s \n\n" %(build_args))
  443. ret = os.system(build_args)
  444. if ret != 0:
  445. print("\n bulid error\n")
  446. sys.exit(1)
  447. def main(argv):
  448. parser = argparse.ArgumentParser()
  449. parser.add_argument('-n', dest="cfgdel", help="remove cur build_config", action="store_true", required=False)
  450. parser.add_argument('-c', dest="clear", help="remove board out dir and build_config", action="store_true", required=False)
  451. parser.add_argument('-m', dest='menuconfig', help="do sdk Configuration", action="store_true", default=False)
  452. parser.add_argument('-p', dest='pack', help="pack firmware only", action="store_true", default=False)
  453. parser.add_argument('-l', dest="libname", help="build lib", required=False)
  454. parser.add_argument('-s', dest="silent", help="silent mode", action="store_true", required=False)
  455. parser.add_argument('-t', dest="sample", help="build sample, default build applicaction", action="store_true", required=False)
  456. parser.add_argument('-k', dest="bkeil", help="build by keil, default by gcc ", action="store_true", required=False)
  457. print("build")
  458. args = parser.parse_args()
  459. if args.sample == True:
  460. sdk_application_dir = sdk_samples_dir
  461. else:
  462. sdk_application_dir = sdk_app_dir
  463. application = ""
  464. sub_app = ""
  465. board_conf = ""
  466. app_conf = ""
  467. if args.cfgdel == True:
  468. if os.path.exists(build_config_file) == True:
  469. os.remove(build_config_file)
  470. #sys.exit(0)
  471. if os.path.exists(build_config_file) == True:
  472. fp = open(build_config_file,"r")
  473. lines = fp.readlines()
  474. for elem in lines:
  475. if elem[0] != '#':
  476. _c = elem.strip().split("=")
  477. if _c[0] == "APPLICATION":
  478. application = _c[1]
  479. elif _c[0] == "BOARD":
  480. board_conf = _c[1]
  481. elif _c[0] == "SUB_APP":
  482. sub_app = _c[1]
  483. elif _c[0] == "APP_CONF":
  484. app_conf = _c[1]
  485. fp.close
  486. if os.path.exists(build_config_file) == False:
  487. board_conf = read_choice("Select boards configuration:", sdk_boards_dir)
  488. application = read_choice("Select application:", sdk_application_dir)
  489. sub_app = ""
  490. app_conf = ""
  491. fp = open(build_config_file,"w")
  492. fp.write("# Build config\n")
  493. fp.write("BOARD=" + board_conf + "\n")
  494. fp.write("APPLICATION=" + application + "\n")
  495. fp.write("SUB_APP=" + sub_app + "\n")
  496. fp.write("APP_CONF=" + app_conf + "\n")
  497. fp.close()
  498. print("\n--== Build application %s (sub %s) (app_conf %s) board %s ==--\n\n" %(application, sub_app, app_conf,
  499. board_conf))
  500. if os.path.exists(os.path.join(sdk_application_dir, application, "CMakeLists.txt")) == True:
  501. application_path = os.path.join(sdk_application_dir, application)
  502. else:
  503. application_path = os.path.join(sdk_application_dir, application, sub_app)
  504. if os.path.exists(application_path) == False:
  505. print("\nNo application at %s \n\n" %(sdk_application_dir))
  506. sys.exit(1)
  507. if os.path.exists(os.path.join(application_path, "app_conf")) == True:
  508. application_cfg_reldir=os.path.join("app_conf", app_conf)
  509. else :
  510. application_cfg_reldir = "."
  511. print(" application cfg dir %s, \n\n" %(application_cfg_reldir))
  512. sdk_out = os.path.join(application_path, "outdir")
  513. sdk_build = os.path.join(sdk_out, board_conf)
  514. if args.clear == True:
  515. print("\n Clean build out=%s \n\n" %(sdk_out))
  516. if os.path.exists(sdk_out) == True:
  517. shutil.rmtree(sdk_out, True)
  518. time.sleep(0.01)
  519. sys.exit(0)
  520. if args.menuconfig == True:
  521. if os.path.exists(sdk_build) == True:
  522. build_zephyr_menuconfig(sdk_build)
  523. else:
  524. print("please build")
  525. sys.exit(1)
  526. print("\n sdk_build=%s \n\n" %(sdk_build))
  527. if os.path.exists(sdk_build) == False:
  528. os.makedirs(sdk_build)
  529. board_conf_path = os.path.join(sdk_boards_dir, board_conf)
  530. if os.path.exists(board_conf_path) == False:
  531. print("\nNo board at %s \n\n" %(board_conf_dir))
  532. sys.exit(1)
  533. #build_zephyr_app(board_conf, sdk_build_boot, sdk_mcuboot_app_path)
  534. if args.pack == False:
  535. if args.bkeil == True:
  536. build_zephyr_app_by_keil(board_conf, sdk_build, application_path, application_cfg_reldir, args.libname, args.silent)
  537. else:
  538. build_zephyr_app_by_gcc(board_conf, sdk_build, application_path, application_cfg_reldir, args.libname, args.silent)
  539. #build_firmware(board_conf, sdk_build, board_conf_path, os.path.join(application_path, application_cfg_reldir))
  540. print("build finished %s \n\n" %(board_conf_path))
  541. shutil.copyfile(os.path.join(sdk_build, "zephyr" ,"zephyr.bin"), os.path.join(sdk_parent_boards_dir, board_conf, application+".bin"))
  542. print("copy finished")
  543. if __name__ == "__main__":
  544. main(sys.argv)