mkrootfs.sh.in: fix for odroid-c2.

This commit is contained in:
Christian Neukirchen 2016-09-24 17:21:43 +02:00
parent 758deda76c
commit 8af0cf2d15
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ case "$PLATFORM" in
rpi*) SUBPLATFORM=${PLATFORM%-*}; QEMU_BIN=qemu-arm-static;;
usbarmory*) SUBPLATFORM=${PLATFORM%-*}; QEMU_BIN=qemu-arm-static;;
ci20*) SUBPLATFORM=${PLATFORM%-*}; QEMU_BIN=qemu-mipsel-static;;
odroid-c2*) SUBPLATFORM=${PLATFORM%-*}; QEMU_BIN=qemu-aarch64-static;;
odroid-c2*) SUBPLATFORM=${PLATFORM%-musl}; QEMU_BIN=qemu-aarch64-static;;
i686*) QEMU_BIN=qemu-i386-static;;
x86_64*) QEMU_BIN=qemu-x86_64-static;;
*) die "$PROGNAME: invalid platform!";;