mirror of https://github.com/ARMmbed/mbed-os.git
Renamed workspace_tools folder to tools
parent
9714a0edf6
commit
3d45b2cdbb
0
workspace_tools/bootloaders/MTS_DRAGONFLY_F411RE/bootloader.bin → tools/bootloaders/MTS_DRAGONFLY_F411RE/bootloader.bin
Executable file → Normal file
0
workspace_tools/bootloaders/MTS_DRAGONFLY_F411RE/bootloader.bin → tools/bootloaders/MTS_DRAGONFLY_F411RE/bootloader.bin
Executable file → Normal file
0
workspace_tools/bootloaders/MTS_MDOT_F411RE/bootloader.bin → tools/bootloaders/MTS_MDOT_F411RE/bootloader.bin
Executable file → Normal file
0
workspace_tools/bootloaders/MTS_MDOT_F411RE/bootloader.bin → tools/bootloaders/MTS_MDOT_F411RE/bootloader.bin
Executable file → Normal file
|
@ -27,14 +27,14 @@ ROOT = abspath(join(dirname(__file__), ".."))
|
||||||
sys.path.insert(0, ROOT)
|
sys.path.insert(0, ROOT)
|
||||||
|
|
||||||
|
|
||||||
from workspace_tools.toolchains import TOOLCHAINS
|
from tools.toolchains import TOOLCHAINS
|
||||||
from workspace_tools.targets import TARGET_NAMES, TARGET_MAP
|
from tools.targets import TARGET_NAMES, TARGET_MAP
|
||||||
from workspace_tools.options import get_default_options_parser
|
from tools.options import get_default_options_parser
|
||||||
from workspace_tools.build_api import build_mbed_libs, build_lib
|
from tools.build_api import build_mbed_libs, build_lib
|
||||||
from workspace_tools.build_api import mcu_toolchain_matrix
|
from tools.build_api import mcu_toolchain_matrix
|
||||||
from workspace_tools.build_api import static_analysis_scan, static_analysis_scan_lib, static_analysis_scan_library
|
from tools.build_api import static_analysis_scan, static_analysis_scan_lib, static_analysis_scan_library
|
||||||
from workspace_tools.build_api import print_build_results
|
from tools.build_api import print_build_results
|
||||||
from workspace_tools.settings import CPPCHECK_CMD, CPPCHECK_MSG_FORMAT
|
from tools.settings import CPPCHECK_CMD, CPPCHECK_MSG_FORMAT
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
start = time()
|
start = time()
|
|
@ -25,11 +25,11 @@ from shutil import rmtree
|
||||||
from os.path import join, exists, basename
|
from os.path import join, exists, basename
|
||||||
from time import time
|
from time import time
|
||||||
|
|
||||||
from workspace_tools.utils import mkdir, run_cmd, run_cmd_ext, NotSupportedException
|
from tools.utils import mkdir, run_cmd, run_cmd_ext, NotSupportedException
|
||||||
from workspace_tools.paths import MBED_TARGETS_PATH, MBED_LIBRARIES, MBED_API, MBED_HAL, MBED_COMMON
|
from tools.paths import MBED_TARGETS_PATH, MBED_LIBRARIES, MBED_API, MBED_HAL, MBED_COMMON
|
||||||
from workspace_tools.targets import TARGET_NAMES, TARGET_MAP
|
from tools.targets import TARGET_NAMES, TARGET_MAP
|
||||||
from workspace_tools.libraries import Library
|
from tools.libraries import Library
|
||||||
from workspace_tools.toolchains import TOOLCHAIN_CLASSES
|
from tools.toolchains import TOOLCHAIN_CLASSES
|
||||||
from jinja2 import FileSystemLoader
|
from jinja2 import FileSystemLoader
|
||||||
from jinja2.environment import Environment
|
from jinja2.environment import Environment
|
||||||
|
|
|
@ -25,14 +25,14 @@ import json
|
||||||
ROOT = abspath(join(dirname(__file__), ".."))
|
ROOT = abspath(join(dirname(__file__), ".."))
|
||||||
sys.path.insert(0, ROOT)
|
sys.path.insert(0, ROOT)
|
||||||
|
|
||||||
from workspace_tools.build_api import build_mbed_libs
|
from tools.build_api import build_mbed_libs
|
||||||
from workspace_tools.build_api import write_build_report
|
from tools.build_api import write_build_report
|
||||||
from workspace_tools.targets import TARGET_MAP, TARGET_NAMES
|
from tools.targets import TARGET_MAP, TARGET_NAMES
|
||||||
from workspace_tools.test_exporters import ReportExporter, ResultExporterType
|
from tools.test_exporters import ReportExporter, ResultExporterType
|
||||||
from workspace_tools.test_api import SingleTestRunner
|
from tools.test_api import SingleTestRunner
|
||||||
from workspace_tools.test_api import singletest_in_cli_mode
|
from tools.test_api import singletest_in_cli_mode
|
||||||
from workspace_tools.paths import TEST_DIR
|
from tools.paths import TEST_DIR
|
||||||
from workspace_tools.tests import TEST_MAP
|
from tools.tests import TEST_MAP
|
||||||
|
|
||||||
OFFICIAL_MBED_LIBRARY_BUILD = (
|
OFFICIAL_MBED_LIBRARY_BUILD = (
|
||||||
('LPC11U24', ('ARM', 'uARM', 'GCC_ARM', 'IAR')),
|
('LPC11U24', ('ARM', 'uARM', 'GCC_ARM', 'IAR')),
|
|
@ -14,7 +14,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
See the License for the specific language governing permissions and
|
See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
"""
|
"""
|
||||||
from workspace_tools.targets import TARGETS
|
from tools.targets import TARGETS
|
||||||
|
|
||||||
DEFAULT_SUPPORT = {}
|
DEFAULT_SUPPORT = {}
|
||||||
CORTEX_ARM_SUPPORT = {}
|
CORTEX_ARM_SUPPORT = {}
|
|
@ -17,7 +17,7 @@ limitations under the License.
|
||||||
from os.path import join
|
from os.path import join
|
||||||
from jinja2 import Template
|
from jinja2 import Template
|
||||||
|
|
||||||
from workspace_tools.paths import TOOLS_DATA, MBED_RPC
|
from tools.paths import TOOLS_DATA, MBED_RPC
|
||||||
|
|
||||||
RPC_TEMPLATES_PATH = join(TOOLS_DATA, "rpc")
|
RPC_TEMPLATES_PATH = join(TOOLS_DATA, "rpc")
|
||||||
|
|
|
@ -19,10 +19,10 @@ from os.path import join, exists, basename
|
||||||
from shutil import copytree, rmtree, copy
|
from shutil import copytree, rmtree, copy
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
from workspace_tools.utils import mkdir
|
from tools.utils import mkdir
|
||||||
from workspace_tools.export import uvision4, uvision5, codered, gccarm, ds5_5, iar, emblocks, coide, kds, zip, simplicityv3, atmelstudio, sw4stm32, e2studio
|
from tools.export import uvision4, uvision5, codered, gccarm, ds5_5, iar, emblocks, coide, kds, zip, simplicityv3, atmelstudio, sw4stm32, e2studio
|
||||||
from workspace_tools.export.exporters import zip_working_directory_and_clean_up, OldLibrariesException
|
from tools.export.exporters import zip_working_directory_and_clean_up, OldLibrariesException
|
||||||
from workspace_tools.targets import TARGET_NAMES, EXPORT_MAP, TARGET_MAP
|
from tools.targets import TARGET_NAMES, EXPORT_MAP, TARGET_MAP
|
||||||
|
|
||||||
from project_generator_definitions.definitions import ProGenDef
|
from project_generator_definitions.definitions import ProGenDef
|
||||||
|
|
0
workspace_tools/export/codered_lpc1549_project.tmpl → tools/export/codered_lpc1549_project.tmpl
Executable file → Normal file
0
workspace_tools/export/codered_lpc1549_project.tmpl → tools/export/codered_lpc1549_project.tmpl
Executable file → Normal file
0
workspace_tools/export/coide_mote_l152rc.coproj.tmpl → tools/export/coide_mote_l152rc.coproj.tmpl
Executable file → Normal file
0
workspace_tools/export/coide_mote_l152rc.coproj.tmpl → tools/export/coide_mote_l152rc.coproj.tmpl
Executable file → Normal file
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue