Skip to content

Instantly share code, notes, and snippets.

@epinna
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save epinna/10fb47bf64d475c25327 to your computer and use it in GitHub Desktop.
Save epinna/10fb47bf64d475c25327 to your computer and use it in GitHub Desktop.
#!/bin/bash
ROOTFS='.'
EMU_BIN_NAME='qemu-arm-static'
EMU_BIN_FOLDER='/usr/bin/'
SHELL='/bin/sh'
cd "${ROOTFS}"
sudo mount -t proc proc proc/
sudo mount --rbind /sys sys/
sudo mount --rbind /dev dev/
cp "${EMU_BIN_FOLDER}/${EMU_BIN_NAME}" "${ROOTFS}"
sudo chroot ${ROOTFS} ./${EMU_BIN_NAME} ${SHELL}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment