diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-03-06 09:57:42 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-03-06 09:57:42 +0100 |
commit | dc972d6e1b1afb3f88319f55dc410c57c3f58563 (patch) | |
tree | e5910d91ebfd8587ad8e7874c439519255627a0b /bin | |
parent | e22643bddea7a3e9e397b18614fcf51195f19f99 (diff) | |
download | debvm-dc972d6e1b1afb3f88319f55dc410c57c3f58563.tar.gz |
support a mips64el kernel in a mipsel image via multiarch
Reported-by: Fabian Gruenbichler
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/debvm-run | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/debvm-run b/bin/debvm-run index cc82fe1..81114e6 100755 --- a/bin/debvm-run +++ b/bin/debvm-run @@ -225,6 +225,7 @@ if command -v file >/dev/null 2>&1; then # actually inspect the kernel version here, which happens to # include amd64 for Debian kernels. "i386:Linux kernel x86 boot executable bzImage, version "*"-amd64 "*) KERNELARCH=amd64 ;; + "mipsel:ELF 64-bit LSB executable,"*) KERNELARCH=mips64el ;; esac fi |