diff options
author | Rob Landley <rob@landley.net> | 2020-04-08 22:16:44 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-04-08 22:16:44 -0500 |
commit | 4f1e357b5d2064b433006bd707a2e7307d79542a (patch) | |
tree | d15ffa2b48c79cf984b8b22c8a3f62cb602ae3a6 /scripts | |
parent | 8f737e3af0886e287153a24bd08e2086a4eaf710 (diff) | |
download | toybox-4f1e357b5d2064b433006bd707a2e7307d79542a.tar.gz |
Typo.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/mkroot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mkroot.sh b/scripts/mkroot.sh index 76c60ed0..40ecc4ec 100755 --- a/scripts/mkroot.sh +++ b/scripts/mkroot.sh @@ -217,7 +217,7 @@ else # Build kernel. Copy config, device tree binary, and kernel binary to output make ARCH=$KARCH CROSS_COMPILE="$CROSS_COMPILE" -j $(nproc) && cp .config "$OUTPUT/linux-fullconfig" || exit 1 - [ ! -z "$DTB" ] && { cp "$DTB" "$OUTPUT")" || exit 1 ;} + [ ! -z "$DTB" ] && { cp "$DTB" "$OUTPUT" || exit 1 ;} cp "$VMLINUX" "$OUTPUT" && cd .. && rm -rf linux && popd || exit 1 fi |