diff options
author | Johannes Schauer Marin Rodrigues <josch@mister-muffin.de> | 2022-12-21 21:12:44 +0100 |
---|---|---|
committer | Johannes Schauer Marin Rodrigues <josch@mister-muffin.de> | 2022-12-21 21:24:39 +0100 |
commit | 048f9ecba6552d68b80396d74aae9cbdd7683bab (patch) | |
tree | 074e1396b966a7c830d51e82d33178797e3b98d8 | |
parent | 0eb3a0d88eddb777aaa39c7b1572e696a221a210 (diff) | |
download | debvm-048f9ecba6552d68b80396d74aae9cbdd7683bab.tar.gz |
debvm-create: use cloud kernel for arm64 as well
-rwxr-xr-x | debvm-create | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debvm-create b/debvm-create index 6f0c33c..11e145c 100755 --- a/debvm-create +++ b/debvm-create @@ -83,10 +83,10 @@ fi KERNEL_SUFFIX=-$ARCHITECTURE case "$ARCHITECTURE" in - amd64) - KERNEL_SUFFIX=-cloud-amd64 + amd64|arm64) + KERNEL_SUFFIX="-cloud-$ARCHITECTURE" if test "$SUITE" = jessie || test "$SUITE" = stretch; then - KERNEL_SUFFIX=-amd64 + KERNEL_SUFFIX="-$ARCHITECTURE" fi ;; armhf) |