debian-cd-clone/tools/boot/stretch/boot-mipsel

76 lines
2.2 KiB
Bash
Executable File

#!/bin/bash
#
# boot-mipsel - (C) 2002 by Karsten Merker <merker@debian.org>
#
# You may copy, modify and distribute this under the terms of the GNU
# General Public License as published by the Free Software Foundation;
# either version 2 of the License, or (at your option) any later version.
#
# $1 is the CD number
# $2 is the temporary CD build dir
. $BASEDIR/tools/boot/$DI_CODENAME/common.sh
set -e
N=$1
CDROOT=$2
if [ "$DI_WWW_HOME" = "default" ];then
DI_WWW_HOME="https://d-i.debian.org/daily-images/mipsel/daily"
try_di_image_cache
fi
cd $CDROOT/..
add_mkisofs_opt $CDROOT/../$N.mkisofs_opts "-J -joliet-long"
# Mipsel is currently not bootable in stretch, so bail out here
echo "Mipsel booting disabled, check with Sledge or fjp"
exit 0
# Only disks 1 bootable
if [ $NN != 1 ]; then
exit 0
fi
DELODEB=$(find_pkg_file delo)
if [ -z "$DELODEB" ] ; then
echo "ERROR: the delo package is required." >&2
exit 1
fi
(dpkg --fsys-tarfile "$MIRROR/$DELODEB" | \
tar xf - -C . ./boot/delo.2nd)
mkdir -p $CDROOT/boot
mv boot/delo.2nd $CDROOT/boot/delo.2nd
if [ -n "$ARCHIVE_EXTRACTED_SOURCES" ]; then
echo $DELODEB >> $CDDIR/../$N.pkgs_extracted
find_pkg_file delo source >> $CDDIR/../$N.pkgs_extracted
fi
install -m 644 -D $BASEDIR/data/stretch/delo.conf "$CDROOT"/etc/delo.conf
if [ ! "$DI_WWW_HOME" ];then
if [ ! "$DI_DIR" ];then
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/decstation/cdrom/"
if [ ! -e $DI_DIR ] ; then
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/cdrom/"
fi
fi
else
DI_DIR="."
$WGET "$DI_WWW_HOME" -O di.dir
r3k=$(sed -n 's/.*a href="\(vmlinux-.*-r3k-kn02\)".*/\1/ip' di.dir)
r4k=$(sed -n 's/.*a href="\(vmlinux-.*-r4k-kn04\)".*/\1/ip' di.dir)
$WGET "$DI_WWW_HOME/$r3k" -O vmlinux-x-r3k-kn02
$WGET "$DI_WWW_HOME/$r4k" -O vmlinux-x-r4k-kn04
$WGET "$DI_WWW_HOME/initrd.gz"
fi
cp "$DI_DIR"/initrd.gz "$CDROOT/boot/initrd.gz"
cp "$DI_DIR"/vmlinux-*-r3k-kn02 "$CDROOT/boot/vmlinux-r3k-kn02"
cp "$DI_DIR"/vmlinux-*-r4k-kn04 "$CDROOT/boot/vmlinux-r4k-kn04"
add_mkisofs_opt $CDROOT/../$N.mkisofs_opts "-mipsel-boot boot/delo.2nd"
exit 0