From 9815b0abe305e1c3f5a894f0600eb3937b87f62a Mon Sep 17 00:00:00 2001 From: Steve McIntyre Date: Tue, 2 May 2017 23:43:15 +0100 Subject: [PATCH] Add stub for mips64el boot support, so we can build images for it --- debian/changelog | 1 + tools/boot/stretch/boot-mips64el | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100755 tools/boot/stretch/boot-mips64el diff --git a/debian/changelog b/debian/changelog index f11237a4..e8e64e1f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ debian-cd (3.1.20) UNRELEASED; urgency=medium [ Steve McIntyre ] * Add https bits to tools/generate_di+k_list (#855035) * Fix missing full path for cztz call in tools/grab_md5 (Closes: #855174) + * Add stub for mips64el boot support, so we can build images for it [ Samuel Thibault ] * Add support for grub submenu hotkeys. diff --git a/tools/boot/stretch/boot-mips64el b/tools/boot/stretch/boot-mips64el new file mode 100755 index 00000000..b9387268 --- /dev/null +++ b/tools/boot/stretch/boot-mips64el @@ -0,0 +1,25 @@ +#!/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 + +# Mips64el is currently not bootable in stretch, so bail out here +echo "Mips64el booting disabled, check Sledge" +exit 0