Add initial ppc64el support
Note that this does not include grub-ieee1275 support so the images will not be bootable, but it's a first step and produces ISOs without error.
This commit is contained in:
parent
263f84fe80
commit
13cf0e9ebe
|
@ -236,6 +236,10 @@ Prepare_config ()
|
|||
LB_LINUX_FLAVOURS_WITH_ARCH="${LB_LINUX_FLAVOURS_WITH_ARCH:-powerpc64 powerpc}"
|
||||
;;
|
||||
|
||||
ppc64el)
|
||||
LB_LINUX_FLAVOURS_WITH_ARCH="${LB_LINUX_FLAVOURS_WITH_ARCH:-powerpc64le}"
|
||||
;;
|
||||
|
||||
s390x)
|
||||
LB_LINUX_FLAVOURS_WITH_ARCH="${LB_LINUX_FLAVOURS_WITH_ARCH:-s390x}"
|
||||
;;
|
||||
|
|
|
@ -48,7 +48,7 @@ case "${LB_INITRAMFS}" in
|
|||
esac
|
||||
|
||||
case "${LB_ARCHITECTURE}" in
|
||||
powerpc)
|
||||
powerpc|ppc64el)
|
||||
LINUX="vmlinux"
|
||||
;;
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ case "${LB_ARCHITECTURE}" in
|
|||
LINUX="vmlinuz"
|
||||
;;
|
||||
|
||||
powerpc)
|
||||
powerpc|ppc64el)
|
||||
LINUX="vmlinux"
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in New Issue