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 changelog date for 3.1.15. Closes: #751814
|
||||||
* Fix up Gnome CD set installing xfce - logic in boot menu creation was
|
* Fix up Gnome CD set installing xfce - logic in boot menu creation was
|
||||||
broken. Closes: #756774
|
broken. Closes: #756774
|
||||||
|
* Add trivial initial (non-booting) support for arm64, by copying and
|
||||||
|
extending armhf for now.
|
||||||
|
|
||||||
[ Philipp Hahn ]
|
[ Philipp Hahn ]
|
||||||
* Fix word-splitting regexp in generate_di_list. Closes: #758512.
|
* 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
|
# do *not* do that - these defs are parsed out by other scripts that
|
||||||
# won't cope with that
|
# won't cope with that
|
||||||
if [ "$ARCH" = armel ]; then
|
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
|
else
|
||||||
DI_WWW_HOME="http://d-i.debian.org/daily-images/armhf/daily"
|
echo "$0: unknown arch $ARCH; abort"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
try_di_image_cache
|
try_di_image_cache
|
||||||
fi
|
fi
|
||||||
|
@ -32,5 +37,5 @@ cd $CDDIR/..
|
||||||
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J -joliet-long"
|
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J -joliet-long"
|
||||||
|
|
||||||
# Arm* is currently not bootable directly from CD in jessie, so bail out here
|
# 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
|
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
|
linux-image-omap
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ARCH_arm64
|
||||||
|
initramfs-tools
|
||||||
|
busybox
|
||||||
|
flash-kernel
|
||||||
|
linux-image-arm64
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef ARCH_sparc
|
#ifdef ARCH_sparc
|
||||||
initramfs-tools
|
initramfs-tools
|
||||||
busybox
|
busybox
|
||||||
|
|
Loading…
Reference in New Issue