mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-09-20 17:44:20 +08:00
12 lines
309 B
Python
12 lines
309 B
Python
import os
|
|
|
|
|
|
def dist_do_building(BSP_ROOT, dist_dir):
|
|
from mkdist import bsp_copy_files
|
|
|
|
print("=> copy raspberry-pico drivers")
|
|
bsp_copy_files(
|
|
os.path.join(os.path.dirname(BSP_ROOT), 'libraries', 'Drivers'),
|
|
os.path.join(os.path.dirname(dist_dir), 'libraries', 'Drivers'),
|
|
)
|