5 lines
127 B
Bash
Executable file
5 lines
127 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
|