diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/lb_binary_debian-installer | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/build/lb_binary_debian-installer b/scripts/build/lb_binary_debian-installer index 9913cfb86..8c74d894f 100755 --- a/scripts/build/lb_binary_debian-installer +++ b/scripts/build/lb_binary_debian-installer @@ -365,6 +365,20 @@ then DI_PACKAGES="${DI_PACKAGES} busybox cryptsetup lvm2" + case "${LB_MODE}" in + debian) + case "${LB_DISTRIBUTION}" in + lenny) + DI_PACKAGES="${DI_PACKAGES} console-setup" + ;; + + *) + DI_PACKAGES="${DI_PACKAGES} console-setup keyboard-configuration" + ;; + esac + ;; + esac + # Set apt command prefix _LB_APT_COMMAND="apt-get ${APT_OPTIONS} -o Dir::Cache=/binary.deb -o APT::Install-Recommends=false --download-only" |