Move target related code into it's own directory

This should make it easier to navigate the code base
pull/3995/head
Jimmy Brisson 2017-03-22 15:20:09 -05:00
parent 75f6f2db30
commit f590dc11bd
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ import inspect
import sys import sys
from copy import copy from copy import copy
from collections import namedtuple from collections import namedtuple
from tools.patch import patch from tools.targets.LPC import patch
from tools.paths import TOOLS_BOOTLOADERS from tools.paths import TOOLS_BOOTLOADERS
from tools.utils import json_file_to_dict from tools.utils import json_file_to_dict
@ -121,7 +121,7 @@ class Target(namedtuple("Target", "name json_data resolution_order resolution_or
# Default location of the 'targets.json' file # Default location of the 'targets.json' file
__targets_json_location_default = os.path.join( __targets_json_location_default = os.path.join(
os.path.dirname(os.path.abspath(__file__)), '..', 'targets', 'targets.json') os.path.dirname(os.path.abspath(__file__)), '..', '..', 'targets', 'targets.json')
# Current/new location of the 'targets.json' file # Current/new location of the 'targets.json' file
__targets_json_location = None __targets_json_location = None
@ -494,7 +494,7 @@ class MCU_NRF51Code(object):
class NCS36510TargetCode: class NCS36510TargetCode:
@staticmethod @staticmethod
def ncs36510_addfib(t_self, resources, elf, binf): def ncs36510_addfib(t_self, resources, elf, binf):
from tools.add_fib import add_fib_at_start from tools.targets.NCS import add_fib_at_start
print("binf ", binf) print("binf ", binf)
add_fib_at_start(binf[:-4]) add_fib_at_start(binf[:-4])
################################################################################ ################################################################################