summaryrefslogtreecommitdiff
path: root/parse-platforms.py
blob: 9313cd50cdfeadd955df5962fbbc9693e6e86b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/usr/bin/python
#
# Copyright (c) 2015-2019, Linaro Ltd. All rights reserved.
#
# SPDX-License-Identifier: ISC
#

from __future__ import print_function

import sys, os, argparse

try:
    # try Python 3 configparser module first
    from configparser import ConfigParser
except:
    # fallback to Python 2 ConfigParser
    try:
        from ConfigParser import ConfigParser
    except:
        print("Unable to load configparser/ConfigParser - exiting!")
        sys.exit(1)

default_filename='platforms.config'

def list_platforms():
    for p in platforms: print(p)

def shortlist_platforms():
    for p in platforms: print(p, end = ' ')

def get_images():
    if args.platform:
        try:
            value = config.get(args.platform, "EXTRA_FILES")
            print(value, end = ' ')
        except:
            pass
        try:
            value = config.get(args.platform, "BUILD_ATF")
            if value == "yes":
                print("bl1.bin fip.bin")
                return True
        except:
            try:
                value = config.get(args.platform, "UEFI_BIN")
                print(value)
                return True
            except:
                print("No images found!")
    else:
        print("No platform specified!")

    return False

def get_executables():
    if args.platform:
        try:
            value = config.get(args.platform, "EXEC_FILES")
            try:
                arch = config.get(args.platform, "ARCH")
            except:
                return False

            print("%s/%s" % (arch, value))
            return True
        except:
            pass

    return False

def get_option():
    if args.platform:
        if args.option:
            try:
                value = config.get(args.platform, args.option)
                if value:
                    print(value)
                    return True
            except:
                return True   # Option not found, return True, and no output
        else:
            print("No option specified!")
    else:
        print("No platform specified!")
    return False

parser = argparse.ArgumentParser(description='Parses platform configuration for Linaro UEFI build scripts.')
parser.add_argument('-c', '--config-file', help='Specify a non-default platform config file.', required=False)
parser.add_argument('-p', '--platform', help='Read configuration for PLATFORM only.', required=False)
parser.add_argument('command', action="store", help='Action to perform')
parser.add_argument('-o', '--option', help='Option to retreive')

args = parser.parse_args()
if args.config_file:
    config_filename = args.config_file
else:
    config_filename = os.path.dirname(os.path.realpath(sys.argv[0])) + '/' + default_filename

config = ConfigParser()
config.read(config_filename)

platforms = config.sections()

commands = {"shortlist": shortlist_platforms,
            "list": list_platforms,
            "images": get_images,
            "executables": get_executables,
            "get": get_option}

try:
    retval = commands[args.command]()
except:
    print ("Unrecognized command '%s'" % args.command)
    sys.exit(1)