Last active
October 17, 2017 19:21
-
-
Save C47D/f7870c8b0ccf9b4b9943e33c98548080 to your computer and use it in GitHub Desktop.
qemu start script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
qemu-system-aarch64 \ | |
-machine virt \ | |
-cpu cortex-a57 \ | |
-nographic -smp 1 \ | |
-m 2048 \ | |
-kernel ./linux-4.8.11/arch/arm64/boot/Image \ | |
--append "console=ttyAMA0" \ | |
$1 $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment