mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
isoimage-isohybrid: use TRANSLATED_TARGET_ARCH instead of MACHINE_ARCH
isoimage-sihybrid plugin uses MACHINE_ARCH to get the name of initrd image. It doesn't work for all machines, for example for quemux86-64 machine MACHINE_ARCH is quemux86_64 and initrd name is core-image-minimal-initramfs-qemux86-64.cpio.gz Used TRANSLATED_TARGET_ARCH variable to get the initrd image name. Replaced MACHINE_ARCH->TRANSLATED_TARGET_ARCH in WICVARS variable to make it available from <image>.env file. (From OE-Core rev: edf0830412de66eada9ef3f3947ca42e301c5377) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
66d08e0fda
commit
6740b8fdbb
@@ -158,11 +158,11 @@ class IsoImagePlugin(SourcePlugin):
|
||||
if not image_type:
|
||||
msger.error("Couldn't find INITRAMFS_FSTYPES, exiting.\n")
|
||||
|
||||
machine_arch = get_bitbake_var("MACHINE_ARCH")
|
||||
if not machine_arch:
|
||||
msger.error("Couldn't find MACHINE_ARCH, exiting.\n")
|
||||
target_arch = get_bitbake_var("TRANSLATED_TARGET_ARCH")
|
||||
if not target_arch:
|
||||
msger.error("Couldn't find TRANSLATED_TARGET_ARCH, exiting.\n")
|
||||
|
||||
initrd = glob.glob('%s/%s*%s.%s' % (initrd_dir, image_name, machine_arch, image_type))[0]
|
||||
initrd = glob.glob('%s/%s*%s.%s' % (initrd_dir, image_name, target_arch, image_type))[0]
|
||||
|
||||
if not os.path.exists(initrd):
|
||||
# Create initrd from rootfs directory
|
||||
|
||||
Reference in New Issue
Block a user