diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-01-26 06:30:28 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-02-07 06:40:58 +0100 |
commit | 0fca3824346eb54f55d7da40b011cd6163c5eb01 (patch) | |
tree | 2b4d9af05ef5d3816e9444278579ea85f7d60e1a /scripts/build | |
parent | ac77c553505ea9f44aa97bbc2fa9ce5ae2111097 (diff) | |
download | vyos-live-build-0fca3824346eb54f55d7da40b011cd6163c5eb01.tar.gz vyos-live-build-0fca3824346eb54f55d7da40b011cd6163c5eb01.zip |
Switching to default to linux-image-586 on i386.
Diffstat (limited to 'scripts/build')
-rwxr-xr-x | scripts/build/installer_debian-installer | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/build/installer_debian-installer b/scripts/build/installer_debian-installer index 4d5305484..b09005e04 100755 --- a/scripts/build/installer_debian-installer +++ b/scripts/build/installer_debian-installer @@ -369,7 +369,15 @@ then ;; *) - DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-486 linux-image-686-pae" + case "${LB_PARENT_DISTRIBUTION}" in + wheezy) + DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-486 linux-image-686-pae" + ;; + + *) + DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-586 linux-image-686-pae" + ;; + esac ;; esac ;; |