diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2016-09-24 17:21:43 +0200 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2016-09-24 17:21:43 +0200 |
commit | 8af0cf2d1510af289880281b5cacea771f926634 (patch) | |
tree | dc493efac818269eab58392ba6a6368c16cea895 | |
parent | 758deda76c84f29478f674e5e366e152376dfbad (diff) | |
download | hrmpf-8af0cf2d1510af289880281b5cacea771f926634.tar.gz hrmpf-8af0cf2d1510af289880281b5cacea771f926634.tar.xz hrmpf-8af0cf2d1510af289880281b5cacea771f926634.zip |
mkrootfs.sh.in: fix for odroid-c2.
-rw-r--r-- | mkrootfs.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkrootfs.sh.in b/mkrootfs.sh.in index 9425d0b..f902c1d 100644 --- a/mkrootfs.sh.in +++ b/mkrootfs.sh.in @@ -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!";; |