blob: fe840d9cfb7b1724280f418e524653e6b0f274e0 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# Extensible SDK
2
3inherit populate_sdk_base
4
5# NOTE: normally you cannot use task overrides for this kind of thing - this
6# only works because of get_sdk_ext_rdepends()
7
8TOOLCHAIN_HOST_TASK_task-populate-sdk-ext = " \
9 meta-environment-extsdk-${MACHINE} \
10 "
11
12TOOLCHAIN_TARGET_TASK_task-populate-sdk-ext = ""
13
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014SDK_RELOCATE_AFTER_INSTALL_task-populate-sdk-ext = "0"
15
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050016SDK_EXT = ""
17SDK_EXT_task-populate-sdk-ext = "-ext"
18
19# Options are full or minimal
20SDK_EXT_TYPE ?= "full"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060021SDK_INCLUDE_PKGDATA ?= "0"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050022SDK_INCLUDE_TOOLCHAIN ?= "${@'1' if d.getVar('SDK_EXT_TYPE') == 'full' else '0'}"
Brad Bishopa34c0302019-09-23 22:34:48 -040023SDK_INCLUDE_NATIVESDK ?= "0"
Brad Bishop1d80a2e2019-11-15 16:35:03 -050024SDK_INCLUDE_BUILDTOOLS ?= '1'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050025
26SDK_RECRDEP_TASKS ?= ""
Andrew Geissler09209ee2020-12-13 08:44:15 -060027SDK_CUSTOM_TEMPLATECONF ?= "0"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050028
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029SDK_LOCAL_CONF_WHITELIST ?= ""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050030SDK_LOCAL_CONF_BLACKLIST ?= "CONF_VERSION \
31 BB_NUMBER_THREADS \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060032 BB_NUMBER_PARSE_THREADS \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050033 PARALLEL_MAKE \
34 PRSERV_HOST \
35 SSTATE_MIRRORS \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060036 DL_DIR \
37 SSTATE_DIR \
38 TMPDIR \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050039 BB_SERVER_TIMEOUT \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050040 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050041SDK_INHERIT_BLACKLIST ?= "buildhistory icecc"
42SDK_UPDATE_URL ?= ""
43
44SDK_TARGETS ?= "${PN}"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050045
Patrick Williamsc0f7c042017-02-23 20:41:17 -060046def get_sdk_install_targets(d, images_only=False):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050047 sdk_install_targets = ''
Brad Bishop6e60e8b2018-02-01 10:27:11 -050048 if images_only or d.getVar('SDK_EXT_TYPE') != 'minimal':
49 sdk_install_targets = d.getVar('SDK_TARGETS')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050050
51 depd = d.getVar('BB_TASKDEPDATA', False)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050052 tasklist = bb.build.tasksbetween('do_image_complete', 'do_build', d)
53 tasklist.remove('do_build')
Patrick Williamsc0f7c042017-02-23 20:41:17 -060054 for v in depd.values():
Brad Bishop6e60e8b2018-02-01 10:27:11 -050055 if v[1] in tasklist:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050056 if v[0] not in sdk_install_targets:
57 sdk_install_targets += ' {}'.format(v[0])
58
Patrick Williamsc0f7c042017-02-23 20:41:17 -060059 if not images_only:
Brad Bishop6e60e8b2018-02-01 10:27:11 -050060 if d.getVar('SDK_INCLUDE_PKGDATA') == '1':
Patrick Williamsc0f7c042017-02-23 20:41:17 -060061 sdk_install_targets += ' meta-world-pkgdata:do_allpackagedata'
Brad Bishop6e60e8b2018-02-01 10:27:11 -050062 if d.getVar('SDK_INCLUDE_TOOLCHAIN') == '1':
Patrick Williamsc0f7c042017-02-23 20:41:17 -060063 sdk_install_targets += ' meta-extsdk-toolchain:do_populate_sysroot'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050064
65 return sdk_install_targets
66
67get_sdk_install_targets[vardepsexclude] = "BB_TASKDEPDATA"
68
Patrick Williamsc124f4f2015-09-15 14:41:29 -050069OE_INIT_ENV_SCRIPT ?= "oe-init-build-env"
70
71# The files from COREBASE that you want preserved in the COREBASE copied
72# into the sdk. This allows someone to have their own setup scripts in
73# COREBASE be preserved as well as untracked files.
74COREBASE_FILES ?= " \
75 oe-init-build-env \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050076 scripts \
77 LICENSE \
78 .templateconf \
79"
80
81SDK_DIR_task-populate-sdk-ext = "${WORKDIR}/sdk-ext"
82B_task-populate-sdk-ext = "${SDK_DIR}"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050083TOOLCHAINEXT_OUTPUTNAME ?= "${SDK_NAME}-toolchain-ext-${SDK_VERSION}"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050084TOOLCHAIN_OUTPUTNAME_task-populate-sdk-ext = "${TOOLCHAINEXT_OUTPUTNAME}"
85
86SDK_EXT_TARGET_MANIFEST = "${SDK_DEPLOY}/${TOOLCHAINEXT_OUTPUTNAME}.target.manifest"
87SDK_EXT_HOST_MANIFEST = "${SDK_DEPLOY}/${TOOLCHAINEXT_OUTPUTNAME}.host.manifest"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050088
Brad Bishopd7bf8c12018-02-25 22:55:05 -050089python write_target_sdk_ext_manifest () {
90 from oe.sdk import get_extra_sdkinfo
91 sstate_dir = d.expand('${SDK_OUTPUT}/${SDKPATH}/sstate-cache')
92 extra_info = get_extra_sdkinfo(sstate_dir)
93
94 target = d.getVar('TARGET_SYS')
95 target_multimach = d.getVar('MULTIMACH_TARGET_SYS')
96 real_target_multimach = d.getVar('REAL_MULTIMACH_TARGET_SYS')
97
98 pkgs = {}
Brad Bishop1d80a2e2019-11-15 16:35:03 -050099 os.makedirs(os.path.dirname(d.getVar('SDK_EXT_TARGET_MANIFEST')), exist_ok=True)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500100 with open(d.getVar('SDK_EXT_TARGET_MANIFEST'), 'w') as f:
101 for fn in extra_info['filesizes']:
102 info = fn.split(':')
103 if info[2] in (target, target_multimach, real_target_multimach) \
104 or info[5] == 'allarch':
105 if not info[1] in pkgs:
106 f.write("%s %s %s\n" % (info[1], info[2], info[3]))
107 pkgs[info[1]] = {}
108}
109python write_host_sdk_ext_manifest () {
110 from oe.sdk import get_extra_sdkinfo
111 sstate_dir = d.expand('${SDK_OUTPUT}/${SDKPATH}/sstate-cache')
112 extra_info = get_extra_sdkinfo(sstate_dir)
113 host = d.getVar('BUILD_SYS')
114 with open(d.getVar('SDK_EXT_HOST_MANIFEST'), 'w') as f:
115 for fn in extra_info['filesizes']:
116 info = fn.split(':')
117 if info[2] == host:
118 f.write("%s %s %s\n" % (info[1], info[2], info[3]))
119}
120
121SDK_POSTPROCESS_COMMAND_append_task-populate-sdk-ext = "write_target_sdk_ext_manifest; write_host_sdk_ext_manifest; "
122
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500123SDK_TITLE_task-populate-sdk-ext = "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} Extensible SDK"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500124
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600125def clean_esdk_builddir(d, sdkbasepath):
126 """Clean up traces of the fake build for create_filtered_tasklist()"""
127 import shutil
Andrew Geissler82c905d2020-04-13 13:39:40 -0500128 cleanpaths = ['cache', 'tmp']
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600129 for pth in cleanpaths:
130 fullpth = os.path.join(sdkbasepath, pth)
131 if os.path.isdir(fullpth):
132 shutil.rmtree(fullpth)
133 elif os.path.isfile(fullpth):
134 os.remove(fullpth)
135
136def create_filtered_tasklist(d, sdkbasepath, tasklistfile, conf_initpath):
137 """
138 Create a filtered list of tasks. Also double-checks that the build system
139 within the SDK basically works and required sstate artifacts are available.
140 """
141 import tempfile
142 import shutil
143 import oe.copy_buildsystem
144
145 # Create a temporary build directory that we can pass to the env setup script
146 shutil.copyfile(sdkbasepath + '/conf/local.conf', sdkbasepath + '/conf/local.conf.bak')
147 try:
148 with open(sdkbasepath + '/conf/local.conf', 'a') as f:
149 # Force the use of sstate from the build system
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500150 f.write('\nSSTATE_DIR_forcevariable = "%s"\n' % d.getVar('SSTATE_DIR'))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500151 f.write('SSTATE_MIRRORS_forcevariable = "file://universal/(.*) file://universal-4.9/\\1 file://universal-4.9/(.*) file://universal-4.8/\\1"\n')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600152 # Ensure TMPDIR is the default so that clean_esdk_builddir() can delete it
153 f.write('TMPDIR_forcevariable = "${TOPDIR}/tmp"\n')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500154 f.write('TCLIBCAPPEND_forcevariable = ""\n')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600155 # Drop uninative if the build isn't using it (or else NATIVELSBSTRING will
156 # be different and we won't be able to find our native sstate)
157 if not bb.data.inherits_class('uninative', d):
158 f.write('INHERIT_remove = "uninative"\n')
159
160 # Unfortunately the default SDKPATH (or even a custom value) may contain characters that bitbake
161 # will not allow in its COREBASE path, so we need to rename the directory temporarily
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500162 temp_sdkbasepath = d.getVar('SDK_OUTPUT') + '/tmp-renamed-sdk'
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600163 # Delete any existing temp dir
164 try:
165 shutil.rmtree(temp_sdkbasepath)
166 except FileNotFoundError:
167 pass
Andrew Geisslerc926e172021-05-07 16:11:35 -0500168 bb.utils.rename(sdkbasepath, temp_sdkbasepath)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400169 cmdprefix = '. %s .; ' % conf_initpath
170 logfile = d.getVar('WORKDIR') + '/tasklist_bb_log.txt'
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600171 try:
Brad Bishop316dfdd2018-06-25 12:45:53 -0400172 oe.copy_buildsystem.check_sstate_task_list(d, get_sdk_install_targets(d), tasklistfile, cmdprefix=cmdprefix, cwd=temp_sdkbasepath, logfile=logfile)
173 except bb.process.ExecutionError as e:
174 msg = 'Failed to generate filtered task list for extensible SDK:\n%s' % e.stdout.rstrip()
175 if 'attempted to execute unexpectedly and should have been setscened' in e.stdout:
176 msg += '\n----------\n\nNOTE: "attempted to execute unexpectedly and should have been setscened" errors indicate this may be caused by missing sstate artifacts that were likely produced in earlier builds, but have been subsequently deleted for some reason.\n'
177 bb.fatal(msg)
Andrew Geisslerc926e172021-05-07 16:11:35 -0500178 bb.utils.rename(temp_sdkbasepath, sdkbasepath)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600179 # Clean out residue of running bitbake, which check_sstate_task_list()
180 # will effectively do
181 clean_esdk_builddir(d, sdkbasepath)
182 finally:
Andrew Geissler82c905d2020-04-13 13:39:40 -0500183 localconf = sdkbasepath + '/conf/local.conf'
184 if os.path.exists(localconf + '.bak'):
185 os.replace(localconf + '.bak', localconf)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600186
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500187python copy_buildsystem () {
188 import re
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500189 import shutil
190 import glob
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500191 import oe.copy_buildsystem
192
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500193 oe_init_env_script = d.getVar('OE_INIT_ENV_SCRIPT')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500194
195 conf_bbpath = ''
196 conf_initpath = ''
197 core_meta_subdir = ''
198
199 # Copy in all metadata layers + bitbake (as repositories)
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500200 buildsystem = oe.copy_buildsystem.BuildSystem('extensible SDK', d)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500201 baseoutpath = d.getVar('SDK_OUTPUT') + '/' + d.getVar('SDKPATH')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500202
Andrew Geissler09209ee2020-12-13 08:44:15 -0600203 #check if custome templateconf path is set
204 use_custom_templateconf = d.getVar('SDK_CUSTOM_TEMPLATECONF')
205
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500206 # Determine if we're building a derivative extensible SDK (from devtool build-sdk)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500207 derivative = (d.getVar('SDK_DERIVATIVE') or '') == '1'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500208 if derivative:
209 workspace_name = 'orig-workspace'
210 else:
211 workspace_name = None
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500212
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800213 corebase, sdkbblayers = buildsystem.copy_bitbake_and_layers(baseoutpath + '/layers', workspace_name)
214 conf_bbpath = os.path.join('layers', corebase, 'bitbake')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500215
216 for path in os.listdir(baseoutpath + '/layers'):
217 relpath = os.path.join('layers', path, oe_init_env_script)
218 if os.path.exists(os.path.join(baseoutpath, relpath)):
219 conf_initpath = relpath
220
221 relpath = os.path.join('layers', path, 'scripts', 'devtool')
222 if os.path.exists(os.path.join(baseoutpath, relpath)):
223 scriptrelpath = os.path.dirname(relpath)
224
225 relpath = os.path.join('layers', path, 'meta')
226 if os.path.exists(os.path.join(baseoutpath, relpath, 'lib', 'oe')):
227 core_meta_subdir = relpath
228
229 d.setVar('oe_init_build_env_path', conf_initpath)
230 d.setVar('scriptrelpath', scriptrelpath)
231
232 # Write out config file for devtool
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600233 import configparser
234 config = configparser.SafeConfigParser()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500235 config.add_section('General')
236 config.set('General', 'bitbake_subdir', conf_bbpath)
237 config.set('General', 'init_path', conf_initpath)
238 config.set('General', 'core_meta_subdir', core_meta_subdir)
239 config.add_section('SDK')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500240 config.set('SDK', 'sdk_targets', d.getVar('SDK_TARGETS'))
241 updateurl = d.getVar('SDK_UPDATE_URL')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500242 if updateurl:
243 config.set('SDK', 'updateserver', updateurl)
244 bb.utils.mkdirhier(os.path.join(baseoutpath, 'conf'))
245 with open(os.path.join(baseoutpath, 'conf', 'devtool.conf'), 'w') as f:
246 config.write(f)
247
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500248 unlockedsigs = os.path.join(baseoutpath, 'conf', 'unlocked-sigs.inc')
249 with open(unlockedsigs, 'w') as f:
250 pass
251
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500252 # Create a layer for new recipes / appends
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500253 bbpath = d.getVar('BBPATH')
Andrew Geissler95ac1b82021-03-31 14:34:31 -0500254 env = os.environ.copy()
255 env['PYTHONDONTWRITEBYTECODE'] = '1'
256 bb.process.run(['devtool', '--bbpath', bbpath, '--basepath', baseoutpath, 'create-workspace', '--create-only', os.path.join(baseoutpath, 'workspace')], env=env)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500257
258 # Create bblayers.conf
259 bb.utils.mkdirhier(baseoutpath + '/conf')
260 with open(baseoutpath + '/conf/bblayers.conf', 'w') as f:
261 f.write('# WARNING: this configuration has been automatically generated and in\n')
262 f.write('# most cases should not be edited. If you need more flexibility than\n')
263 f.write('# this configuration provides, it is strongly suggested that you set\n')
264 f.write('# up a proper instance of the full build system and use that instead.\n\n')
265
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500266 # LCONF_VERSION may not be set, for example when using meta-poky
267 # so don't error if it isn't found
268 lconf_version = d.getVar('LCONF_VERSION', False)
269 if lconf_version is not None:
270 f.write('LCONF_VERSION = "%s"\n\n' % lconf_version)
271
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500272 f.write('BBPATH = "$' + '{TOPDIR}"\n')
273 f.write('SDKBASEMETAPATH = "$' + '{TOPDIR}"\n')
274 f.write('BBLAYERS := " \\\n')
275 for layerrelpath in sdkbblayers:
276 f.write(' $' + '{SDKBASEMETAPATH}/layers/%s \\\n' % layerrelpath)
277 f.write(' $' + '{SDKBASEMETAPATH}/workspace \\\n')
278 f.write(' "\n')
279
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600280 # Copy uninative tarball
281 # For now this is where uninative.bbclass expects the tarball
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500282 if bb.data.inherits_class('uninative', d):
283 uninative_file = d.expand('${UNINATIVE_DLDIR}/' + d.getVarFlag("UNINATIVE_CHECKSUM", d.getVar("BUILD_ARCH")) + '/${UNINATIVE_TARBALL}')
284 uninative_checksum = bb.utils.sha256_file(uninative_file)
285 uninative_outdir = '%s/downloads/uninative/%s' % (baseoutpath, uninative_checksum)
286 bb.utils.mkdirhier(uninative_outdir)
287 shutil.copy(uninative_file, uninative_outdir)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600288
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500289 env_whitelist = (d.getVar('BB_ENV_EXTRAWHITE') or '').split()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500290 env_whitelist_values = {}
291
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500292 # Create local.conf
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500293 builddir = d.getVar('TOPDIR')
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300294 if derivative and os.path.exists(builddir + '/conf/site.conf'):
295 shutil.copyfile(builddir + '/conf/site.conf', baseoutpath + '/conf/site.conf')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500296 if derivative and os.path.exists(builddir + '/conf/auto.conf'):
297 shutil.copyfile(builddir + '/conf/auto.conf', baseoutpath + '/conf/auto.conf')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500298 if derivative:
299 shutil.copyfile(builddir + '/conf/local.conf', baseoutpath + '/conf/local.conf')
300 else:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500301 local_conf_whitelist = (d.getVar('SDK_LOCAL_CONF_WHITELIST') or '').split()
302 local_conf_blacklist = (d.getVar('SDK_LOCAL_CONF_BLACKLIST') or '').split()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500303 def handle_var(varname, origvalue, op, newlines):
304 if varname in local_conf_blacklist or (origvalue.strip().startswith('/') and not varname in local_conf_whitelist):
305 newlines.append('# Removed original setting of %s\n' % varname)
306 return None, op, 0, True
307 else:
308 if varname in env_whitelist:
309 env_whitelist_values[varname] = origvalue
310 return origvalue, op, 0, True
311 varlist = ['[^#=+ ]*']
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500312 oldlines = []
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300313 if os.path.exists(builddir + '/conf/site.conf'):
314 with open(builddir + '/conf/site.conf', 'r') as f:
315 oldlines += f.readlines()
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500316 if os.path.exists(builddir + '/conf/auto.conf'):
317 with open(builddir + '/conf/auto.conf', 'r') as f:
318 oldlines += f.readlines()
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500319 if os.path.exists(builddir + '/conf/local.conf'):
320 with open(builddir + '/conf/local.conf', 'r') as f:
321 oldlines += f.readlines()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500322 (updated, newlines) = bb.utils.edit_metadata(oldlines, varlist, handle_var)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500323
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500324 with open(baseoutpath + '/conf/local.conf', 'w') as f:
325 f.write('# WARNING: this configuration has been automatically generated and in\n')
326 f.write('# most cases should not be edited. If you need more flexibility than\n')
327 f.write('# this configuration provides, it is strongly suggested that you set\n')
328 f.write('# up a proper instance of the full build system and use that instead.\n\n')
329 for line in newlines:
330 if line.strip() and not line.startswith('#'):
331 f.write(line)
332 # Write a newline just in case there's none at the end of the original
333 f.write('\n')
334
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500335 f.write('TMPDIR = "${TOPDIR}/tmp"\n')
336 f.write('TCLIBCAPPEND = ""\n')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600337 f.write('DL_DIR = "${TOPDIR}/downloads"\n')
338
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800339 if bb.data.inherits_class('uninative', d):
340 f.write('INHERIT += "%s"\n' % 'uninative')
341 f.write('UNINATIVE_CHECKSUM[%s] = "%s"\n\n' % (d.getVar('BUILD_ARCH'), uninative_checksum))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500342 f.write('CONF_VERSION = "%s"\n\n' % d.getVar('CONF_VERSION', False))
343
344 # Some classes are not suitable for SDK, remove them from INHERIT
345 f.write('INHERIT_remove = "%s"\n' % d.getVar('SDK_INHERIT_BLACKLIST', False))
346
347 # Bypass the default connectivity check if any
348 f.write('CONNECTIVITY_CHECK_URIS = ""\n\n')
349
350 # This warning will come out if reverse dependencies for a task
351 # don't have sstate as well as the task itself. We already know
352 # this will be the case for the extensible sdk, so turn off the
353 # warning.
354 f.write('SIGGEN_LOCKEDSIGS_SSTATE_EXISTS_CHECK = "none"\n\n')
355
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600356 # Warn if the sigs in the locked-signature file don't match
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500357 # the sig computed from the metadata.
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600358 f.write('SIGGEN_LOCKEDSIGS_TASKSIG_CHECK = "warn"\n\n')
359
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500360 # We want to be able to set this without a full reparse
361 f.write('BB_HASHCONFIG_WHITELIST_append = " SIGGEN_UNLOCKED_RECIPES"\n\n')
362
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600363 # Set up whitelist for run on install
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500364 f.write('BB_SETSCENE_ENFORCE_WHITELIST = "%:* *:do_shared_workdir *:do_rm_work wic-tools:* *:do_addto_recipe_sysroot"\n\n')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500365
366 # Hide the config information from bitbake output (since it's fixed within the SDK)
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500367 f.write('BUILDCFG_HEADER = ""\n\n')
368
Andrew Geissler95ac1b82021-03-31 14:34:31 -0500369 # Write METADATA_REVISION
370 f.write('METADATA_REVISION = "%s"\n\n' % d.getVar('METADATA_REVISION'))
371
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500372 f.write('# Provide a flag to indicate we are in the EXT_SDK Context\n')
373 f.write('WITHIN_EXT_SDK = "1"\n\n')
374
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500375 # Map gcc-dependent uninative sstate cache for installer usage
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500376 f.write('SSTATE_MIRRORS += " file://universal/(.*) file://universal-4.9/\\1 file://universal-4.9/(.*) file://universal-4.8/\\1"\n\n')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500377
Andrew Geissler95ac1b82021-03-31 14:34:31 -0500378 if d.getVar("PRSERV_HOST"):
379 # Override this, we now include PR data, so it should only point ot the local database
380 f.write('PRSERV_HOST = "localhost:0"\n\n')
381
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500382 # Allow additional config through sdk-extra.conf
383 fn = bb.cookerdata.findConfigFile('sdk-extra.conf', d)
384 if fn:
385 with open(fn, 'r') as xf:
386 for line in xf:
387 f.write(line)
388
389 # If you define a sdk_extraconf() function then it can contain additional config
390 # (Though this is awkward; sdk-extra.conf should probably be used instead)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500391 extraconf = (d.getVar('sdk_extraconf') or '').strip()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500392 if extraconf:
393 # Strip off any leading / trailing spaces
394 for line in extraconf.splitlines():
395 f.write(line.strip() + '\n')
396
397 f.write('require conf/locked-sigs.inc\n')
398 f.write('require conf/unlocked-sigs.inc\n')
399
Brad Bishop00e122a2019-10-05 11:10:57 -0400400 if os.path.exists(builddir + '/cache/bb_unihashes.dat'):
401 bb.parse.siggen.save_unitaskhashes()
402 bb.utils.mkdirhier(os.path.join(baseoutpath, 'cache'))
403 shutil.copyfile(builddir + '/cache/bb_unihashes.dat', baseoutpath + '/cache/bb_unihashes.dat')
404
Andrew Geissler95ac1b82021-03-31 14:34:31 -0500405 # If PR Service is in use, we need to export this as well
406 bb.note('Do we have a pr database?')
407 if d.getVar("PRSERV_HOST"):
408 bb.note('Writing PR database...')
409 # Based on the code in classes/prexport.bbclass
410 import oe.prservice
411 #dump meta info of tables
412 localdata = d.createCopy()
413 localdata.setVar('PRSERV_DUMPOPT_COL', "1")
414 localdata.setVar('PRSERV_DUMPDIR', os.path.join(baseoutpath, 'conf'))
415 localdata.setVar('PRSERV_DUMPFILE', '${PRSERV_DUMPDIR}/prserv.inc')
416
417 bb.note('PR Database write to %s' % (localdata.getVar('PRSERV_DUMPFILE')))
418
419 retval = oe.prservice.prserv_dump_db(localdata)
420 if not retval:
421 bb.error("prexport_handler: export failed!")
422 return
423 (metainfo, datainfo) = retval
424 oe.prservice.prserv_export_tofile(localdata, metainfo, datainfo, True)
425
Andrew Geissler82c905d2020-04-13 13:39:40 -0500426 # Use templateconf.cfg file from builddir if exists
Andrew Geissler09209ee2020-12-13 08:44:15 -0600427 if os.path.exists(builddir + '/conf/templateconf.cfg') and use_custom_templateconf == '1':
Andrew Geissler82c905d2020-04-13 13:39:40 -0500428 shutil.copyfile(builddir + '/conf/templateconf.cfg', baseoutpath + '/conf/templateconf.cfg')
429 else:
430 # Write a templateconf.cfg
431 with open(baseoutpath + '/conf/templateconf.cfg', 'w') as f:
432 f.write('meta/conf\n')
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500433
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500434 # Ensure any variables set from the external environment (by way of
435 # BB_ENV_EXTRAWHITE) are set in the SDK's configuration
436 extralines = []
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600437 for name, value in env_whitelist_values.items():
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500438 actualvalue = d.getVar(name) or ''
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500439 if value != actualvalue:
440 extralines.append('%s = "%s"\n' % (name, actualvalue))
441 if extralines:
442 with open(baseoutpath + '/conf/local.conf', 'a') as f:
443 f.write('\n')
444 f.write('# Extra settings from environment:\n')
445 for line in extralines:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500446 f.write(line)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500447 f.write('\n')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500448
449 # Filter the locked signatures file to just the sstate tasks we are interested in
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600450 excluded_targets = get_sdk_install_targets(d, images_only=True)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500451 sigfile = d.getVar('WORKDIR') + '/locked-sigs.inc'
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500452 lockedsigs_pruned = baseoutpath + '/conf/locked-sigs.inc'
Brad Bishopa34c0302019-09-23 22:34:48 -0400453 #nativesdk-only sigfile to merge into locked-sigs.inc
454 sdk_include_nativesdk = (d.getVar("SDK_INCLUDE_NATIVESDK") == '1')
455 nativesigfile = d.getVar('WORKDIR') + '/locked-sigs_nativesdk.inc'
456 nativesigfile_pruned = d.getVar('WORKDIR') + '/locked-sigs_nativesdk_pruned.inc'
457
458 if sdk_include_nativesdk:
459 oe.copy_buildsystem.prune_lockedsigs([],
460 excluded_targets.split(),
461 nativesigfile,
462 True,
463 nativesigfile_pruned)
464
465 oe.copy_buildsystem.merge_lockedsigs([],
466 sigfile,
467 nativesigfile_pruned,
468 sigfile)
469
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500470 oe.copy_buildsystem.prune_lockedsigs([],
471 excluded_targets.split(),
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500472 sigfile,
Brad Bishopa34c0302019-09-23 22:34:48 -0400473 False,
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500474 lockedsigs_pruned)
475
476 sstate_out = baseoutpath + '/sstate-cache'
477 bb.utils.remove(sstate_out, True)
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500478
479 # uninative.bbclass sets NATIVELSBSTRING to 'universal%s' % oe.utils.host_gcc_version(d)
480 fixedlsbstring = "universal%s" % oe.utils.host_gcc_version(d)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500481
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500482 sdk_include_toolchain = (d.getVar('SDK_INCLUDE_TOOLCHAIN') == '1')
483 sdk_ext_type = d.getVar('SDK_EXT_TYPE')
Brad Bishopa34c0302019-09-23 22:34:48 -0400484 if (sdk_ext_type != 'minimal' or sdk_include_toolchain or derivative) and not sdk_include_nativesdk:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600485 # Create the filtered task list used to generate the sstate cache shipped with the SDK
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500486 tasklistfn = d.getVar('WORKDIR') + '/tasklist.txt'
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600487 create_filtered_tasklist(d, baseoutpath, tasklistfn, conf_initpath)
488 else:
489 tasklistfn = None
490
Brad Bishop00e122a2019-10-05 11:10:57 -0400491 if os.path.exists(builddir + '/cache/bb_unihashes.dat'):
492 bb.parse.siggen.save_unitaskhashes()
493 bb.utils.mkdirhier(os.path.join(baseoutpath, 'cache'))
494 shutil.copyfile(builddir + '/cache/bb_unihashes.dat', baseoutpath + '/cache/bb_unihashes.dat')
495
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500496 # Add packagedata if enabled
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500497 if d.getVar('SDK_INCLUDE_PKGDATA') == '1':
498 lockedsigs_base = d.getVar('WORKDIR') + '/locked-sigs-base.inc'
499 lockedsigs_copy = d.getVar('WORKDIR') + '/locked-sigs-copy.inc'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500500 shutil.move(lockedsigs_pruned, lockedsigs_base)
501 oe.copy_buildsystem.merge_lockedsigs(['do_packagedata'],
502 lockedsigs_base,
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500503 d.getVar('STAGING_DIR_HOST') + '/world-pkgdata/locked-sigs-pkgdata.inc',
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500504 lockedsigs_pruned,
505 lockedsigs_copy)
506
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600507 if sdk_include_toolchain:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500508 lockedsigs_base = d.getVar('WORKDIR') + '/locked-sigs-base2.inc'
509 lockedsigs_toolchain = d.expand("${STAGING_DIR}/${TUNE_PKGARCH}/meta-extsdk-toolchain/locked-sigs/locked-sigs-extsdk-toolchain.inc")
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600510 shutil.move(lockedsigs_pruned, lockedsigs_base)
511 oe.copy_buildsystem.merge_lockedsigs([],
512 lockedsigs_base,
513 lockedsigs_toolchain,
514 lockedsigs_pruned)
515 oe.copy_buildsystem.create_locked_sstate_cache(lockedsigs_toolchain,
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500516 d.getVar('SSTATE_DIR'),
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600517 sstate_out, d,
518 fixedlsbstring,
519 filterfile=tasklistfn)
520
521 if sdk_ext_type == 'minimal':
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500522 if derivative:
523 # Assume the user is not going to set up an additional sstate
524 # mirror, thus we need to copy the additional artifacts (from
525 # workspace recipes) into the derivative SDK
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500526 lockedsigs_orig = d.getVar('TOPDIR') + '/conf/locked-sigs.inc'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500527 if os.path.exists(lockedsigs_orig):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500528 lockedsigs_extra = d.getVar('WORKDIR') + '/locked-sigs-extra.inc'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500529 oe.copy_buildsystem.merge_lockedsigs(None,
530 lockedsigs_orig,
531 lockedsigs_pruned,
532 None,
533 lockedsigs_extra)
534 oe.copy_buildsystem.create_locked_sstate_cache(lockedsigs_extra,
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500535 d.getVar('SSTATE_DIR'),
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500536 sstate_out, d,
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600537 fixedlsbstring,
538 filterfile=tasklistfn)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500539 else:
540 oe.copy_buildsystem.create_locked_sstate_cache(lockedsigs_pruned,
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500541 d.getVar('SSTATE_DIR'),
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500542 sstate_out, d,
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600543 fixedlsbstring,
544 filterfile=tasklistfn)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500545
546 # We don't need sstate do_package files
547 for root, dirs, files in os.walk(sstate_out):
548 for name in files:
549 if name.endswith("_package.tgz"):
550 f = os.path.join(root, name)
551 os.remove(f)
552
553 # Write manifest file
554 # Note: at the moment we cannot include the env setup script here to keep
555 # it updated, since it gets modified during SDK installation (see
556 # sdk_ext_postinst() below) thus the checksum we take here would always
557 # be different.
558 manifest_file_list = ['conf/*']
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500559 esdk_manifest_excludes = (d.getVar('ESDK_MANIFEST_EXCLUDES') or '').split()
560 esdk_manifest_excludes_list = []
561 for exclude_item in esdk_manifest_excludes:
562 esdk_manifest_excludes_list += glob.glob(os.path.join(baseoutpath, exclude_item))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500563 manifest_file = os.path.join(baseoutpath, 'conf', 'sdk-conf-manifest')
564 with open(manifest_file, 'w') as f:
565 for item in manifest_file_list:
566 for fn in glob.glob(os.path.join(baseoutpath, item)):
567 if fn == manifest_file:
568 continue
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500569 if fn in esdk_manifest_excludes_list:
570 continue
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500571 chksum = bb.utils.sha256_file(fn)
572 f.write('%s\t%s\n' % (chksum, os.path.relpath(fn, baseoutpath)))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500573}
574
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600575def get_current_buildtools(d):
576 """Get the file name of the current buildtools installer"""
577 import glob
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500578 btfiles = glob.glob(os.path.join(d.getVar('SDK_DEPLOY'), '*-buildtools-nativesdk-standalone-*.sh'))
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600579 btfiles.sort(key=os.path.getctime)
580 return os.path.basename(btfiles[-1])
581
582def get_sdk_required_utilities(buildtools_fn, d):
583 """Find required utilities that aren't provided by the buildtools"""
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500584 sanity_required_utilities = (d.getVar('SANITY_REQUIRED_UTILITIES') or '').split()
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600585 sanity_required_utilities.append(d.expand('${BUILD_PREFIX}gcc'))
586 sanity_required_utilities.append(d.expand('${BUILD_PREFIX}g++'))
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500587 if buildtools_fn:
588 buildtools_installer = os.path.join(d.getVar('SDK_DEPLOY'), buildtools_fn)
589 filelist, _ = bb.process.run('%s -l' % buildtools_installer)
590 else:
591 buildtools_installer = None
592 filelist = ""
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600593 localdata = bb.data.createCopy(d)
594 localdata.setVar('SDKPATH', '.')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500595 sdkpathnative = localdata.getVar('SDKPATHNATIVE')
596 sdkbindirs = [localdata.getVar('bindir_nativesdk'),
597 localdata.getVar('sbindir_nativesdk'),
598 localdata.getVar('base_bindir_nativesdk'),
599 localdata.getVar('base_sbindir_nativesdk')]
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600600 for line in filelist.splitlines():
601 splitline = line.split()
602 if len(splitline) > 5:
603 fn = splitline[5]
604 if not fn.startswith('./'):
605 fn = './%s' % fn
606 if fn.startswith(sdkpathnative):
607 relpth = '/' + os.path.relpath(fn, sdkpathnative)
608 for bindir in sdkbindirs:
609 if relpth.startswith(bindir):
610 relpth = os.path.relpath(relpth, bindir)
611 if relpth in sanity_required_utilities:
612 sanity_required_utilities.remove(relpth)
613 break
614 return ' '.join(sanity_required_utilities)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500615
616install_tools() {
617 install -d ${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}
Brad Bishop316dfdd2018-06-25 12:45:53 -0400618 scripts="devtool recipetool oe-find-native-sysroot runqemu* wic"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600619 for script in $scripts; do
620 for scriptfn in `find ${SDK_OUTPUT}/${SDKPATH}/${scriptrelpath} -maxdepth 1 -executable -name "$script"`; do
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800621 targetscriptfn="${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}/$(basename $scriptfn)"
622 test -e ${targetscriptfn} || lnr ${scriptfn} ${targetscriptfn}
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600623 done
624 done
625 # We can't use the same method as above because files in the sysroot won't exist at this point
626 # (they get populated from sstate on installation)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500627 unfsd_path="${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}/unfsd"
628 if [ "${SDK_INCLUDE_TOOLCHAIN}" = "1" -a ! -e $unfsd_path ] ; then
629 binrelpath=${@os.path.relpath(d.getVar('STAGING_BINDIR_NATIVE'), d.getVar('TMPDIR'))}
630 lnr ${SDK_OUTPUT}/${SDKPATH}/tmp/$binrelpath/unfsd $unfsd_path
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600631 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500632 touch ${SDK_OUTPUT}/${SDKPATH}/.devtoolbase
633
634 # find latest buildtools-tarball and install it
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500635 if [ -n "${SDK_BUILDTOOLS_INSTALLER}" ]; then
636 install ${SDK_DEPLOY}/${SDK_BUILDTOOLS_INSTALLER} ${SDK_OUTPUT}/${SDKPATH}
637 fi
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500638
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500639 install -m 0644 ${COREBASE}/meta/files/ext-sdk-prepare.py ${SDK_OUTPUT}/${SDKPATH}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500640}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500641do_populate_sdk_ext[file-checksums] += "${COREBASE}/meta/files/ext-sdk-prepare.py:True"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500642
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500643sdk_ext_preinst() {
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600644 # Since bitbake won't run as root it doesn't make sense to try and install
645 # the extensible sdk as root.
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500646 if [ "`id -u`" = "0" ]; then
647 echo "ERROR: The extensible sdk cannot be installed as root."
648 exit 1
649 fi
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600650 if ! command -v locale > /dev/null; then
651 echo "ERROR: The installer requires the locale command, please install it first"
652 exit 1
653 fi
654 # Check setting of LC_ALL set above
655 canonicalised_locale=`echo $LC_ALL | sed 's/UTF-8/utf8/'`
656 if ! locale -a | grep -q $canonicalised_locale ; then
657 echo "ERROR: the installer requires the $LC_ALL locale to be installed (but not selected), please install it first"
658 exit 1
659 fi
660 # The relocation script used by buildtools installer requires python
Andrew Geissler82c905d2020-04-13 13:39:40 -0500661 if ! command -v python3 > /dev/null; then
662 echo "ERROR: The installer requires python3, please install it first"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600663 exit 1
664 fi
665 missing_utils=""
666 for util in ${SDK_REQUIRED_UTILITIES}; do
667 if ! command -v $util > /dev/null; then
668 missing_utils="$missing_utils $util"
669 fi
670 done
671 if [ -n "$missing_utils" ] ; then
672 echo "ERROR: the SDK requires the following missing utilities, please install them: $missing_utils"
673 exit 1
674 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500675 SDK_EXTENSIBLE="1"
Brad Bishop19323692019-04-05 15:28:33 -0400676 if [ "$publish" = "1" ] && [ "${SDK_EXT_TYPE}" = "minimal" ] ; then
677 EXTRA_TAR_OPTIONS="$EXTRA_TAR_OPTIONS --exclude=sstate-cache"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500678 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500679}
680SDK_PRE_INSTALL_COMMAND_task-populate-sdk-ext = "${sdk_ext_preinst}"
681
682# FIXME this preparation should be done as part of the SDK construction
683sdk_ext_postinst() {
684 printf "\nExtracting buildtools...\n"
685 cd $target_sdk_dir
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600686 env_setup_script="$target_sdk_dir/environment-setup-${REAL_MULTIMACH_TARGET_SYS}"
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500687 if [ -n "${SDK_BUILDTOOLS_INSTALLER}" ]; then
688 printf "buildtools\ny" | ./${SDK_BUILDTOOLS_INSTALLER} > buildtools.log || { printf 'ERROR: buildtools installation failed:\n' ; cat buildtools.log ; echo "printf 'ERROR: this SDK was not fully installed and needs reinstalling\n'" >> $env_setup_script ; exit 1 ; }
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500689
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500690 # Delete the buildtools tar file since it won't be used again
691 rm -f ./${SDK_BUILDTOOLS_INSTALLER}
692 # We don't need the log either since it succeeded
693 rm -f buildtools.log
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500694
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500695 # Make sure when the user sets up the environment, they also get
696 # the buildtools-tarball tools in their path.
Andrew Geissler635e0e42020-08-21 15:58:33 -0500697 echo "# Save and reset OECORE_NATIVE_SYSROOT as buildtools may change it" >> $env_setup_script
698 echo "SAVED=\"\$OECORE_NATIVE_SYSROOT\"" >> $env_setup_script
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500699 echo ". $target_sdk_dir/buildtools/environment-setup*" >> $env_setup_script
Andrew Geissler635e0e42020-08-21 15:58:33 -0500700 echo "OECORE_NATIVE_SYSROOT=\"\$SAVED\"" >> $env_setup_script
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500701 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500702
703 # Allow bitbake environment setup to be ran as part of this sdk.
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500704 echo "export OE_SKIP_SDK_CHECK=1" >> $env_setup_script
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500705 # Work around runqemu not knowing how to get this information within the eSDK
706 echo "export DEPLOY_DIR_IMAGE=$target_sdk_dir/tmp/${@os.path.relpath(d.getVar('DEPLOY_DIR_IMAGE'), d.getVar('TMPDIR'))}" >> $env_setup_script
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500707
708 # A bit of another hack, but we need this in the path only for devtool
709 # so put it at the end of $PATH.
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500710 echo "export PATH=$target_sdk_dir/sysroots/${SDK_SYS}${bindir_nativesdk}:\$PATH" >> $env_setup_script
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500711
712 echo "printf 'SDK environment now set up; additionally you may now run devtool to perform development tasks.\nRun devtool --help for further details.\n'" >> $env_setup_script
713
714 # Warn if trying to use external bitbake and the ext SDK together
715 echo "(which bitbake > /dev/null 2>&1 && echo 'WARNING: attempting to use the extensible SDK in an environment set up to run bitbake - this may lead to unexpected results. Please source this script in a new shell session instead.') || true" >> $env_setup_script
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500716
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500717 if [ "$prepare_buildsystem" != "no" -a -n "${SDK_BUILDTOOLS_INSTALLER}" ]; then
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500718 printf "Preparing build system...\n"
719 # dash which is /bin/sh on Ubuntu will not preserve the
720 # current working directory when first ran, nor will it set $1 when
721 # sourcing a script. That is why this has to look so ugly.
722 LOGFILE="$target_sdk_dir/preparing_build_system.log"
Andrew Geissler475cb722020-07-10 16:00:51 -0500723 sh -c ". buildtools/environment-setup* > $LOGFILE && cd $target_sdk_dir/`dirname ${oe_init_build_env_path}` && set $target_sdk_dir && . $target_sdk_dir/${oe_init_build_env_path} $target_sdk_dir >> $LOGFILE && python3 $target_sdk_dir/ext-sdk-prepare.py $LOGFILE '${SDK_INSTALL_TARGETS}'" || { echo "printf 'ERROR: this SDK was not fully installed and needs reinstalling\n'" >> $env_setup_script ; exit 1 ; }
Brad Bishop19323692019-04-05 15:28:33 -0400724 fi
725 if [ -e $target_sdk_dir/ext-sdk-prepare.py ]; then
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500726 rm $target_sdk_dir/ext-sdk-prepare.py
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500727 fi
728 echo done
729}
730
731SDK_POST_INSTALL_COMMAND_task-populate-sdk-ext = "${sdk_ext_postinst}"
732
733SDK_POSTPROCESS_COMMAND_prepend_task-populate-sdk-ext = "copy_buildsystem; install_tools; "
734
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500735SDK_INSTALL_TARGETS = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500736fakeroot python do_populate_sdk_ext() {
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500737 # FIXME hopefully we can remove this restriction at some point, but uninative
738 # currently forces this upon us
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500739 if d.getVar('SDK_ARCH') != d.getVar('BUILD_ARCH'):
740 bb.fatal('The extensible SDK can currently only be built for the same architecture as the machine being built on - SDK_ARCH is set to %s (likely via setting SDKMACHINE) which is different from the architecture of the build machine (%s). Unable to continue.' % (d.getVar('SDK_ARCH'), d.getVar('BUILD_ARCH')))
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500741
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500742 d.setVar('SDK_INSTALL_TARGETS', get_sdk_install_targets(d))
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500743 if d.getVar('SDK_INCLUDE_BUILDTOOLS') == '1':
744 buildtools_fn = get_current_buildtools(d)
745 else:
746 buildtools_fn = None
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600747 d.setVar('SDK_REQUIRED_UTILITIES', get_sdk_required_utilities(buildtools_fn, d))
748 d.setVar('SDK_BUILDTOOLS_INSTALLER', buildtools_fn)
749 d.setVar('SDKDEPLOYDIR', '${SDKEXTDEPLOYDIR}')
Brad Bishop00111322018-04-01 22:23:53 -0400750 # ESDKs have a libc from the buildtools so ensure we don't ship linguas twice
751 d.delVar('SDKIMAGE_LINGUAS')
Brad Bishopa34c0302019-09-23 22:34:48 -0400752 if d.getVar("SDK_INCLUDE_NATIVESDK") == '1':
753 generate_nativesdk_lockedsigs(d)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600754 populate_sdk_common(d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500755}
756
Brad Bishopa34c0302019-09-23 22:34:48 -0400757def generate_nativesdk_lockedsigs(d):
758 import oe.copy_buildsystem
759 sigfile = d.getVar('WORKDIR') + '/locked-sigs_nativesdk.inc'
760 oe.copy_buildsystem.generate_locked_sigs(sigfile, d)
761
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500762def get_ext_sdk_depends(d):
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600763 # Note: the deps varflag is a list not a string, so we need to specify expand=False
764 deps = d.getVarFlag('do_image_complete', 'deps', False)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500765 pn = d.getVar('PN')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600766 deplist = ['%s:%s' % (pn, dep) for dep in deps]
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500767 tasklist = bb.build.tasksbetween('do_image_complete', 'do_build', d)
768 tasklist.append('do_rootfs')
769 for task in tasklist:
770 deplist.extend((d.getVarFlag(task, 'depends') or '').split())
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600771 return ' '.join(deplist)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500772
773python do_sdk_depends() {
774 # We have to do this separately in its own task so we avoid recursing into
775 # dependencies we don't need to (e.g. buildtools-tarball) and bringing those
776 # into the SDK's sstate-cache
777 import oe.copy_buildsystem
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500778 sigfile = d.getVar('WORKDIR') + '/locked-sigs.inc'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500779 oe.copy_buildsystem.generate_locked_sigs(sigfile, d)
780}
781addtask sdk_depends
782
783do_sdk_depends[dirs] = "${WORKDIR}"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500784do_sdk_depends[depends] = "${@get_ext_sdk_depends(d)} meta-extsdk-toolchain:do_populate_sysroot"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500785do_sdk_depends[recrdeptask] = "${@d.getVarFlag('do_populate_sdk', 'recrdeptask', False)}"
786do_sdk_depends[recrdeptask] += "do_populate_lic do_package_qa do_populate_sysroot do_deploy ${SDK_RECRDEP_TASKS}"
787do_sdk_depends[rdepends] = "${@get_sdk_ext_rdepends(d)}"
788
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500789def get_sdk_ext_rdepends(d):
790 localdata = d.createCopy()
791 localdata.appendVar('OVERRIDES', ':task-populate-sdk-ext')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500792 return localdata.getVarFlag('do_populate_sdk', 'rdepends')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500793
794do_populate_sdk_ext[dirs] = "${@d.getVarFlag('do_populate_sdk', 'dirs', False)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500795
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500796do_populate_sdk_ext[depends] = "${@d.getVarFlag('do_populate_sdk', 'depends', False)} \
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500797 ${@'buildtools-tarball:do_populate_sdk' if d.getVar('SDK_INCLUDE_BUILDTOOLS') == '1' else ''} \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500798 ${@'meta-world-pkgdata:do_collect_packagedata' if d.getVar('SDK_INCLUDE_PKGDATA') == '1' else ''} \
799 ${@'meta-extsdk-toolchain:do_locked_sigs' if d.getVar('SDK_INCLUDE_TOOLCHAIN') == '1' else ''}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500800
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500801# We must avoid depending on do_build here if rm_work.bbclass is active,
802# because otherwise do_rm_work may run before do_populate_sdk_ext itself.
803# We can't mark do_populate_sdk_ext and do_sdk_depends as having to
804# run before do_rm_work, because then they would also run as part
805# of normal builds.
806do_populate_sdk_ext[rdepends] += "${@' '.join([x + ':' + (d.getVar('RM_WORK_BUILD_WITHOUT') or 'do_build') for x in d.getVar('SDK_TARGETS').split()])}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500807
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500808# Make sure code changes can result in rebuild
809do_populate_sdk_ext[vardeps] += "copy_buildsystem \
810 sdk_ext_postinst"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500811
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500812# Since any change in the metadata of any layer should cause a rebuild of the
813# sdk(since the layers are put in the sdk) set the task to nostamp so it
814# always runs.
815do_populate_sdk_ext[nostamp] = "1"
816
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600817SDKEXTDEPLOYDIR = "${WORKDIR}/deploy-${PN}-populate-sdk-ext"
818
819SSTATETASKS += "do_populate_sdk_ext"
820SSTATE_SKIP_CREATION_task-populate-sdk-ext = '1'
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500821do_populate_sdk_ext[cleandirs] = "${SDKEXTDEPLOYDIR}"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600822do_populate_sdk_ext[sstate-inputdirs] = "${SDKEXTDEPLOYDIR}"
823do_populate_sdk_ext[sstate-outputdirs] = "${SDK_DEPLOY}"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400824do_populate_sdk_ext[stamp-extra-info] = "${MACHINE_ARCH}"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600825
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500826addtask populate_sdk_ext after do_sdk_depends