Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

00-run.sh 266 B

il y a 4 ans
123456789
  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