busybox-sandbox-shell: Fix build on RISC-V

This commit is contained in:
Shea Levy
2018-02-18 01:48:07 -05:00
parent f3f79bd6c6
commit a933aa9a8d

View File

@@ -1,8 +1,9 @@
{ busybox }:
{ busybox, hostPlatform }:
# Minimal shell for use as basic /bin/sh in sandbox builds
busybox.override {
useMusl = true;
# musl roadmap has RISC-V support projected for 1.1.20
useMusl = !hostPlatform.isRiscV;
enableStatic = true;
enableMinimal = true;
extraConfig = ''