* Audited all the apt-install commands in d-i, and added these packages
to generate_di+k_list: pcmciautils, dosfsutils (barely needed), udev, installation-report, palo, elilo, sibyl, sibyl, colo, powerpc-utils, silo, vmelilo. Some of the bootloaders were alredy included via debootstrap, but as they are being removed from there, it's better to add them explicitly here.
This commit is contained in:
parent
3f14e1bb2f
commit
06b686b303
|
@ -129,8 +129,14 @@ debian-cd (2.2.24) UNRELEASED; urgency=low
|
|||
insane cruft already in the Makefile. (debootstrap no longer installs an
|
||||
MTA, so this should save some useful space on the netinsts)
|
||||
* Remove lvm10 from generate_di+k_list, d-i uses lvm2 now.
|
||||
* Audited all the apt-install commands in d-i, and added these packages
|
||||
to generate_di+k_list: pcmciautils, dosfsutils (barely needed),
|
||||
udev, installation-report, palo, elilo, sibyl, sibyl, colo, powerpc-utils,
|
||||
silo, vmelilo.
|
||||
Some of the bootloaders were alredy included via debootstrap, but as they
|
||||
are being removed from there, it's better to add them explicitly here.
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Mon, 26 Dec 2005 23:40:19 -0500
|
||||
-- Joey Hess <joeyh@debian.org> Tue, 27 Dec 2005 00:14:20 -0500
|
||||
|
||||
debian-cd (2.2.23) unstable; urgency=low
|
||||
|
||||
|
|
|
@ -6,9 +6,11 @@
|
|||
|
||||
DATE=`date`
|
||||
cat > debian-installer+kernel-$DI_CODENAME << EOF
|
||||
/* These files + the ones needed by debootstrap are the ones needed for
|
||||
* debian-installer to be able to complete the installation of the base
|
||||
* system.
|
||||
/* These packages + the ones needed by debootstrap are the ones needed for
|
||||
* debian-installer to be able to install a base Debian system.
|
||||
*
|
||||
* These packages are installed by various parts of the debian-installer,
|
||||
* mostly via its apt-install command.
|
||||
*
|
||||
* This list can be generated with the command:
|
||||
* ../tools/generate_di+k_list
|
||||
|
@ -34,9 +36,11 @@ iso-codes
|
|||
console-cyrillic
|
||||
console-terminus
|
||||
pcmcia-cs
|
||||
pcmciautils
|
||||
wireless-tools
|
||||
xfsprogs
|
||||
jfsutils
|
||||
dosfsutils
|
||||
reiserfsprogs
|
||||
libfribidi0
|
||||
localization-config
|
||||
|
@ -44,6 +48,9 @@ acpid
|
|||
initramfs-tools
|
||||
ppp
|
||||
pppoeconf
|
||||
udev
|
||||
installation-report
|
||||
|
||||
|
||||
#ifdef ARCH_i386
|
||||
discover
|
||||
|
@ -84,6 +91,7 @@ linux-image-2.6-parisc
|
|||
linux-image-2.6-parisc-smp
|
||||
linux-image-2.6-parisc64
|
||||
linux-image-2.6-parisc64-smp
|
||||
palo
|
||||
#endif
|
||||
|
||||
#ifdef ARCH_ia64
|
||||
|
@ -93,10 +101,12 @@ linux-image-2.6-itanium
|
|||
linux-image-2.6-itanium-smp
|
||||
linux-image-2.6-mckinley
|
||||
linux-image-2.6-mckinley-smp
|
||||
elilo
|
||||
#endif
|
||||
|
||||
#ifdef ARCH_mips
|
||||
arcboot
|
||||
sibyl
|
||||
EOF
|
||||
|
||||
# Only include mips kernels that d-i base-installer installs.
|
||||
|
@ -113,6 +123,8 @@ cat >> debian-installer+kernel-$DI_CODENAME << EOF
|
|||
#endif
|
||||
|
||||
#ifdef ARCH_mipsel
|
||||
sibyl
|
||||
colo
|
||||
delo
|
||||
EOF
|
||||
|
||||
|
@ -133,6 +145,7 @@ cat >> debian-installer+kernel-$DI_CODENAME << EOF
|
|||
discover1
|
||||
quik
|
||||
yaboot
|
||||
powerpc-utils
|
||||
hfsutils
|
||||
mkvmlinuz
|
||||
module-init-tools
|
||||
|
@ -158,6 +171,7 @@ cat >> debian-installer+kernel-$DI_CODENAME << EOF
|
|||
#endif
|
||||
|
||||
#ifdef ARCH_sparc
|
||||
silo
|
||||
discover1
|
||||
initrd-tools
|
||||
linux-image-2.6-sparc64
|
||||
|
@ -170,6 +184,7 @@ kernel-image-2.4-sparc64-smp
|
|||
|
||||
#ifdef ARCH_m68k
|
||||
fileutils
|
||||
vmelilo
|
||||
EOF
|
||||
|
||||
# Get all the latest 2.2 for mac kernel
|
||||
|
|
Loading…
Reference in New Issue