27 lines
758 B
Bash
Executable File
27 lines
758 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# boot-mips64el - (C) 2017 Steve McIntyre <93sam@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
|
|
|
|
# This arch is currently not bootable directly from CD, and there's
|
|
# not a lot we can do about that. But add the needed files in the
|
|
# right place so that users can find them, at least
|
|
copy_arch_images
|