summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-08-31 13:13:59 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-01 10:07:02 +0100
commitaa09f4d928eb01613acd8db9a6ecd84be6d1a8e3 (patch)
treeb8e1a526a704915e2bf841530811f26d73a065e7 /scripts
parente561fc1cbec02b4002e33c63281e63691d4a2725 (diff)
downloadpoky-aa09f4d928eb01613acd8db9a6ecd84be6d1a8e3.tar.gz
scripts/oe-setup-layers: add a script that restores the layer configuration from a json file
This script can be used directly from poky or oe-core, or can be copied directly into alayer or any other repository - it is self-suffucient and requires only python3 and git on the host where it will run. It is also copied by the bitbake-layers layers-setup plugin together with the json, unless requested otherwise. 1. How to restore the layers from the saved configuration: a) Clone the bootstrap layer or some other repository to obtain the json config and the setup script that can use it. (use 'bitbake-layers create-layer-setup' from the previous commit to create them) b) Running with default options: (note: this will work to update an existing checkout as well) alex@Zen2:/srv/work/alex/my-build$ meta-alex/setup-layers Note: not checking out source meta-alex, use --force-bootstraplayer-checkout to override. Setting up source meta-intel, revision 15.0-hardknott-3.3-310-g0a96edae, branch master Running 'git init -q /srv/work/alex/my-build/meta-intel' Running 'git remote remove origin > /dev/null 2>&1; git remote add origin git://git.yoctoproject.org/meta-intel' in /srv/work/alex/my-build/meta-intel Running 'git fetch -q origin || true' in /srv/work/alex/my-build/meta-intel Running 'git checkout -q 0a96edae609a3f48befac36af82cf1eed6786b4a' in /srv/work/alex/my-build/meta-intel Setting up source poky, revision 4.1_M1-372-g55483d28f2, branch akanavin/setup-layers Running 'git init -q /srv/work/alex/my-build/poky' Running 'git remote remove origin > /dev/null 2>&1; git remote add origin git://git.yoctoproject.org/poky' in /srv/work/alex/my-build/poky Running 'git fetch -q origin || true' in /srv/work/alex/my-build/poky Running 'git remote remove poky-contrib > /dev/null 2>&1; git remote add poky-contrib ssh://git@push.yoctoproject.org/poky-contrib' in /srv/work/alex/my-build/poky Running 'git fetch -q poky-contrib || true' in /srv/work/alex/my-build/poky Running 'git checkout -q 11db0390b02acac1324e0f827beb0e2e3d0d1d63' in /srv/work/alex/my-build/poky 2. Command line options: alex@Zen2:/srv/work/alex/my-build$ meta-alex/setup-layers -h usage: setup-layers [-h] [--force-bootstraplayer-checkout] [--destdir DESTDIR] [--jsondata JSONDATA] A self contained python script that fetches all the needed layers and sets them to correct revisions optional arguments: -h, --help show this help message and exit --force-bootstraplayer-checkout Force the checkout of the layer containing this file (by default it is presumed that as this script is in it, the layer is already in place). --destdir DESTDIR Where to check out the layers (default is /srv/work/alex/my-build). --jsondata JSONDATA File containing the layer data in json format (default is /srv/work/alex/my-build/meta-alex/setup-layers.json). (From OE-Core rev: 58f94471675aef9ac6d15637ac5d8e69cc304c7a) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/oe-setup-layers88
1 files changed, 88 insertions, 0 deletions
diff --git a/scripts/oe-setup-layers b/scripts/oe-setup-layers
new file mode 100755
index 0000000000..cbd2efb5c7
--- /dev/null
+++ b/scripts/oe-setup-layers
@@ -0,0 +1,88 @@
1#!/usr/bin/env python3
2#
3# Copyright OpenEmbedded Contributors
4#
5# SPDX-License-Identifier: MIT
6#
7
8# This file was copied from poky(or oe-core)/scripts/oe-setup-layers by running
9#
10# bitbake-layers create-layers-setup destdir
11#
12# It is recommended that you do not modify this file directly, but rather re-run the above command to get the freshest upstream copy.
13
14import argparse
15import json
16import os
17import subprocess
18
19def _do_checkout(args, json):
20 layers = json['sources']
21 buildconfs = []
22 oecorepath = ""
23 for l_name in layers:
24 l_data = layers[l_name]
25 layerdir = os.path.abspath(os.path.join(args['destdir'], l_data['path']))
26
27 for ll_name in l_data['layers']:
28 if ll_name == 'meta':
29 oecorepath = layerdir
30 ll_data = l_data['layers'][ll_name]
31 if 'buildconfigs' in ll_data:
32 for c in ll_data['buildconfigs']:
33 buildconfs.append(os.path.join(layerdir, ll_data['subpath'], c))
34
35 if 'contains_this_file' in l_data.keys():
36 force_arg = 'force_bootstraplayer_checkout'
37 if not args[force_arg]:
38 print('Note: not checking out source {layer}, use {layerflag} to override.'.format(layer=l_name, layerflag='--force-bootstraplayer-checkout'))
39 continue
40 l_remote = l_data['git-remote']
41 rev = l_remote['rev']
42 desc = l_remote['describe']
43 if not desc:
44 desc = rev[:10]
45 branch = l_remote['branch']
46 remotes = l_remote['remotes']
47
48 print('\nSetting up source {}, revision {}, branch {}'.format(l_name, desc, branch))
49 cmd = 'git init -q {}'.format(layerdir)
50 print("Running '{}'".format(cmd))
51 subprocess.check_output(cmd, shell=True)
52
53 for remote in remotes:
54 cmd = "git remote remove {} > /dev/null 2>&1; git remote add {} {}".format(remote, remote, remotes[remote]['uri'])
55 print("Running '{}' in {}".format(cmd, layerdir))
56 subprocess.check_output(cmd, shell=True, cwd=layerdir)
57
58 cmd = "git fetch -q {} || true".format(remote)
59 print("Running '{}' in {}".format(cmd, layerdir))
60 subprocess.check_output(cmd, shell=True, cwd=layerdir)
61
62 cmd = 'git checkout -q {}'.format(rev)
63 print("Running '{}' in {}".format(cmd, layerdir))
64 subprocess.check_output(cmd, shell=True, cwd=layerdir)
65
66parser = argparse.ArgumentParser(description="A self contained python script that fetches all the needed layers and sets them to correct revisions using data in a json format from a separate file. The json data can be created from an active build directory with 'bitbake-layers create-layers-setup destdir' and there's a sample file and a schema in meta/files/")
67
68parser.add_argument('--force-bootstraplayer-checkout', action='store_true',
69 help='Force the checkout of the layer containing this file (by default it is presumed that as this script is in it, the layer is already in place).')
70
71try:
72 defaultdest = os.path.dirname(subprocess.check_output('git rev-parse --show-toplevel', universal_newlines=True, shell=True, cwd=os.path.dirname(__file__)))
73except subprocess.CalledProcessError as e:
74 defaultdest = os.path.abspath(".")
75
76parser.add_argument('--destdir', default=defaultdest, help='Where to check out the layers (default is {defaultdest}).'.format(defaultdest=defaultdest))
77parser.add_argument('--jsondata', default=__file__+".json", help='File containing the layer data in json format (default is {defaultjson}).'.format(defaultjson=__file__+".json"))
78
79args = parser.parse_args()
80
81with open(args.jsondata) as f:
82 json = json.load(f)
83
84supported_versions = ["1.0"]
85if json["version"] not in supported_versions:
86 raise Exception("File {} has version {}, which is not in supported versions: {}".format(args.jsondata, json["version"], supported_versions))
87
88_do_checkout(vars(args), json)