Codebase list live-build / b4d85ef
Update d-i setup code to use linux-image-586 instead of linux-image-486 for newer versions of Kali. Raphaël Hertzog 8 years ago
3 changed file(s) with 36 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 live-build (4.0.4-1kali4) kali-dev; urgency=medium
1
2 * Update d-i setup code to use linux-image-586 instead of linux-image-486
3 for newer versions of Kali.
4
5 -- Raphaël Hertzog <[email protected]> Thu, 18 Jun 2015 10:42:53 +0200
6
07 live-build (4.0.4-1kali3) kali-dev; urgency=medium
18
29 * Fix EFI patch to properly include syslinux "libraries" which
0 From: =?utf-8?q?Rapha=C3=ABl_Hertzog?= <[email protected]>
1 Date: Thu, 18 Jun 2015 10:38:42 +0200
2 Subject: Use linux-image-586 instead of linux-image-486 for kali 2
3
4 ---
5 scripts/build/installer_debian-installer | 9 ++++++++-
6 1 file changed, 8 insertions(+), 1 deletion(-)
7
8 diff --git a/scripts/build/installer_debian-installer b/scripts/build/installer_debian-installer
9 index 5f6b3ca..1f137eb 100755
10 --- a/scripts/build/installer_debian-installer
11 +++ b/scripts/build/installer_debian-installer
12 @@ -369,7 +369,14 @@ then
13 ;;
14
15 *)
16 - DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-486 linux-image-686-pae"
17 + case "${LB_DISTRIBUTION}" in
18 + kali-dev|kali-rolling|kali-next|sana)
19 + DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-586 linux-image-686-pae"
20 + ;;
21 + *)
22 + DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-486 linux-image-686-pae"
23 + ;;
24 + esac
25 ;;
26 esac
27 ;;
11 Skip-comments-in-package-lists.patch
22 Drop-the-ixp4xx-flavour-on-armel-as-Kali-does-not-ha.patch
33 Better-handle-empty-package-lists.patch
4 Use-linux-image-586-instead-of-linux-image-486-for-k.patch