diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-04-27 23:53:11 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-04-27 23:53:11 +0100 |
| commit | 8009dbecfb6f818e30652d559b39272492b578f1 (patch) | |
| tree | 7ed28f46c1bc9e18fb587a6987e6945ef3bd2e96 | |
| parent | 4293bbc5866f08fc228ef0599b998707e98d89d8 (diff) | |
raspbian support.
| -rwxr-xr-x | cdist | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -521,6 +521,8 @@ def target_factory(s, debug, work): print >>sys.stderr,"Bad Linux target name `%s'; must be something like ubuntu-12.04-32 (i.e. distro-version-bits)" % s sys.exit(1) target = LinuxTarget(p[0], p[1], int(p[2]), work) + elif s == 'raspbian': + target = LinuxTarget(s, '', 32, work) elif s.startswith('osx-'): target = OSXSingleTarget(int(s.split('-')[1]), work) elif s == 'osx': |
