Using i386 -generic-pae kernel flavour on Ubuntu precise.

This commit is contained in:
Colin Watson 2012-09-30 09:28:16 +02:00 committed by Daniel Baumann
parent 7ae630cc43
commit 01b64bf2b9
2 changed files with 16 additions and 2 deletions

View File

@ -717,7 +717,14 @@ Set_defaults ()
;; ;;
ubuntu|kubuntu) ubuntu|kubuntu)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic}" case "${LB_DISTRIBUTION}" in
precise)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic-pae}"
;;
*)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic}"
;;
esac
;; ;;
*) *)

View File

@ -357,7 +357,14 @@ then
case "${LB_MODE}" in case "${LB_MODE}" in
ubuntu|kubuntu) ubuntu|kubuntu)
DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic" case "${LB_DISTRIBUTION}" in
precise)
DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic-pae"
;;
*)
DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic"
;;
esac
;; ;;
*) *)