Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. qemu-aarch64 -m 512 -k linux-system-foundation.axf -hda saucy-arm64-multiarch.img
  2.  
  3. usage: qemu-aarch64 [options] program [arguments...]
  4. Linux CPU emulator (compiled for aarch64 emulation)
  5.  
  6. Options and associated environment variables:
  7.  
  8. Argument Env-variable Description
  9. -h print this help
  10. -g port QEMU_GDB wait gdb connection to 'port'
  11. -L path QEMU_LD_PREFIX set the elf interpreter prefix to 'path'
  12. -s size QEMU_STACK_SIZE set the stack size to 'size' bytes
  13. -cpu model QEMU_CPU select CPU (-cpu help for list)
  14. -E var=value QEMU_SET_ENV sets targets environment variable (see below)
  15. -U var QEMU_UNSET_ENV unsets targets environment variable (see below)
  16. -0 argv0 QEMU_ARGV0 forces target process argv[0] to be 'argv0'
  17. -r uname QEMU_UNAME set qemu uname release string to 'uname'
  18. -B address QEMU_GUEST_BASE set guest_base address to 'address'
  19. -R size QEMU_RESERVED_VA reserve 'size' bytes for guest virtual address space
  20. -d item[,...] QEMU_LOG enable logging of specified items (use '-d help' for a list of items)
  21. -D logfile QEMU_LOG_FILENAME write logs to 'logfile' (default stderr)
  22. -p pagesize QEMU_PAGESIZE set the host page size to 'pagesize'
  23. -singlestep QEMU_SINGLESTEP run in singlestep mode
  24. -strace QEMU_STRACE log system calls
  25. -version QEMU_VERSION display version information and exit
  26.  
  27. Defaults:
  28. QEMU_LD_PREFIX = /etc/qemu-binfmt/aarch64
  29. QEMU_STACK_SIZE = 8388608 byte
  30.  
  31. You can use -E and -U options or the QEMU_SET_ENV and
  32. QEMU_UNSET_ENV environment variables to set and unset
  33. environment variables for the target process.
  34. It is possible to provide several variables by separating them
  35. by commas in getsubopt(3) style. Additionally it is possible to
  36. provide the -E and -U options multiple times.
  37. The following lines are equivalent:
  38. -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG
  39. -E var1=val2,var2=val2 -U LD_PRELOAD,LD_DEBUG
  40. QEMU_SET_ENV=var1=val2,var2=val2 QEMU_UNSET_ENV=LD_PRELOAD,LD_DEBUG
  41. Note that if you provide several changes to a single variable
  42. the last change will stay in effect.
  43.  
  44. qemu-system-aarch64 -m 512 -kernel linux-system-foundation.axf -hda saucy-arm64-multiarch.img
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement