mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 21:32:12 +02:00
qemuboot.bbclass: create deterministic qemuboot.conf file
The lines in qemuboot.conf are in random order. This patch fixes this by printing the lines in sorted order. This makes it easier to compare two different builds for any differences. (From OE-Core rev: 0868edace0750862168abc8d504891646afc8c76) Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2f12988794
commit
0f416a65ed
@@ -87,7 +87,7 @@ python do_write_qemuboot_conf() {
|
||||
topdir="%s/"%(d.getVar('TOPDIR')).replace("//","/")
|
||||
cf = configparser.ConfigParser()
|
||||
cf.add_section('config_bsp')
|
||||
for k in qemuboot_vars(d):
|
||||
for k in sorted(qemuboot_vars(d)):
|
||||
# qemu-helper-native sysroot is not removed by rm_work and
|
||||
# contains all tools required by runqemu
|
||||
if k == 'STAGING_BINDIR_NATIVE':
|
||||
|
||||
Reference in New Issue
Block a user