/usr/bin/golem is in undertaker 1.6.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | #! /usr/bin/python
"""golem - analyze feature dependencies in Linux makefiles"""
# Copyright (C) 2011-2012 Reinhard Tartler <tartler@informatik.uni-erlangen.de>
# Copyright (C) 2011-2012 Christian Dietrich <christian.dietrich@informatik.uni-erlangen.de>
# Copyright (C) 2012-2014 Valentin Rothberg <valentinrothberg@googlemail.com>
# Copyright (C) 2014 Stefan Hengelein <stefan.hengelein@fau.de>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
sys.path = [os.path.join(os.path.dirname(sys.path[0]), 'lib', 'python%d.%d' % \
(sys.version_info[0], sys.version_info[1]), 'site-packages')] + sys.path
import vamos
import vamos.model as Model
import vamos.tools as tools
from vamos.golem.inference import Inferencer
import vamos.golem.inference_atoms as inference_atoms
import vamos.golem.kbuild as kbuild
import vamos.vampyr.BuildFrameworks as BuildFrameworks
import vamos.vampyr.utils as utils
import logging
from optparse import OptionParser
def do_inference(args, arch, subarch):
path = ""
if len(args) > 0 and os.path.isdir(args[0]):
path = os.path.normpath(args[0])
logging.info("Limiting the constraints interferencing to subdirectory '%s'", path)
atoms = None
if os.path.exists("src/Modules.ia32"):
atoms = inference_atoms.FiascoInferenceAtoms()
if arch is "busybox":
atoms = inference_atoms.BusyboxInferenceAtoms(path)
elif arch is "coreboot":
atoms = inference_atoms.CorebootInferenceAtoms(path)
else:
atoms = inference_atoms.LinuxInferenceAtoms(arch, subarch, path)
inferencer = Inferencer(atoms)
inferencer.calculate()
def find_variables_in_directories(arch, args):
modelfile = Model.get_model_for_arch(arch)
if not modelfile:
sys.exit("%s not found, generate models using undertaker-kconfigdump" % modelfile)
logging.info("loading model %s", modelfile)
if not args:
args.append(".")
for arg in args:
if not os.path.isdir(arg):
logging.warning("Skipping %s, not a directory", arg)
continue
variables = kbuild.determine_buildsystem_variables_in_directory(arg, arch)
logging.info("Detected %d Kconfig variables in subdir %s", len(variables), arg)
model = Model.parse_model(modelfile)
model_vars = [x for x in variables if x in model]
model_vars += [x + "_MODULE" for x in model_vars if (x+"_MODULE") in model]
logging.debug("found %d items in check_subdir result: %s", len(model_vars), model_vars)
for var in sorted(variables):
print var
def main():
# this method has too many branches and statements
# pylint: disable=R0912
# pylint: disable=R0915
parser = OptionParser(usage="%prog [options]\n\n"
"This tool is meant to be run in a Linux source tree.\n"
"It is sensitive to the environment variables $ARCH and $SUBARCH.\n"
"Change them to scan on specific architectures.")
parser.add_option('-v', '--verbose', dest='verbose', action='count',
help="increase verbosity (specify multiple times for more)")
parser.add_option('-l', '--list', dest='do_list', action='store_true',
help="list all object files that would be built"\
+" in the current configuration")
parser.add_option('-e', '--expand', dest='partialconfig', action='store',
default=None,
help="expand given partial configuration"\
+" in the current configuration")
parser.add_option('-s', '--strategy', dest='strategy', action='store',
default='alldefconfig',
help="select how partial configurations get expanded")
parser.add_option('-o', '--options', dest='do_opt', action='store_true', default=False,
help="list configuration options mentioned in Linux makefiles.")
parser.add_option('-c', '--compiled', dest='compiled', action='append',
help="check if a given file is compiled"\
+" in the current configuration. This option can"\
+" be given multiple times.")
parser.add_option('-i', '--inference', dest='inference', action='store_true',
help="inference makefile configurability for"\
+" symbols given as arguments")
parser.add_option('-d', '--directory', dest='do_directory', action='store_true',
help="print variables in a subdirectory, uses '.' if none given")
parser.add_option('-b', '--batch', dest='batch_mode', action='store_true',
help="operate in batch mode, read filenames from given worklists")
(opts, args) = parser.parse_args()
tools.setup_logging(opts.verbose)
arch = None
subarch = None
try:
logging.info("detected Linux version %s", kbuild.get_linux_version())
if os.environ.has_key('ARCH'):
arch = os.environ['ARCH']
if os.environ.has_key('SUBARCH'):
subarch = os.environ['SUBARCH']
if not arch:
arch = vamos.default_architecture
subarch = kbuild.guess_subarch_from_arch(arch)
logging.warning("Environment variable $ARCH not set, defaulting to '%s/%s'",
arch, subarch)
if not subarch:
subarch = kbuild.guess_subarch_from_arch(arch)
except kbuild.NotALinuxTree:
pass
if not arch:
try:
logging.info("detected Busybox version %s", kbuild.get_busybox_version())
arch = 'busybox'
except kbuild.NotABusyboxTree:
pass
if not arch:
try:
logging.info("detected Coreboot version %s", kbuild.get_coreboot_version())
arch = 'coreboot'
if os.environ.has_key('SUBARCH'):
subarch = os.environ['SUBARCH']
except kbuild.NotACorebootTree:
pass
if not arch:
sys.exit("No supported software project found")
if opts.inference:
try:
do_inference(args, arch=arch, subarch=subarch)
except RuntimeError as error:
sys.exit("Calculating inferences failed: %s" % error)
sys.exit(0)
if opts.do_opt:
variables = kbuild.determine_buildsystem_variables(arch)
logging.info("Detected %d Kconfig variables in Makefiles", len(variables))
for var in sorted(variables):
print 'CONFIG_' + var
sys.exit(0)
if opts.do_directory:
find_variables_in_directories(arch, args)
sys.exit(0)
if opts.partialconfig:
if not os.path.exists(opts.partialconfig):
sys.exit("Partial config %s does not exist" % opts.partialconfig)
options = {
'arch' : arch,
'subarch': subarch,
'threads': tools.get_online_processors(),
'loglevel': logging.getLogger().getEffectiveLevel(),
'expansion_strategy': opts.strategy,
}
framework = BuildFrameworks.select_framework(None, options)
config_exp = framework.make_partial_configuration(opts.partialconfig)
if not Model.get_model_for_arch(arch):
logging.info("Model for arch %s absent, skipping verification", arch)
config_exp.expand(verify=False)
else:
try:
config_exp.expand(verify=True)
except utils.ExpansionError as error:
logging.warning(str(error))
if opts.do_list:
is_verbose = opts.verbose > 0
try:
files = kbuild.files_for_current_configuration(arch, subarch, is_verbose)
logging.info("Detected %d files with current configuration", len(files))
for f in sorted(files):
print f
except kbuild.TreeNotConfigured:
sys.exit("Your Linux tree is not configured, please configure it first")
sys.exit(0)
elif opts.compiled:
try:
for filename in opts.compiled:
status = kbuild.file_in_current_configuration(filename, arch, subarch)
print filename, status
except kbuild.TreeNotConfigured:
sys.exit("Your Linux tree is not configured, please configure it first")
sys.exit(0)
elif not opts.partialconfig:
parser.print_help()
sys.exit("No option given")
if __name__ == "__main__":
main()
|