31 lines
837 B
Bash
Executable File
31 lines
837 B
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"
|
|
|
|
# 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
|