arm-sdk

os build toolkit for various embedded devices
git clone https://git.parazyd.org/arm-sdk
Log | Files | Refs | Submodules | README | LICENSE

commit d23ae63e6af7c813acfc23dbf3cac5abd3f4075e
parent 2cf63c0ee5f23f2f83418c5f88e2d7e8ef75dff0
Author: parazyd <parazyd@dyne.org>
Date:   Fri, 27 Oct 2017 22:15:37 +0200

properly remove qemu static binaries from strapdir

Diffstat:
Mlib/helpers | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/lib/helpers b/lib/helpers @@ -93,7 +93,7 @@ copy-root-overlay() { postbuild-clean() { fn postbuild-clean - req=(qemu_bin strapdir release) + req=(strapdir release) ckreq || return 1 case "$release" in @@ -119,5 +119,8 @@ updatedb EOF chroot-script -d postbuild || zerr - sudo rm -f $strapdir/$qemu_bin + sudo rm -f \ + "$strapdir/$armel_qemu_bin" \ + "$strapdir/$armhf_qemu_bin" \ + "$strapdir/$arm64_qemu_bin" }