Add gtk initrd to hurd-i386 images. Closes: #635260
Thanks to Samuel Thibault for the patch.
This commit is contained in:
parent
e14db2ce84
commit
c92c20ad36
|
@ -12,6 +12,8 @@ debian-cd (3.1.9) UNRELEASED; urgency=low
|
|||
CD/DVD sets. Closes: #678064
|
||||
* Fix installer priority handling on pegasos. Closes: #679798.
|
||||
Thanks to Milan Kupcevic for the patch.
|
||||
* Add gtk initrd to hurd-i386 images. Closes: #635260
|
||||
Thanks to Samuel Thibault for the patch.
|
||||
|
||||
-- Steve McIntyre <93sam@debian.org> Tue, 29 May 2012 06:20:20 +0800
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ if [ $N != 1 ]; then
|
|||
fi
|
||||
|
||||
# Download boot images.
|
||||
BOOT_IMAGES="cdrom/debian-cd_info.tar.gz cdrom/gnumach.gz cdrom/initrd.gz cdrom/ext2fs.static cdrom/ld.so.1"
|
||||
BOOT_IMAGES="cdrom/debian-cd_info.tar.gz cdrom/gnumach.gz cdrom/initrd.gz cdrom/gtk/initrd.gz cdrom/ext2fs.static cdrom/ld.so.1"
|
||||
|
||||
for image in $BOOT_IMAGES; do
|
||||
if [ ! -e "$image" ]; then
|
||||
|
@ -55,8 +55,10 @@ done
|
|||
|
||||
# Install kernel and initrd
|
||||
mkdir -p $CDDIR/boot/kernel/
|
||||
mkdir -p $CDDIR/boot/gtk/
|
||||
cp "cdrom/gnumach.gz" "$CDDIR/boot/kernel/gnumach.gz"
|
||||
cp "cdrom/initrd.gz" "$CDDIR/boot/initrd.gz"
|
||||
cp "cdrom/gtk/initrd.gz" "$CDDIR/boot/gtk/initrd.gz"
|
||||
cp "cdrom/ext2fs.static" "$CDDIR/boot/kernel/ext2fs.static"
|
||||
cp "cdrom/ld.so.1" "$CDDIR/boot/kernel/ld.so.1"
|
||||
|
||||
|
|
Loading…
Reference in New Issue