diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/binary_debian-installer | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/build/binary_debian-installer b/scripts/build/binary_debian-installer index 1a8543913..9720961cf 100755 --- a/scripts/build/binary_debian-installer +++ b/scripts/build/binary_debian-installer @@ -357,7 +357,14 @@ then case "${LB_MODE}" in 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 ;; *) |