Don't install more than one kernel image when building minimal or stripped images.

This commit is contained in:
Daniel Baumann 2008-09-03 11:02:30 +02:00
parent ae5b6c08b3
commit 30bac7a328
1 changed files with 18 additions and 2 deletions

View File

@ -391,7 +391,15 @@ Set_defaults ()
;;
i386)
LH_LINUX_FLAVOURS="486 686"
case "${LIST}" in
stripped|minimal)
LH_LINUX_FLAVOURS="486"
;;
*)
LH_LINUX_FLAVOURS="486 686"
;;
esac
;;
ia64)
@ -404,7 +412,15 @@ Set_defaults ()
;;
powerpc)
LH_LINUX_FLAVOURS="powerpc powerpc64"
case "${LIST}" in
stripped|minimal)
LH_LINUX_FLAVOURS="powerpc"
;;
*)
LH_LINUX_FLAVOURS="powerpc powerpc64"
;;
esac
;;
s390)