6 lines
131 B
Bash
Executable File
6 lines
131 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
if [ ! -x "${ROOTFS_DIR}/usr/bin/qemu-arm-static" ]; then
|
|
cp /usr/bin/qemu-arm-static "${ROOTFS_DIR}/usr/bin/"
|
|
fi
|