diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-01-17 07:24:16 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-01-17 07:24:16 +0100 |
commit | 52cf84dd056e77dd7f0b148f454c5dac4a115dae (patch) | |
tree | 6549d9868a0f0c1f9ace71d2ed33ff2233ee95f3 | |
parent | 9383ad916321c8804beb90d96329bf52ffd9cad6 (diff) | |
download | debvm-52cf84dd056e77dd7f0b148f454c5dac4a115dae.tar.gz |
debvm-create: install linux-image-generic as an alternative kernel name
This is used on Ubuntu and thus helps with !20.
-rwxr-xr-x | bin/debvm-create | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/debvm-create b/bin/debvm-create index be9ce08..8e6ecd5 100755 --- a/bin/debvm-create +++ b/bin/debvm-create @@ -261,7 +261,7 @@ case "$ARCHITECTURE" in esac if ! check_skip kernel; then - set -- "--include=?or(?exact-name(linux-image-cloud-$KERNEL_ARCH),?exact-name(linux-image-$KERNEL_ARCH))" "$@" + set -- "--include=?or(?exact-name(linux-image-cloud-$KERNEL_ARCH),?exact-name(linux-image-$KERNEL_ARCH),?exact-name(linux-image-generic))" "$@" fi if test -n "$SSHKEY"; then |