ecf2d82159
* Synchronize the code of the rt mart branch to the master branch. * TTY device * Add lwP code from rt-smart * Add vnode in DFS, but DFS will be re-write for rt-smart * There are three libcpu for rt-smart: * arm/cortex-a, arm/aarch64 * riscv64 Co-authored-by: Rbb666 <zhangbingru@rt-thread.com> Co-authored-by: zhkag <zhkag@foxmail.com>
23 lines
792 B
Python
23 lines
792 B
Python
import os
|
|
import sys
|
|
import shutil
|
|
|
|
cwd_path = os.getcwd()
|
|
sys.path.append(os.path.join(os.path.dirname(cwd_path), 'rt-thread', 'tools'))
|
|
|
|
|
|
# BSP dist function
|
|
def dist_do_building(BSP_ROOT, dist_dir):
|
|
from mkdist import bsp_copy_files
|
|
import rtconfig
|
|
|
|
print("=> copy libraries")
|
|
library_dir = os.path.join(dist_dir, 'libraries')
|
|
library_path = os.path.join(os.path.dirname(BSP_ROOT), 'libraries')
|
|
bsp_copy_files(os.path.join(library_path, rtconfig.BSP_LIBRARY_TYPE),
|
|
os.path.join(library_dir, rtconfig.BSP_LIBRARY_TYPE))
|
|
|
|
print("=> copy bsp drivers")
|
|
bsp_copy_files(os.path.join(library_path, 'drivers'), os.path.join(library_dir, 'drivers'))
|
|
shutil.copyfile(os.path.join(library_path, 'Kconfig'), os.path.join(library_dir, 'Kconfig'))
|