Adding linux flavours for arm64/armhf architectures.

Signed-off-by: Fathi Boudra <fabo@debian.org>
This commit is contained in:
Fathi Boudra 2015-02-03 22:22:30 +02:00 committed by Fathi Boudra
parent e51315ae1e
commit 9d95afb9f6
1 changed files with 23 additions and 3 deletions

View File

@ -506,6 +506,18 @@ Set_defaults ()
# Setting linux flavour string
case "${LB_ARCHITECTURES}" in
arm64)
case "${LB_MODE}" in
ubuntu)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic}"
;;
*)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-arm64}"
;;
esac
;;
armel)
case "${LB_MODE}" in
ubuntu)
@ -520,9 +532,17 @@ Set_defaults ()
;;
armhf)
# armhf will have special images: one rootfs image and many additional kernel images.
# therefore we default to all available armhf flavours
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-armmp armmp-lpae}"
case "${LB_MODE}" in
ubuntu)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic}"
;;
*)
# armhf will have special images: one rootfs image and many additional kernel images.
# therefore we default to all available armhf flavours
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-armmp armmp-lpae}"
;;
esac
;;
amd64)