Make our OS iso bootable on aarch64.

Aarch64 needs to get the el torito image generation code x86 has for
UEFI as well.

Signed-off-by: Peter Jones <pjones@redhat.com>
This commit is contained in:
Peter Jones 2014-12-09 11:48:59 -05:00 committed by Dennis Gilmore
parent d865c94330
commit 33ebc4e11f

View File

@ -1625,6 +1625,8 @@ class Pungi(pypungi.PungiBase):
elif self.tree_arch.startswith('ppc'): elif self.tree_arch.startswith('ppc'):
extraargs.extend(ppcbootargs) extraargs.extend(ppcbootargs)
extraargs.append(os.path.join(self.topdir, "ppc/mac")) extraargs.append(os.path.join(self.topdir, "ppc/mac"))
elif self.tree_arch.startswith('aarch64'):
extraargs.extend(efibootargs)
# NOTE: if this doesn't match what's in the bootloader config, the # NOTE: if this doesn't match what's in the bootloader config, the
# image won't be bootable! # image won't be bootable!