Update linux flavours for armhf/armel.

With linux 3.16 in Debian Jessie, armmp and armmp-lpae are the
only armhf flavours availale. On armel, we lost the support of
the iop32x flavour.
This commit is contained in:
Raphaël Hertzog 2014-12-09 17:30:39 +01:00 committed by Daniel Baumann
parent e9c1580178
commit 571c89447b
1 changed files with 17 additions and 3 deletions

View File

@ -525,15 +525,29 @@ Set_defaults ()
*)
# armel will have special images: one rootfs image and many additional kernel images.
# therefore we default to all available armel flavours
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-iop32x ixp4xx kirkwood orion5x versatile}"
case "${LB_DISTRIBUTION}" in
wheezy)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-iop32x ixp4xx kirkwood orion5x versatile}"
;;
*)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-ixp4xx kirkwood orion5x versatile}"
;;
esac
;;
esac
;;
armhf)
# armhf will have special images: one rootfs image and many additional kernel images.
# therefore we default to all available armel flavours
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-mx5 omap}"
# therefore we default to all available armhf flavours
case "${LB_DISTRIBUTION}" in
wheezy)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-mx5 omap}"
;;
*)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-armmp armmp-lpae}"
;;
esac
;;
amd64)