diff options
-rwxr-xr-x | debvm-create | 6 | ||||
-rwxr-xr-x | debvm-run | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debvm-create b/debvm-create index 8870e09..82a3547 100755 --- a/debvm-create +++ b/debvm-create @@ -95,6 +95,12 @@ case "$ARCHITECTURE" in i386) KERNEL_SUFFIX=-686-pae ;; + mips64el) + KERNEL_SUFFIX=-mips64r2el + ;; + mipsel) + KERNEL_SUFFIX=-mips32r2el + ;; ppc64el) KERNEL_SUFFIX=-powerpc64le ;; @@ -71,7 +71,7 @@ case "$VMARCH" in ;; esac case "$VMARCH" in - ppc64el) + mips*|ppc64el) KERNELLINK=vmlinux ;; *) |