summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/wic/plugins/source/isoimage-isohybrid.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/lib/wic/plugins/source/isoimage-isohybrid.py b/scripts/lib/wic/plugins/source/isoimage-isohybrid.py
index b54a2290d8..e4637a3283 100644
--- a/scripts/lib/wic/plugins/source/isoimage-isohybrid.py
+++ b/scripts/lib/wic/plugins/source/isoimage-isohybrid.py
@@ -158,11 +158,11 @@ class IsoImagePlugin(SourcePlugin):
158 if not image_type: 158 if not image_type:
159 msger.error("Couldn't find INITRAMFS_FSTYPES, exiting.\n") 159 msger.error("Couldn't find INITRAMFS_FSTYPES, exiting.\n")
160 160
161 machine_arch = get_bitbake_var("MACHINE_ARCH") 161 target_arch = get_bitbake_var("TRANSLATED_TARGET_ARCH")
162 if not machine_arch: 162 if not target_arch:
163 msger.error("Couldn't find MACHINE_ARCH, exiting.\n") 163 msger.error("Couldn't find TRANSLATED_TARGET_ARCH, exiting.\n")
164 164
165 initrd = glob.glob('%s/%s*%s.%s' % (initrd_dir, image_name, machine_arch, image_type))[0] 165 initrd = glob.glob('%s/%s*%s.%s' % (initrd_dir, image_name, target_arch, image_type))[0]
166 166
167 if not os.path.exists(initrd): 167 if not os.path.exists(initrd):
168 # Create initrd from rootfs directory 168 # Create initrd from rootfs directory