2015-04-27 16:14:26 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# boot-mips
|
|
|
|
#
|
|
|
|
# $1 is the CD number
|
|
|
|
# $2 is the temporary CD build dir
|
|
|
|
|
|
|
|
# genisovh is used to make ISOs bootable on mips.
|
|
|
|
|
|
|
|
. $BASEDIR/tools/boot/$DI_CODENAME/common.sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
N=$1
|
2015-09-11 17:26:35 +00:00
|
|
|
CDDIR=$2
|
|
|
|
INSTALLDIR="install"
|
2015-04-27 16:14:26 +00:00
|
|
|
if [ "$DI_WWW_HOME" = "default" ];then
|
2016-01-02 23:37:39 -01:00
|
|
|
DI_WWW_HOME="https://d-i.debian.org/daily-images/mips/daily/"
|
2015-04-27 16:14:26 +00:00
|
|
|
try_di_image_cache
|
|
|
|
fi
|
|
|
|
|
2015-09-11 17:26:35 +00:00
|
|
|
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J -joliet-long"
|
2015-04-27 16:14:26 +00:00
|
|
|
|
|
|
|
# Only disk 1* bootable
|
2017-05-03 09:40:34 +00:00
|
|
|
if [ $N != 1 ]; then
|
2015-04-27 16:14:26 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2017-05-03 09:51:13 +00:00
|
|
|
# This arch is currently not bootable directly from CD, and there's
|
2015-09-11 17:26:35 +00:00
|
|
|
# not a lot we can do about that. But add the needed files in the
|
2017-05-03 09:51:13 +00:00
|
|
|
# right place so that users can find them, at least
|
|
|
|
copy_arch_images
|