Advertisement
Guest User

Untitled

a guest
Nov 27th, 2015
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. [14:09 david@david ~/Quemo/Debian $] qemu-arm -L Bios -M versatilepb -kernel vmlinuz-2.6.32-5-veratile -initrd initrd.img-2.6.32-5-versatile -hda debian_squeeze_armel_standard.qcow2 -append "root=/dev/sda1"
  2. usage: qemu-arm [options] program [arguments...]
  3. Linux CPU emulator (compiled for arm emulation)
  4.  
  5. Options and associated environment variables:
  6.  
  7. Argument Env-variable Description
  8. -h print this help
  9. -g port QEMU_GDB wait gdb connection to 'port'
  10. -L path QEMU_LD_PREFIX set the elf interpreter prefix to 'path'
  11. -s size QEMU_STACK_SIZE set the stack size to 'size' bytes
  12. -cpu model QEMU_CPU select CPU (-cpu help for list)
  13. -E var=value QEMU_SET_ENV sets targets environment variable (see below)
  14. -U var QEMU_UNSET_ENV unsets targets environment variable (see below)
  15. -0 argv0 QEMU_ARGV0 forces target process argv[0] to be 'argv0'
  16. -r uname QEMU_UNAME set qemu uname release string to 'uname'
  17. -B address QEMU_GUEST_BASE set guest_base address to 'address'
  18. -R size QEMU_RESERVED_VA reserve 'size' bytes for guest virtual address space
  19. -d item[,...] QEMU_LOG enable logging of specified items (use '-d help' for a list of items)
  20. -D logfile QEMU_LOG_FILENAME write logs to 'logfile' (default stderr)
  21. -p pagesize QEMU_PAGESIZE set the host page size to 'pagesize'
  22. -singlestep QEMU_SINGLESTEP run in singlestep mode
  23. -strace QEMU_STRACE log system calls
  24. -seed QEMU_RAND_SEED Seed for pseudo-random number generator
  25. -version QEMU_VERSION display version information and exit
  26.  
  27. Defaults:
  28. QEMU_LD_PREFIX = Bios
  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.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement