diff options
-rw-r--r-- | meta-yocto/classes/poky-sanity.bbclass | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/meta-yocto/classes/poky-sanity.bbclass b/meta-yocto/classes/poky-sanity.bbclass index 1c7514fdca..fff08b3a8a 100644 --- a/meta-yocto/classes/poky-sanity.bbclass +++ b/meta-yocto/classes/poky-sanity.bbclass | |||
@@ -1,16 +1,24 @@ | |||
1 | python check_bblayers_conf_append() { | 1 | python poky_update_bblayersconf() { |
2 | if current_lconf != lconf_version: | 2 | current_version = int(d.getVar('LCONF_VERSION', True) or -1) |
3 | if current_lconf == 5: | 3 | latest_version = int(d.getVar('LAYER_CONF_VERSION', True) or -1) |
4 | index, meta_yocto_line = find_line('meta-yocto\s*\\\\\\n', lines) | 4 | |
5 | bblayers_fn = bblayers_conf_file(d) | ||
6 | lines = sanity_conf_read(bblayers_fn) | ||
7 | |||
8 | if current_version == 5 and latest_version == 6: | ||
9 | if '/meta-yocto-bsp' not in d.getVar('BBLAYERS', True): | ||
10 | index, meta_yocto_line = sanity_conf_find_line('meta-yocto\s*\\\\\\n', lines) | ||
5 | if meta_yocto_line: | 11 | if meta_yocto_line: |
6 | lines.insert(index + 1, meta_yocto_line.replace('meta-yocto', | 12 | lines.insert(index + 1, meta_yocto_line.replace('meta-yocto', |
7 | 'meta-yocto-bsp')) | 13 | 'meta-yocto-bsp')) |
8 | else: | 14 | else: |
9 | sys.exit() | 15 | sys.exit() |
10 | 16 | ||
11 | index, line = find_line('LCONF_VERSION', lines) | 17 | current_version += 1 |
12 | current_lconf += 1 | 18 | sanity_conf_update(bblayers_fn, lines, 'LCONF_VERSION', current_version) |
13 | lines[index] = 'LCONF_VERSION = "%d"\n' % current_lconf | 19 | return |
14 | with open(bblayers_fn, "w") as f: | 20 | |
15 | f.write(''.join(lines)) | 21 | sys.exit() |
16 | } | 22 | } |
23 | |||
24 | BBLAYERS_CONF_UPDATE_FUNCS += "poky_update_bblayersconf" | ||