diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-07-04 22:26:35 +0100 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-07-04 22:26:35 +0100 |
commit | 6c1152882976cd27b53d4478830cdc5a0d2f5d0e (patch) | |
tree | 0ddf0b7a941f26fa982997d6c49cc44e55da9a8f /helpers | |
parent | 70925408b65494d71b3546510cbfc54040f752f8 (diff) | |
download | vyos-live-build-6c1152882976cd27b53d4478830cdc5a0d2f5d0e.tar.gz vyos-live-build-6c1152882976cd27b53d4478830cdc5a0d2f5d0e.zip |
Only consider linux-image-2.6-prep powerpc kernel image on Etch.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_debian-installer | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 208d4b829..2a795214f 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -340,7 +340,12 @@ then ;; powerpc) - DI_PACKAGES="linux-image-2.6-powerpc linux-image-2.6-powerpc64 linux-image-2.6-powerpc-smp linux-image-2.6-prep yaboot" # FIXME bootloader? + DI_PACKAGES="linux-image-2.6-powerpc linux-image-2.6-powerpc64 linux-image-2.6-powerpc-smp yaboot" # FIXME bootloader? + + if [ "${LH_DISTRIBUTION}" = "etch" ] + then + DI_PACKAGES="${DI_PACKAGES} linux-image-2.6-prep" + fi ;; esac |