summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/options.py
diff options
context:
space:
mode:
authorKarel Gardas <karel.gardas@centrum.cz>2014-10-06 20:58:45 +0200
committerChris Johns <chrisj@rtems.org>2014-10-07 19:50:59 +1100
commit5eb832f2967f411be5efe95ec1d5b0a9d00ca1a5 (patch)
treeec72826e01b10a22f5ef8ca574e191c6328a9122 /source-builder/sb/options.py
parentrtems: Fix type in RTEMS kernel build. (diff)
downloadrtems-source-builder-5eb832f2967f411be5efe95ec1d5b0a9d00ca1a5.tar.bz2
add support for i386-solaris2 platform
Diffstat (limited to 'source-builder/sb/options.py')
-rw-r--r--source-builder/sb/options.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/source-builder/sb/options.py b/source-builder/sb/options.py
index af64080..01aeb7b 100644
--- a/source-builder/sb/options.py
+++ b/source-builder/sb/options.py
@@ -529,6 +529,9 @@ def load(args, optargs = None, defaults = '%{_sbdir}/defaults.mc'):
elif uname[0] == 'Linux':
import linux
overrides = linux.load()
+ elif uname[0] == 'SunOS':
+ import solaris
+ overrides = solaris.load()
except:
raise error.general('failed to load %s host support' % (uname[0]))
else: