diff options
Diffstat (limited to 'meta/lib/oe/copy_buildsystem.py')
-rw-r--r-- | meta/lib/oe/copy_buildsystem.py | 59 |
1 files changed, 53 insertions, 6 deletions
diff --git a/meta/lib/oe/copy_buildsystem.py b/meta/lib/oe/copy_buildsystem.py index 5074a43cb9..dd0e6641e3 100644 --- a/meta/lib/oe/copy_buildsystem.py +++ b/meta/lib/oe/copy_buildsystem.py | |||
@@ -20,7 +20,7 @@ class BuildSystem(object): | |||
20 | self.layerdirs = d.getVar('BBLAYERS', True).split() | 20 | self.layerdirs = d.getVar('BBLAYERS', True).split() |
21 | self.layers_exclude = (d.getVar('SDK_LAYERS_EXCLUDE', True) or "").split() | 21 | self.layers_exclude = (d.getVar('SDK_LAYERS_EXCLUDE', True) or "").split() |
22 | 22 | ||
23 | def copy_bitbake_and_layers(self, destdir): | 23 | def copy_bitbake_and_layers(self, destdir, workspace_name=None): |
24 | # Copy in all metadata layers + bitbake (as repositories) | 24 | # Copy in all metadata layers + bitbake (as repositories) |
25 | layers_copied = [] | 25 | layers_copied = [] |
26 | bb.utils.mkdirhier(destdir) | 26 | bb.utils.mkdirhier(destdir) |
@@ -34,6 +34,14 @@ class BuildSystem(object): | |||
34 | if layer_exclude in layers: | 34 | if layer_exclude in layers: |
35 | layers.remove(layer_exclude) | 35 | layers.remove(layer_exclude) |
36 | 36 | ||
37 | workspace_newname = workspace_name | ||
38 | if workspace_newname: | ||
39 | layernames = [os.path.basename(layer) for layer in layers] | ||
40 | extranum = 0 | ||
41 | while workspace_newname in layernames: | ||
42 | extranum += 1 | ||
43 | workspace_newname = '%s-%d' % (workspace_name, extranum) | ||
44 | |||
37 | corebase_files = self.d.getVar('COREBASE_FILES', True).split() | 45 | corebase_files = self.d.getVar('COREBASE_FILES', True).split() |
38 | corebase_files = [corebase + '/' +x for x in corebase_files] | 46 | corebase_files = [corebase + '/' +x for x in corebase_files] |
39 | # Make sure bitbake goes in | 47 | # Make sure bitbake goes in |
@@ -42,18 +50,24 @@ class BuildSystem(object): | |||
42 | 50 | ||
43 | for layer in layers: | 51 | for layer in layers: |
44 | layerconf = os.path.join(layer, 'conf', 'layer.conf') | 52 | layerconf = os.path.join(layer, 'conf', 'layer.conf') |
53 | layernewname = os.path.basename(layer) | ||
54 | workspace = False | ||
45 | if os.path.exists(layerconf): | 55 | if os.path.exists(layerconf): |
46 | with open(layerconf, 'r') as f: | 56 | with open(layerconf, 'r') as f: |
47 | if f.readline().startswith("# ### workspace layer auto-generated by devtool ###"): | 57 | if f.readline().startswith("# ### workspace layer auto-generated by devtool ###"): |
48 | bb.plain("NOTE: Excluding local workspace layer %s from %s" % (layer, self.context)) | 58 | if workspace_newname: |
49 | continue | 59 | layernewname = workspace_newname |
60 | workspace = True | ||
61 | else: | ||
62 | bb.plain("NOTE: Excluding local workspace layer %s from %s" % (layer, self.context)) | ||
63 | continue | ||
50 | 64 | ||
51 | # If the layer was already under corebase, leave it there | 65 | # If the layer was already under corebase, leave it there |
52 | # since layers such as meta have issues when moved. | 66 | # since layers such as meta have issues when moved. |
53 | layerdestpath = destdir | 67 | layerdestpath = destdir |
54 | if corebase == os.path.dirname(layer): | 68 | if corebase == os.path.dirname(layer): |
55 | layerdestpath += '/' + os.path.basename(corebase) | 69 | layerdestpath += '/' + os.path.basename(corebase) |
56 | layerdestpath += '/' + os.path.basename(layer) | 70 | layerdestpath += '/' + layernewname |
57 | 71 | ||
58 | layer_relative = os.path.relpath(layerdestpath, | 72 | layer_relative = os.path.relpath(layerdestpath, |
59 | destdir) | 73 | destdir) |
@@ -73,6 +87,38 @@ class BuildSystem(object): | |||
73 | else: | 87 | else: |
74 | _smart_copy(layer, layerdestpath) | 88 | _smart_copy(layer, layerdestpath) |
75 | 89 | ||
90 | if workspace: | ||
91 | # Make some adjustments original workspace layer | ||
92 | # Drop sources (recipe tasks will be locked, so we don't need them) | ||
93 | srcdir = os.path.join(layerdestpath, 'sources') | ||
94 | if os.path.isdir(srcdir): | ||
95 | shutil.rmtree(srcdir) | ||
96 | # Drop all bbappends except the one for the image the SDK is being built for | ||
97 | # (because of externalsrc, the workspace bbappends will interfere with the | ||
98 | # locked signatures if present, and we don't need them anyway) | ||
99 | image_bbappend = os.path.splitext(os.path.basename(self.d.getVar('FILE', True)))[0] + '.bbappend' | ||
100 | appenddir = os.path.join(layerdestpath, 'appends') | ||
101 | if os.path.isdir(appenddir): | ||
102 | for fn in os.listdir(appenddir): | ||
103 | if fn == image_bbappend: | ||
104 | continue | ||
105 | else: | ||
106 | os.remove(os.path.join(appenddir, fn)) | ||
107 | # Drop README | ||
108 | readme = os.path.join(layerdestpath, 'README') | ||
109 | if os.path.exists(readme): | ||
110 | os.remove(readme) | ||
111 | # Filter out comments in layer.conf and change layer name | ||
112 | layerconf = os.path.join(layerdestpath, 'conf', 'layer.conf') | ||
113 | with open(layerconf, 'r') as f: | ||
114 | origlines = f.readlines() | ||
115 | with open(layerconf, 'w') as f: | ||
116 | for line in origlines: | ||
117 | if line.startswith('#'): | ||
118 | continue | ||
119 | line = line.replace('workspacelayer', workspace_newname) | ||
120 | f.write(line) | ||
121 | |||
76 | return layers_copied | 122 | return layers_copied |
77 | 123 | ||
78 | def generate_locked_sigs(sigfile, d): | 124 | def generate_locked_sigs(sigfile, d): |
@@ -123,7 +169,7 @@ def merge_lockedsigs(copy_tasks, lockedsigs_main, lockedsigs_extra, merged_outpu | |||
123 | if line.endswith('\\\n'): | 169 | if line.endswith('\\\n'): |
124 | if not line in merged[invalue]: | 170 | if not line in merged[invalue]: |
125 | target, task = line.strip().split(':')[:2] | 171 | target, task = line.strip().split(':')[:2] |
126 | if task in copy_tasks: | 172 | if not copy_tasks or task in copy_tasks: |
127 | tocopy[invalue].append(line) | 173 | tocopy[invalue].append(line) |
128 | merged[invalue].append(line) | 174 | merged[invalue].append(line) |
129 | else: | 175 | else: |
@@ -150,7 +196,8 @@ def merge_lockedsigs(copy_tasks, lockedsigs_main, lockedsigs_extra, merged_outpu | |||
150 | f.write('SIGGEN_LOCKEDSIGS_TYPES = "%s"\n' % ' '.join(fulltypes)) | 196 | f.write('SIGGEN_LOCKEDSIGS_TYPES = "%s"\n' % ' '.join(fulltypes)) |
151 | 197 | ||
152 | write_sigs_file(copy_output, tocopy.keys(), tocopy) | 198 | write_sigs_file(copy_output, tocopy.keys(), tocopy) |
153 | write_sigs_file(merged_output, arch_order, merged) | 199 | if merged_output: |
200 | write_sigs_file(merged_output, arch_order, merged) | ||
154 | 201 | ||
155 | def create_locked_sstate_cache(lockedsigs, input_sstate_cache, output_sstate_cache, d, fixedlsbstring=""): | 202 | def create_locked_sstate_cache(lockedsigs, input_sstate_cache, output_sstate_cache, d, fixedlsbstring=""): |
156 | bb.note('Generating sstate-cache...') | 203 | bb.note('Generating sstate-cache...') |