diff options
author | Daniel Baumann <daniel@debian.org> | 2011-07-19 10:51:20 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-07-19 10:51:20 +0200 |
commit | ef2752faab0697cc44036d89a5b4f6e08e3081f3 (patch) | |
tree | fde0ec3d6beaed1fd83f94d2ccf5bbd2ef4aecb2 /scripts/build/lb_binary_debian-installer | |
parent | b22984f698834f1b76af599075e145aab75bdf9a (diff) | |
download | vyos-live-build-ef2752faab0697cc44036d89a5b4f6e08e3081f3.tar.gz vyos-live-build-ef2752faab0697cc44036d89a5b4f6e08e3081f3.zip |
Adding kubuntu mode in order to have different defadefault hooks enabled for ubuntu and kubuntu (needed for #630088).
Diffstat (limited to 'scripts/build/lb_binary_debian-installer')
-rwxr-xr-x | scripts/build/lb_binary_debian-installer | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/lb_binary_debian-installer b/scripts/build/lb_binary_debian-installer index b193151ac..41376f7af 100755 --- a/scripts/build/lb_binary_debian-installer +++ b/scripts/build/lb_binary_debian-installer @@ -303,7 +303,7 @@ then DI_REQ_PACKAGES="lilo grub" case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic" ;; @@ -318,7 +318,7 @@ then DI_REQ_PACKAGES="elilo lilo grub" case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic" ;; @@ -331,7 +331,7 @@ then sparc) DI_REQ_PACKAGES="silo" case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) DI_PACKAGES="${DI_REQ_PACKAGES} linux-sparc64" ;; @@ -344,7 +344,7 @@ then powerpc) DI_REQ_PACKAGES="yaboot" case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-powerpc linux-image-powerpc64-smp" ;; |