Don't install more than one kernel image when building minimal or stripped images.
This commit is contained in:
parent
ae5b6c08b3
commit
30bac7a328
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue