You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
266 B

  1. #!/bin/bash -e
  2. if [ ! -x "${ROOTFS_DIR}/usr/bin/qemu-arm-static" ]; then
  3. cp /usr/bin/qemu-arm-static "${ROOTFS_DIR}/usr/bin/"
  4. fi
  5. if [ -e "${ROOTFS_DIR}/etc/ld.so.preload" ]; then
  6. mv "${ROOTFS_DIR}/etc/ld.so.preload" "${ROOTFS_DIR}/etc/ld.so.preload.disabled"
  7. fi