summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-11 09:14:10 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-11 13:22:01 +0100
commit71282bbc5331e7768c95d1dd6db94651de504734 (patch)
treedc9044b5db6a5e5f9e4d08f6ffa55e9e28585cd5 /meta/classes-recipe
parentd7ce7d67994f02367750d03e9e97ebdf89cd7a33 (diff)
downloadpoky-71282bbc5331e7768c95d1dd6db94651de504734.tar.gz
qemuboot: Update hardcoded path to match new layout
Obviously this code is horrible and shouldn't hardcode it. Update it to match the WORKDIR change to drop PE/PR for now. (From OE-Core rev: 05095c116602d1a8c388cc02afffcc36230138f7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r--meta/classes-recipe/qemuboot.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/qemuboot.bbclass b/meta/classes-recipe/qemuboot.bbclass
index 12d0a509f1..e30b380c3d 100644
--- a/meta/classes-recipe/qemuboot.bbclass
+++ b/meta/classes-recipe/qemuboot.bbclass
@@ -143,7 +143,7 @@ python do_write_qemuboot_conf() {
143 # contains all tools required by runqemu 143 # contains all tools required by runqemu
144 if k == 'STAGING_BINDIR_NATIVE': 144 if k == 'STAGING_BINDIR_NATIVE':
145 val = os.path.join(d.getVar('BASE_WORKDIR'), d.getVar('BUILD_SYS'), 145 val = os.path.join(d.getVar('BASE_WORKDIR'), d.getVar('BUILD_SYS'),
146 'qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/') 146 'qemu-helper-native/1.0/recipe-sysroot-native/usr/bin/')
147 else: 147 else:
148 val = d.getVar(k) 148 val = d.getVar(k)
149 if val is None: 149 if val is None: