source: rtems-tools/rtemstoolkit/linux.py @ 00b9f1d

5
Last change on this file since 00b9f1d was 00b9f1d, checked in by Sebastian Huber <sebastian.huber@…>, on 03/05/20 at 09:25:38

rtemstoolkit: Support more Linux distributions

The platform.dist() function is not always available.

  • Property mode set to 100644
File size: 5.9 KB
Line 
1#
2# RTEMS Tools Project (http://www.rtems.org/)
3# Copyright 2010-2017 Chris Johns (chrisj@rtems.org)
4# All rights reserved.
5#
6# This file is part of the RTEMS Tools package in 'rtems-tools'.
7#
8# Redistribution and use in source and binary forms, with or without
9# modification, are permitted provided that the following conditions are met:
10#
11# 1. Redistributions of source code must retain the above copyright notice,
12# this list of conditions and the following disclaimer.
13#
14# 2. Redistributions in binary form must reproduce the above copyright notice,
15# this list of conditions and the following disclaimer in the documentation
16# and/or other materials provided with the distribution.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28# POSSIBILITY OF SUCH DAMAGE.
29#
30
31#
32# This code is based on what ever doco about spec files I could find and
33# RTEMS project's spec files.
34#
35
36import os
37import platform
38
39from rtemstoolkit import execute
40from rtemstoolkit import path
41
42def cpus():
43    processors = '/bin/grep processor /proc/cpuinfo'
44    e = execute.capture_execution()
45    exit_code, proc, output = e.shell(processors)
46    ncpus = 0
47    if exit_code == 0:
48        try:
49            for l in output.split('\n'):
50                count = l.split(':')[1].strip()
51                if int(count) > ncpus:
52                    ncpus = int(count)
53        except:
54            pass
55    return ncpus + 1
56
57def overrides():
58    uname = os.uname()
59    smp_mflags = ''
60    ncpus = '%d' % cpus()
61    if uname[4].startswith('arm'):
62        cpu = 'arm'
63    else:
64        cpu = uname[4]
65
66    defines = {
67        '_ncpus':         ('none',    'none',     ncpus),
68        '_os':            ('none',    'none',     'linux'),
69        '_host':          ('triplet', 'required', cpu + '-linux-gnu'),
70        '_host_vendor':   ('none',    'none',     'gnu'),
71        '_host_os':       ('none',    'none',     'linux'),
72        '_host_cpu':      ('none',    'none',     cpu),
73        '_host_alias':    ('none',    'none',     '%{nil}'),
74        '_host_arch':     ('none',    'none',     cpu),
75        '_usr':           ('dir',     'required', '/usr'),
76        '_var':           ('dir',     'required', '/var'),
77        '__bzip2':        ('exe',     'required', '/usr/bin/bzip2'),
78        '__gzip':         ('exe',     'required', '/bin/gzip'),
79        '__tar':          ('exe',     'required', '/bin/tar')
80        }
81
82    # Works for LSB distros
83    try:
84        distro = platform.dist()[0]
85        distro_ver = float(platform.dist()[1])
86    except (AttributeError, ValueError):
87        # Non LSB distro found, use failover"
88        distro = ''
89        pass
90
91    # Non LSB - fail over to issue
92    if distro == '':
93        try:
94            issue = open('/etc/issue').read()
95            distro = issue.split(' ')[0]
96            distro_ver = float(issue.split(' ')[2])
97        except:
98            pass
99
100    # Manage distro aliases
101    if distro in ['centos']:
102        distro = 'redhat'
103    elif distro in ['fedora']:
104        if distro_ver < 17:
105            distro = 'redhat'
106    elif distro in ['centos', 'fedora']:
107        distro = 'redhat'
108    elif distro in ['Ubuntu', 'ubuntu']:
109        distro = 'debian'
110    elif distro in ['Arch']:
111        distro = 'arch'
112    elif distro in ['SuSE']:
113        distro = 'suse'
114
115    variations = {
116        'debian' : { '__bzip2':        ('exe',     'required', '/bin/bzip2'),
117                     '__chgrp':        ('exe',     'required', '/bin/chgrp'),
118                     '__chown':        ('exe',     'required', '/bin/chown'),
119                     '__grep':         ('exe',     'required', '/bin/grep'),
120                     '__sed':          ('exe',     'required', '/bin/sed') },
121        'redhat' : { '__bzip2':        ('exe',     'required', '/bin/bzip2'),
122                     '__chgrp':        ('exe',     'required', '/bin/chgrp'),
123                     '__chown':        ('exe',     'required', '/bin/chown'),
124                     '__install_info': ('exe',     'required', '/sbin/install-info'),
125                     '__grep':         ('exe',     'required', '/bin/grep'),
126                     '__sed':          ('exe',     'required', '/bin/sed'),
127                     '__touch':        ('exe',     'required', '/bin/touch') },
128        'fedora' : { '__chown':        ('exe',     'required', '/usr/bin/chown'),
129                     '__install_info': ('exe',     'required', '/usr/sbin/install-info') },
130        'arch'   : { '__gzip':         ('exe',     'required', '/usr/bin/gzip'),
131                     '__chown':        ('exe',     'required', '/usr/bin/chown') },
132        'suse'   : { '__chgrp':        ('exe',     'required', '/usr/bin/chgrp'),
133                     '__chown':        ('exe',     'required', '/usr/sbin/chown') },
134        }
135
136    if distro in variations:
137        for v in variations[distro]:
138            if path.exists(variations[distro][v][2]):
139                defines[v] = variations[distro][v]
140
141    defines['_build']        = defines['_host']
142    defines['_build_vendor'] = defines['_host_vendor']
143    defines['_build_os']     = defines['_host_os']
144    defines['_build_cpu']    = defines['_host_cpu']
145    defines['_build_alias']  = defines['_host_alias']
146    defines['_build_arch']   = defines['_host_arch']
147
148    return defines
149
150if __name__ == '__main__':
151    import pprint
152    pprint.pprint(cpus())
153    pprint.pprint(overrides())
Note: See TracBrowser for help on using the repository browser.