summaryrefslogtreecommitdiffstats
path: root/rtemstoolkit/__init__.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-10-02 16:49:54 +1000
committerChris Johns <chrisj@rtems.org>2018-10-02 16:49:54 +1000
commit5416cfa39dd6b386958571f925b72a15fd63372b (patch)
tree917569756370be9f1654b3b34ecc974cd4b1fb3f /rtemstoolkit/__init__.py
parenttester/bsp-builder: Yield the job control thread when in a dry-run. (diff)
downloadrtems-tools-5416cfa39dd6b386958571f925b72a15fd63372b.tar.bz2
config: Create a config directory and move the RTEMS arch/bsp data to it.
Closes #3536
Diffstat (limited to 'rtemstoolkit/__init__.py')
-rw-r--r--rtemstoolkit/__init__.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/rtemstoolkit/__init__.py b/rtemstoolkit/__init__.py
index ca2d619..6878782 100644
--- a/rtemstoolkit/__init__.py
+++ b/rtemstoolkit/__init__.py
@@ -1,6 +1,6 @@
#
# RTEMS Tools Project (http://www.rtems.org/)
-# Copyright 2010-2016 Chris Johns (chrisj@rtems.org)
+# Copyright 2010-2018 Chris Johns (chrisj@rtems.org)
# All rights reserved.
#
# This file is part of the RTEMS Tools package in 'rtems-tools'.
@@ -30,26 +30,36 @@
all = ['check',
'config',
+ 'configuration',
'error',
'execute',
'git',
+ 'host',
'log',
'macros',
'mailer',
'options',
'path',
'reraise',
+ 'rtems',
+ 'stacktraces',
+ 'textbox',
'version']
from . import check
from . import config
+from . import configuration
from . import error
from . import execute
from . import git
+from . import host
from . import log
from . import macros
from . import mailer
from . import options
from . import path
from . import reraise
+from . import rtems
+from . import stacktraces
+from . import textbox
from . import version