summaryrefslogtreecommitdiff
path: root/morphlib/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/app.py')
-rwxr-xr-xmorphlib/app.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/morphlib/app.py b/morphlib/app.py
index c8b9b911..d3136b43 100755
--- a/morphlib/app.py
+++ b/morphlib/app.py
@@ -42,7 +42,6 @@ defaults = {
'cachedir': os.path.expanduser('~/.cache/morph'),
'max-jobs': morphlib.util.make_concurrency(),
'prefix': '/usr',
- 'toolchain-target': '%s-baserock-linux-gnu' % os.uname()[4],
'build-ref-prefix': 'baserock/builds'
}
@@ -137,23 +136,6 @@ class Morph(cliapp.Application):
default=os.environ.get('TMPDIR'),
group=group_build)
- # Would be better to have a separate tool to cross-bootstrap
- # because it's completely outside normal Morph usage
- group_bootstrap = 'Bootstrap Options'
- self.settings.string(['target-cflags'],
- 'inject additional CFLAGS into the environment '
- 'that is used to build chunks',
- metavar='CFLAGS',
- default='',
- group=group_bootstrap)
- self.settings.string(['toolchain-target'],
- 'set the TOOLCHAIN_TARGET variable which is used '
- 'in some chunks to determine which architecture '
- 'to build tools for',
- metavar='TOOLCHAIN_TARGET',
- default=defaults['toolchain-target'],
- group=group_bootstrap)
-
# These cannot be removed just yet because existing morph.conf files
# would fail to parse.
group_obsolete = 'Obsolete Options'