Add initial support for arm64
Non-booting yet, copying and extending armhf for now.
This commit is contained in:
parent
d9504a3285
commit
049506d313
|
@ -4,6 +4,8 @@ debian-cd (3.1.16) UNRELEASED; urgency=medium
|
|||
* Fix changelog date for 3.1.15. Closes: #751814
|
||||
* Fix up Gnome CD set installing xfce - logic in boot menu creation was
|
||||
broken. Closes: #756774
|
||||
* Add trivial initial (non-booting) support for arm64, by copying and
|
||||
extending armhf for now.
|
||||
|
||||
[ Philipp Hahn ]
|
||||
* Fix word-splitting regexp in generate_di_list. Closes: #758512.
|
||||
|
|
|
@ -20,9 +20,14 @@ if [ "$DI_WWW_HOME" = "default" ];then
|
|||
# do *not* do that - these defs are parsed out by other scripts that
|
||||
# won't cope with that
|
||||
if [ "$ARCH" = armel ]; then
|
||||
DI_WWW_HOME="http://d-i.debian.org/daily-images/armel/daily"
|
||||
DI_WWW_HOME="http://d-i.debian.org/daily-images/armel/daily"
|
||||
elif [ "$ARCH" = armhf ]; then
|
||||
DI_WWW_HOME="http://d-i.debian.org/daily-images/armhf/daily"
|
||||
elif [ "$ARCH" = arm64 ]; then
|
||||
DI_WWW_HOME="http://d-i.debian.org/daily-images/arm64/daily"
|
||||
else
|
||||
DI_WWW_HOME="http://d-i.debian.org/daily-images/armhf/daily"
|
||||
echo "$0: unknown arch $ARCH; abort"
|
||||
exit 1
|
||||
fi
|
||||
try_di_image_cache
|
||||
fi
|
||||
|
@ -32,5 +37,5 @@ cd $CDDIR/..
|
|||
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J -joliet-long"
|
||||
|
||||
# Arm* is currently not bootable directly from CD in jessie, so bail out here
|
||||
echo "Armel/armhf booting disabled, check with Sledge"
|
||||
echo "$ARCH booting disabled for $CODENAME, check with Sledge"
|
||||
exit 0
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/bash
|
||||
. $BASEDIR/tools/boot/$DI_CODENAME/boot-arm
|
|
@ -198,6 +198,13 @@ linux-image-mx5
|
|||
linux-image-omap
|
||||
#endif
|
||||
|
||||
#ifdef ARCH_arm64
|
||||
initramfs-tools
|
||||
busybox
|
||||
flash-kernel
|
||||
linux-image-arm64
|
||||
#endif
|
||||
|
||||
#ifdef ARCH_sparc
|
||||
initramfs-tools
|
||||
busybox
|
||||
|
|
Loading…
Reference in New Issue