Add hurd-amd64 case

This commit is contained in:
Samuel Thibault 2023-11-13 00:23:48 +01:00
parent bdc946f3d8
commit b1f66d7191
3 changed files with 6 additions and 1 deletions

View File

@ -70,7 +70,7 @@ DEBOOTSTRAP_OPTS=--no-check-gpg
endif
## Additional packages required for Debian Ports
DEBIAN_PORTS_ARCHES=alpha hppa ia64 hurd-i386 m68k powerpc powerpcspe ppc64 riscv64 sh4 sparc sparc64 x32
DEBIAN_PORTS_ARCHES=alpha hppa ia64 hurd-amd64 hurd-i386 m68k powerpc powerpcspe ppc64 riscv64 sh4 sparc sparc64 x32
ifneq (,$(filter $(DEBIAN_PORTS_ARCHES),$(ARCHES)))
export BASE_INCLUDE := $(BASEDIR)/data/debian_ports $(BASE_INCLUDE)
endif

3
debian/changelog vendored
View File

@ -12,6 +12,9 @@ debian-cd (3.2.2) UNRELEASED; urgency=medium
* Update DebianEdu installer banner and syslinux splash image
for bookworm
[ Samuel Thibault ]
* Add hurd-amd64 case.
-- Steve McIntyre <93sam@debian.org> Mon, 12 Jun 2023 08:36:50 +0100
debian-cd (3.2.1) unstable; urgency=medium

View File

@ -81,6 +81,8 @@ if [ $NUM_ARCHES = 1 ] ; then
export VOLID="$VOLID_BASE f-amd64 $DISKNUMSTRING" ;;
hurd-i386)
export VOLID="$VOLID_BASE h-i386 $DISKNUMSTRING" ;;
hurd-amd64)
export VOLID="$VOLID_BASE h-amd64 $DISKNUMSTRING" ;;
*)
export VOLID="$VOLID_BASE $ARCHES $DISKNUMSTRING" ;;
esac