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
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27
1 changed files with 3 additions and 2 deletions

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 = ''