blob: e6bf27cf3869859adae1f5bf0f08a2441ca9875a [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
168 os.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)
178 os.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')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500254 bb.process.run(['devtool', '--bbpath', bbpath, '--basepath', baseoutpath, 'create-workspace', '--create-only', os.path.join(baseoutpath, 'workspace')])
255
256 # Create bblayers.conf
257 bb.utils.mkdirhier(baseoutpath + '/conf')
258 with open(baseoutpath + '/conf/bblayers.conf', 'w') as f:
259 f.write('# WARNING: this configuration has been automatically generated and in\n')
260 f.write('# most cases should not be edited. If you need more flexibility than\n')
261 f.write('# this configuration provides, it is strongly suggested that you set\n')
262 f.write('# up a proper instance of the full build system and use that instead.\n\n')
263
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500264 # LCONF_VERSION may not be set, for example when using meta-poky
265 # so don't error if it isn't found
266 lconf_version = d.getVar('LCONF_VERSION', False)
267 if lconf_version is not None:
268 f.write('LCONF_VERSION = "%s"\n\n' % lconf_version)
269
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500270 f.write('BBPATH = "$' + '{TOPDIR}"\n')
271 f.write('SDKBASEMETAPATH = "$' + '{TOPDIR}"\n')
272 f.write('BBLAYERS := " \\\n')
273 for layerrelpath in sdkbblayers:
274 f.write(' $' + '{SDKBASEMETAPATH}/layers/%s \\\n' % layerrelpath)
275 f.write(' $' + '{SDKBASEMETAPATH}/workspace \\\n')
276 f.write(' "\n')
277
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600278 # Copy uninative tarball
279 # For now this is where uninative.bbclass expects the tarball
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500280 if bb.data.inherits_class('uninative', d):
281 uninative_file = d.expand('${UNINATIVE_DLDIR}/' + d.getVarFlag("UNINATIVE_CHECKSUM", d.getVar("BUILD_ARCH")) + '/${UNINATIVE_TARBALL}')
282 uninative_checksum = bb.utils.sha256_file(uninative_file)
283 uninative_outdir = '%s/downloads/uninative/%s' % (baseoutpath, uninative_checksum)
284 bb.utils.mkdirhier(uninative_outdir)
285 shutil.copy(uninative_file, uninative_outdir)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600286
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500287 env_whitelist = (d.getVar('BB_ENV_EXTRAWHITE') or '').split()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500288 env_whitelist_values = {}
289
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500290 # Create local.conf
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500291 builddir = d.getVar('TOPDIR')
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300292 if derivative and os.path.exists(builddir + '/conf/site.conf'):
293 shutil.copyfile(builddir + '/conf/site.conf', baseoutpath + '/conf/site.conf')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500294 if derivative and os.path.exists(builddir + '/conf/auto.conf'):
295 shutil.copyfile(builddir + '/conf/auto.conf', baseoutpath + '/conf/auto.conf')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500296 if derivative:
297 shutil.copyfile(builddir + '/conf/local.conf', baseoutpath + '/conf/local.conf')
298 else:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500299 local_conf_whitelist = (d.getVar('SDK_LOCAL_CONF_WHITELIST') or '').split()
300 local_conf_blacklist = (d.getVar('SDK_LOCAL_CONF_BLACKLIST') or '').split()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500301 def handle_var(varname, origvalue, op, newlines):
302 if varname in local_conf_blacklist or (origvalue.strip().startswith('/') and not varname in local_conf_whitelist):
303 newlines.append('# Removed original setting of %s\n' % varname)
304 return None, op, 0, True
305 else:
306 if varname in env_whitelist:
307 env_whitelist_values[varname] = origvalue
308 return origvalue, op, 0, True
309 varlist = ['[^#=+ ]*']
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500310 oldlines = []
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300311 if os.path.exists(builddir + '/conf/site.conf'):
312 with open(builddir + '/conf/site.conf', 'r') as f:
313 oldlines += f.readlines()
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500314 if os.path.exists(builddir + '/conf/auto.conf'):
315 with open(builddir + '/conf/auto.conf', 'r') as f:
316 oldlines += f.readlines()
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500317 if os.path.exists(builddir + '/conf/local.conf'):
318 with open(builddir + '/conf/local.conf', 'r') as f:
319 oldlines += f.readlines()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500320 (updated, newlines) = bb.utils.edit_metadata(oldlines, varlist, handle_var)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500321
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500322 with open(baseoutpath + '/conf/local.conf', 'w') as f:
323 f.write('# WARNING: this configuration has been automatically generated and in\n')
324 f.write('# most cases should not be edited. If you need more flexibility than\n')
325 f.write('# this configuration provides, it is strongly suggested that you set\n')
326 f.write('# up a proper instance of the full build system and use that instead.\n\n')
327 for line in newlines:
328 if line.strip() and not line.startswith('#'):
329 f.write(line)
330 # Write a newline just in case there's none at the end of the original
331 f.write('\n')
332
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500333 f.write('TMPDIR = "${TOPDIR}/tmp"\n')
334 f.write('TCLIBCAPPEND = ""\n')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600335 f.write('DL_DIR = "${TOPDIR}/downloads"\n')
336
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800337 if bb.data.inherits_class('uninative', d):
338 f.write('INHERIT += "%s"\n' % 'uninative')
339 f.write('UNINATIVE_CHECKSUM[%s] = "%s"\n\n' % (d.getVar('BUILD_ARCH'), uninative_checksum))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500340 f.write('CONF_VERSION = "%s"\n\n' % d.getVar('CONF_VERSION', False))
341
342 # Some classes are not suitable for SDK, remove them from INHERIT
343 f.write('INHERIT_remove = "%s"\n' % d.getVar('SDK_INHERIT_BLACKLIST', False))
344
345 # Bypass the default connectivity check if any
346 f.write('CONNECTIVITY_CHECK_URIS = ""\n\n')
347
348 # This warning will come out if reverse dependencies for a task
349 # don't have sstate as well as the task itself. We already know
350 # this will be the case for the extensible sdk, so turn off the
351 # warning.
352 f.write('SIGGEN_LOCKEDSIGS_SSTATE_EXISTS_CHECK = "none"\n\n')
353
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600354 # Warn if the sigs in the locked-signature file don't match
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500355 # the sig computed from the metadata.
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600356 f.write('SIGGEN_LOCKEDSIGS_TASKSIG_CHECK = "warn"\n\n')
357
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500358 # We want to be able to set this without a full reparse
359 f.write('BB_HASHCONFIG_WHITELIST_append = " SIGGEN_UNLOCKED_RECIPES"\n\n')
360
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600361 # Set up whitelist for run on install
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500362 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 -0500363
364 # Hide the config information from bitbake output (since it's fixed within the SDK)
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500365 f.write('BUILDCFG_HEADER = ""\n\n')
366
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500367 f.write('# Provide a flag to indicate we are in the EXT_SDK Context\n')
368 f.write('WITHIN_EXT_SDK = "1"\n\n')
369
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500370 # Map gcc-dependent uninative sstate cache for installer usage
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500371 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 -0500372
373 # Allow additional config through sdk-extra.conf
374 fn = bb.cookerdata.findConfigFile('sdk-extra.conf', d)
375 if fn:
376 with open(fn, 'r') as xf:
377 for line in xf:
378 f.write(line)
379
380 # If you define a sdk_extraconf() function then it can contain additional config
381 # (Though this is awkward; sdk-extra.conf should probably be used instead)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500382 extraconf = (d.getVar('sdk_extraconf') or '').strip()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500383 if extraconf:
384 # Strip off any leading / trailing spaces
385 for line in extraconf.splitlines():
386 f.write(line.strip() + '\n')
387
388 f.write('require conf/locked-sigs.inc\n')
389 f.write('require conf/unlocked-sigs.inc\n')
390
Brad Bishop00e122a2019-10-05 11:10:57 -0400391 if os.path.exists(builddir + '/cache/bb_unihashes.dat'):
392 bb.parse.siggen.save_unitaskhashes()
393 bb.utils.mkdirhier(os.path.join(baseoutpath, 'cache'))
394 shutil.copyfile(builddir + '/cache/bb_unihashes.dat', baseoutpath + '/cache/bb_unihashes.dat')
395
Andrew Geissler82c905d2020-04-13 13:39:40 -0500396 # Use templateconf.cfg file from builddir if exists
Andrew Geissler09209ee2020-12-13 08:44:15 -0600397 if os.path.exists(builddir + '/conf/templateconf.cfg') and use_custom_templateconf == '1':
Andrew Geissler82c905d2020-04-13 13:39:40 -0500398 shutil.copyfile(builddir + '/conf/templateconf.cfg', baseoutpath + '/conf/templateconf.cfg')
399 else:
400 # Write a templateconf.cfg
401 with open(baseoutpath + '/conf/templateconf.cfg', 'w') as f:
402 f.write('meta/conf\n')
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500403
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500404 # Ensure any variables set from the external environment (by way of
405 # BB_ENV_EXTRAWHITE) are set in the SDK's configuration
406 extralines = []
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600407 for name, value in env_whitelist_values.items():
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500408 actualvalue = d.getVar(name) or ''
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500409 if value != actualvalue:
410 extralines.append('%s = "%s"\n' % (name, actualvalue))
411 if extralines:
412 with open(baseoutpath + '/conf/local.conf', 'a') as f:
413 f.write('\n')
414 f.write('# Extra settings from environment:\n')
415 for line in extralines:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500416 f.write(line)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500417 f.write('\n')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500418
419 # Filter the locked signatures file to just the sstate tasks we are interested in
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600420 excluded_targets = get_sdk_install_targets(d, images_only=True)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500421 sigfile = d.getVar('WORKDIR') + '/locked-sigs.inc'
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500422 lockedsigs_pruned = baseoutpath + '/conf/locked-sigs.inc'
Brad Bishopa34c0302019-09-23 22:34:48 -0400423 #nativesdk-only sigfile to merge into locked-sigs.inc
424 sdk_include_nativesdk = (d.getVar("SDK_INCLUDE_NATIVESDK") == '1')
425 nativesigfile = d.getVar('WORKDIR') + '/locked-sigs_nativesdk.inc'
426 nativesigfile_pruned = d.getVar('WORKDIR') + '/locked-sigs_nativesdk_pruned.inc'
427
428 if sdk_include_nativesdk:
429 oe.copy_buildsystem.prune_lockedsigs([],
430 excluded_targets.split(),
431 nativesigfile,
432 True,
433 nativesigfile_pruned)
434
435 oe.copy_buildsystem.merge_lockedsigs([],
436 sigfile,
437 nativesigfile_pruned,
438 sigfile)
439
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500440 oe.copy_buildsystem.prune_lockedsigs([],
441 excluded_targets.split(),
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500442 sigfile,
Brad Bishopa34c0302019-09-23 22:34:48 -0400443 False,
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500444 lockedsigs_pruned)
445
446 sstate_out = baseoutpath + '/sstate-cache'
447 bb.utils.remove(sstate_out, True)
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500448
449 # uninative.bbclass sets NATIVELSBSTRING to 'universal%s' % oe.utils.host_gcc_version(d)
450 fixedlsbstring = "universal%s" % oe.utils.host_gcc_version(d)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500451
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500452 sdk_include_toolchain = (d.getVar('SDK_INCLUDE_TOOLCHAIN') == '1')
453 sdk_ext_type = d.getVar('SDK_EXT_TYPE')
Brad Bishopa34c0302019-09-23 22:34:48 -0400454 if (sdk_ext_type != 'minimal' or sdk_include_toolchain or derivative) and not sdk_include_nativesdk:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600455 # Create the filtered task list used to generate the sstate cache shipped with the SDK
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500456 tasklistfn = d.getVar('WORKDIR') + '/tasklist.txt'
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600457 create_filtered_tasklist(d, baseoutpath, tasklistfn, conf_initpath)
458 else:
459 tasklistfn = None
460
Brad Bishop00e122a2019-10-05 11:10:57 -0400461 if os.path.exists(builddir + '/cache/bb_unihashes.dat'):
462 bb.parse.siggen.save_unitaskhashes()
463 bb.utils.mkdirhier(os.path.join(baseoutpath, 'cache'))
464 shutil.copyfile(builddir + '/cache/bb_unihashes.dat', baseoutpath + '/cache/bb_unihashes.dat')
465
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500466 # Add packagedata if enabled
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500467 if d.getVar('SDK_INCLUDE_PKGDATA') == '1':
468 lockedsigs_base = d.getVar('WORKDIR') + '/locked-sigs-base.inc'
469 lockedsigs_copy = d.getVar('WORKDIR') + '/locked-sigs-copy.inc'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500470 shutil.move(lockedsigs_pruned, lockedsigs_base)
471 oe.copy_buildsystem.merge_lockedsigs(['do_packagedata'],
472 lockedsigs_base,
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500473 d.getVar('STAGING_DIR_HOST') + '/world-pkgdata/locked-sigs-pkgdata.inc',
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500474 lockedsigs_pruned,
475 lockedsigs_copy)
476
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600477 if sdk_include_toolchain:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500478 lockedsigs_base = d.getVar('WORKDIR') + '/locked-sigs-base2.inc'
479 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 -0600480 shutil.move(lockedsigs_pruned, lockedsigs_base)
481 oe.copy_buildsystem.merge_lockedsigs([],
482 lockedsigs_base,
483 lockedsigs_toolchain,
484 lockedsigs_pruned)
485 oe.copy_buildsystem.create_locked_sstate_cache(lockedsigs_toolchain,
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500486 d.getVar('SSTATE_DIR'),
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600487 sstate_out, d,
488 fixedlsbstring,
489 filterfile=tasklistfn)
490
491 if sdk_ext_type == 'minimal':
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500492 if derivative:
493 # Assume the user is not going to set up an additional sstate
494 # mirror, thus we need to copy the additional artifacts (from
495 # workspace recipes) into the derivative SDK
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500496 lockedsigs_orig = d.getVar('TOPDIR') + '/conf/locked-sigs.inc'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500497 if os.path.exists(lockedsigs_orig):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500498 lockedsigs_extra = d.getVar('WORKDIR') + '/locked-sigs-extra.inc'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500499 oe.copy_buildsystem.merge_lockedsigs(None,
500 lockedsigs_orig,
501 lockedsigs_pruned,
502 None,
503 lockedsigs_extra)
504 oe.copy_buildsystem.create_locked_sstate_cache(lockedsigs_extra,
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500505 d.getVar('SSTATE_DIR'),
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500506 sstate_out, d,
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600507 fixedlsbstring,
508 filterfile=tasklistfn)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500509 else:
510 oe.copy_buildsystem.create_locked_sstate_cache(lockedsigs_pruned,
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500511 d.getVar('SSTATE_DIR'),
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500512 sstate_out, d,
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600513 fixedlsbstring,
514 filterfile=tasklistfn)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500515
516 # We don't need sstate do_package files
517 for root, dirs, files in os.walk(sstate_out):
518 for name in files:
519 if name.endswith("_package.tgz"):
520 f = os.path.join(root, name)
521 os.remove(f)
522
523 # Write manifest file
524 # Note: at the moment we cannot include the env setup script here to keep
525 # it updated, since it gets modified during SDK installation (see
526 # sdk_ext_postinst() below) thus the checksum we take here would always
527 # be different.
528 manifest_file_list = ['conf/*']
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500529 esdk_manifest_excludes = (d.getVar('ESDK_MANIFEST_EXCLUDES') or '').split()
530 esdk_manifest_excludes_list = []
531 for exclude_item in esdk_manifest_excludes:
532 esdk_manifest_excludes_list += glob.glob(os.path.join(baseoutpath, exclude_item))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500533 manifest_file = os.path.join(baseoutpath, 'conf', 'sdk-conf-manifest')
534 with open(manifest_file, 'w') as f:
535 for item in manifest_file_list:
536 for fn in glob.glob(os.path.join(baseoutpath, item)):
537 if fn == manifest_file:
538 continue
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500539 if fn in esdk_manifest_excludes_list:
540 continue
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500541 chksum = bb.utils.sha256_file(fn)
542 f.write('%s\t%s\n' % (chksum, os.path.relpath(fn, baseoutpath)))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500543}
544
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600545def get_current_buildtools(d):
546 """Get the file name of the current buildtools installer"""
547 import glob
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500548 btfiles = glob.glob(os.path.join(d.getVar('SDK_DEPLOY'), '*-buildtools-nativesdk-standalone-*.sh'))
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600549 btfiles.sort(key=os.path.getctime)
550 return os.path.basename(btfiles[-1])
551
552def get_sdk_required_utilities(buildtools_fn, d):
553 """Find required utilities that aren't provided by the buildtools"""
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500554 sanity_required_utilities = (d.getVar('SANITY_REQUIRED_UTILITIES') or '').split()
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600555 sanity_required_utilities.append(d.expand('${BUILD_PREFIX}gcc'))
556 sanity_required_utilities.append(d.expand('${BUILD_PREFIX}g++'))
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500557 if buildtools_fn:
558 buildtools_installer = os.path.join(d.getVar('SDK_DEPLOY'), buildtools_fn)
559 filelist, _ = bb.process.run('%s -l' % buildtools_installer)
560 else:
561 buildtools_installer = None
562 filelist = ""
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600563 localdata = bb.data.createCopy(d)
564 localdata.setVar('SDKPATH', '.')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500565 sdkpathnative = localdata.getVar('SDKPATHNATIVE')
566 sdkbindirs = [localdata.getVar('bindir_nativesdk'),
567 localdata.getVar('sbindir_nativesdk'),
568 localdata.getVar('base_bindir_nativesdk'),
569 localdata.getVar('base_sbindir_nativesdk')]
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600570 for line in filelist.splitlines():
571 splitline = line.split()
572 if len(splitline) > 5:
573 fn = splitline[5]
574 if not fn.startswith('./'):
575 fn = './%s' % fn
576 if fn.startswith(sdkpathnative):
577 relpth = '/' + os.path.relpath(fn, sdkpathnative)
578 for bindir in sdkbindirs:
579 if relpth.startswith(bindir):
580 relpth = os.path.relpath(relpth, bindir)
581 if relpth in sanity_required_utilities:
582 sanity_required_utilities.remove(relpth)
583 break
584 return ' '.join(sanity_required_utilities)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500585
586install_tools() {
587 install -d ${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}
Brad Bishop316dfdd2018-06-25 12:45:53 -0400588 scripts="devtool recipetool oe-find-native-sysroot runqemu* wic"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600589 for script in $scripts; do
590 for scriptfn in `find ${SDK_OUTPUT}/${SDKPATH}/${scriptrelpath} -maxdepth 1 -executable -name "$script"`; do
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800591 targetscriptfn="${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}/$(basename $scriptfn)"
592 test -e ${targetscriptfn} || lnr ${scriptfn} ${targetscriptfn}
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600593 done
594 done
595 # We can't use the same method as above because files in the sysroot won't exist at this point
596 # (they get populated from sstate on installation)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500597 unfsd_path="${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}/unfsd"
598 if [ "${SDK_INCLUDE_TOOLCHAIN}" = "1" -a ! -e $unfsd_path ] ; then
599 binrelpath=${@os.path.relpath(d.getVar('STAGING_BINDIR_NATIVE'), d.getVar('TMPDIR'))}
600 lnr ${SDK_OUTPUT}/${SDKPATH}/tmp/$binrelpath/unfsd $unfsd_path
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600601 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500602 touch ${SDK_OUTPUT}/${SDKPATH}/.devtoolbase
603
604 # find latest buildtools-tarball and install it
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500605 if [ -n "${SDK_BUILDTOOLS_INSTALLER}" ]; then
606 install ${SDK_DEPLOY}/${SDK_BUILDTOOLS_INSTALLER} ${SDK_OUTPUT}/${SDKPATH}
607 fi
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500608
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500609 install -m 0644 ${COREBASE}/meta/files/ext-sdk-prepare.py ${SDK_OUTPUT}/${SDKPATH}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500610}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500611do_populate_sdk_ext[file-checksums] += "${COREBASE}/meta/files/ext-sdk-prepare.py:True"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500612
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500613sdk_ext_preinst() {
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600614 # Since bitbake won't run as root it doesn't make sense to try and install
615 # the extensible sdk as root.
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500616 if [ "`id -u`" = "0" ]; then
617 echo "ERROR: The extensible sdk cannot be installed as root."
618 exit 1
619 fi
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600620 if ! command -v locale > /dev/null; then
621 echo "ERROR: The installer requires the locale command, please install it first"
622 exit 1
623 fi
624 # Check setting of LC_ALL set above
625 canonicalised_locale=`echo $LC_ALL | sed 's/UTF-8/utf8/'`
626 if ! locale -a | grep -q $canonicalised_locale ; then
627 echo "ERROR: the installer requires the $LC_ALL locale to be installed (but not selected), please install it first"
628 exit 1
629 fi
630 # The relocation script used by buildtools installer requires python
Andrew Geissler82c905d2020-04-13 13:39:40 -0500631 if ! command -v python3 > /dev/null; then
632 echo "ERROR: The installer requires python3, please install it first"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600633 exit 1
634 fi
635 missing_utils=""
636 for util in ${SDK_REQUIRED_UTILITIES}; do
637 if ! command -v $util > /dev/null; then
638 missing_utils="$missing_utils $util"
639 fi
640 done
641 if [ -n "$missing_utils" ] ; then
642 echo "ERROR: the SDK requires the following missing utilities, please install them: $missing_utils"
643 exit 1
644 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500645 SDK_EXTENSIBLE="1"
Brad Bishop19323692019-04-05 15:28:33 -0400646 if [ "$publish" = "1" ] && [ "${SDK_EXT_TYPE}" = "minimal" ] ; then
647 EXTRA_TAR_OPTIONS="$EXTRA_TAR_OPTIONS --exclude=sstate-cache"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500648 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500649}
650SDK_PRE_INSTALL_COMMAND_task-populate-sdk-ext = "${sdk_ext_preinst}"
651
652# FIXME this preparation should be done as part of the SDK construction
653sdk_ext_postinst() {
654 printf "\nExtracting buildtools...\n"
655 cd $target_sdk_dir
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600656 env_setup_script="$target_sdk_dir/environment-setup-${REAL_MULTIMACH_TARGET_SYS}"
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500657 if [ -n "${SDK_BUILDTOOLS_INSTALLER}" ]; then
658 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 -0500659
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500660 # Delete the buildtools tar file since it won't be used again
661 rm -f ./${SDK_BUILDTOOLS_INSTALLER}
662 # We don't need the log either since it succeeded
663 rm -f buildtools.log
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500664
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500665 # Make sure when the user sets up the environment, they also get
666 # the buildtools-tarball tools in their path.
Andrew Geissler635e0e42020-08-21 15:58:33 -0500667 echo "# Save and reset OECORE_NATIVE_SYSROOT as buildtools may change it" >> $env_setup_script
668 echo "SAVED=\"\$OECORE_NATIVE_SYSROOT\"" >> $env_setup_script
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500669 echo ". $target_sdk_dir/buildtools/environment-setup*" >> $env_setup_script
Andrew Geissler635e0e42020-08-21 15:58:33 -0500670 echo "OECORE_NATIVE_SYSROOT=\"\$SAVED\"" >> $env_setup_script
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500671 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500672
673 # Allow bitbake environment setup to be ran as part of this sdk.
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500674 echo "export OE_SKIP_SDK_CHECK=1" >> $env_setup_script
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500675 # Work around runqemu not knowing how to get this information within the eSDK
676 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 -0500677
678 # A bit of another hack, but we need this in the path only for devtool
679 # so put it at the end of $PATH.
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500680 echo "export PATH=$target_sdk_dir/sysroots/${SDK_SYS}${bindir_nativesdk}:\$PATH" >> $env_setup_script
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500681
682 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
683
684 # Warn if trying to use external bitbake and the ext SDK together
685 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 -0500686
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500687 if [ "$prepare_buildsystem" != "no" -a -n "${SDK_BUILDTOOLS_INSTALLER}" ]; then
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500688 printf "Preparing build system...\n"
689 # dash which is /bin/sh on Ubuntu will not preserve the
690 # current working directory when first ran, nor will it set $1 when
691 # sourcing a script. That is why this has to look so ugly.
692 LOGFILE="$target_sdk_dir/preparing_build_system.log"
Andrew Geissler475cb722020-07-10 16:00:51 -0500693 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 -0400694 fi
695 if [ -e $target_sdk_dir/ext-sdk-prepare.py ]; then
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500696 rm $target_sdk_dir/ext-sdk-prepare.py
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500697 fi
698 echo done
699}
700
701SDK_POST_INSTALL_COMMAND_task-populate-sdk-ext = "${sdk_ext_postinst}"
702
703SDK_POSTPROCESS_COMMAND_prepend_task-populate-sdk-ext = "copy_buildsystem; install_tools; "
704
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500705SDK_INSTALL_TARGETS = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500706fakeroot python do_populate_sdk_ext() {
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500707 # FIXME hopefully we can remove this restriction at some point, but uninative
708 # currently forces this upon us
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500709 if d.getVar('SDK_ARCH') != d.getVar('BUILD_ARCH'):
710 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 -0500711
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500712 d.setVar('SDK_INSTALL_TARGETS', get_sdk_install_targets(d))
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500713 if d.getVar('SDK_INCLUDE_BUILDTOOLS') == '1':
714 buildtools_fn = get_current_buildtools(d)
715 else:
716 buildtools_fn = None
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600717 d.setVar('SDK_REQUIRED_UTILITIES', get_sdk_required_utilities(buildtools_fn, d))
718 d.setVar('SDK_BUILDTOOLS_INSTALLER', buildtools_fn)
719 d.setVar('SDKDEPLOYDIR', '${SDKEXTDEPLOYDIR}')
Brad Bishop00111322018-04-01 22:23:53 -0400720 # ESDKs have a libc from the buildtools so ensure we don't ship linguas twice
721 d.delVar('SDKIMAGE_LINGUAS')
Brad Bishopa34c0302019-09-23 22:34:48 -0400722 if d.getVar("SDK_INCLUDE_NATIVESDK") == '1':
723 generate_nativesdk_lockedsigs(d)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600724 populate_sdk_common(d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500725}
726
Brad Bishopa34c0302019-09-23 22:34:48 -0400727def generate_nativesdk_lockedsigs(d):
728 import oe.copy_buildsystem
729 sigfile = d.getVar('WORKDIR') + '/locked-sigs_nativesdk.inc'
730 oe.copy_buildsystem.generate_locked_sigs(sigfile, d)
731
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500732def get_ext_sdk_depends(d):
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600733 # Note: the deps varflag is a list not a string, so we need to specify expand=False
734 deps = d.getVarFlag('do_image_complete', 'deps', False)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500735 pn = d.getVar('PN')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600736 deplist = ['%s:%s' % (pn, dep) for dep in deps]
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500737 tasklist = bb.build.tasksbetween('do_image_complete', 'do_build', d)
738 tasklist.append('do_rootfs')
739 for task in tasklist:
740 deplist.extend((d.getVarFlag(task, 'depends') or '').split())
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600741 return ' '.join(deplist)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500742
743python do_sdk_depends() {
744 # We have to do this separately in its own task so we avoid recursing into
745 # dependencies we don't need to (e.g. buildtools-tarball) and bringing those
746 # into the SDK's sstate-cache
747 import oe.copy_buildsystem
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500748 sigfile = d.getVar('WORKDIR') + '/locked-sigs.inc'
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500749 oe.copy_buildsystem.generate_locked_sigs(sigfile, d)
750}
751addtask sdk_depends
752
753do_sdk_depends[dirs] = "${WORKDIR}"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500754do_sdk_depends[depends] = "${@get_ext_sdk_depends(d)} meta-extsdk-toolchain:do_populate_sysroot"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500755do_sdk_depends[recrdeptask] = "${@d.getVarFlag('do_populate_sdk', 'recrdeptask', False)}"
756do_sdk_depends[recrdeptask] += "do_populate_lic do_package_qa do_populate_sysroot do_deploy ${SDK_RECRDEP_TASKS}"
757do_sdk_depends[rdepends] = "${@get_sdk_ext_rdepends(d)}"
758
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500759def get_sdk_ext_rdepends(d):
760 localdata = d.createCopy()
761 localdata.appendVar('OVERRIDES', ':task-populate-sdk-ext')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500762 return localdata.getVarFlag('do_populate_sdk', 'rdepends')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500763
764do_populate_sdk_ext[dirs] = "${@d.getVarFlag('do_populate_sdk', 'dirs', False)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500765
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500766do_populate_sdk_ext[depends] = "${@d.getVarFlag('do_populate_sdk', 'depends', False)} \
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500767 ${@'buildtools-tarball:do_populate_sdk' if d.getVar('SDK_INCLUDE_BUILDTOOLS') == '1' else ''} \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500768 ${@'meta-world-pkgdata:do_collect_packagedata' if d.getVar('SDK_INCLUDE_PKGDATA') == '1' else ''} \
769 ${@'meta-extsdk-toolchain:do_locked_sigs' if d.getVar('SDK_INCLUDE_TOOLCHAIN') == '1' else ''}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500770
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500771# We must avoid depending on do_build here if rm_work.bbclass is active,
772# because otherwise do_rm_work may run before do_populate_sdk_ext itself.
773# We can't mark do_populate_sdk_ext and do_sdk_depends as having to
774# run before do_rm_work, because then they would also run as part
775# of normal builds.
776do_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 -0500777
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500778# Make sure code changes can result in rebuild
779do_populate_sdk_ext[vardeps] += "copy_buildsystem \
780 sdk_ext_postinst"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500781
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500782# Since any change in the metadata of any layer should cause a rebuild of the
783# sdk(since the layers are put in the sdk) set the task to nostamp so it
784# always runs.
785do_populate_sdk_ext[nostamp] = "1"
786
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600787SDKEXTDEPLOYDIR = "${WORKDIR}/deploy-${PN}-populate-sdk-ext"
788
789SSTATETASKS += "do_populate_sdk_ext"
790SSTATE_SKIP_CREATION_task-populate-sdk-ext = '1'
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500791do_populate_sdk_ext[cleandirs] = "${SDKEXTDEPLOYDIR}"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600792do_populate_sdk_ext[sstate-inputdirs] = "${SDKEXTDEPLOYDIR}"
793do_populate_sdk_ext[sstate-outputdirs] = "${SDK_DEPLOY}"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400794do_populate_sdk_ext[stamp-extra-info] = "${MACHINE_ARCH}"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600795
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500796addtask populate_sdk_ext after do_sdk_depends