1. 19 12月, 2012 1 次提交
  2. 01 11月, 2012 1 次提交
  3. 19 10月, 2012 1 次提交
  4. 13 10月, 2012 1 次提交
  5. 12 10月, 2012 1 次提交
  6. 21 9月, 2012 1 次提交
  7. 14 9月, 2012 1 次提交
  8. 27 8月, 2012 2 次提交
  9. 15 8月, 2012 2 次提交
  10. 11 8月, 2012 1 次提交
  11. 05 8月, 2012 2 次提交
  12. 03 8月, 2012 1 次提交
    • P
      Support 'help' as a synonym for '?' in command line options · c8057f95
      Peter Maydell 提交于
      For command line options which permit '?' meaning 'please list the
      permitted values', add support for 'help' as a synonym, by abstracting
      the check out into a helper function.
      
      This change means that in some cases where we were being lazy in
      our string parsing, "?junk" will now be rejected as an invalid option
      rather than being (undocumentedly) treated the same way as "?".
      
      Update the documentation to use 'help' rather than '?', since '?'
      is a shell metacharacter and thus prone to fail confusingly if there
      is a single character filename in the current working directory and
      the '?' has not been escaped. It's therefore better to steer users
      towards 'help', though '?' is retained for backwards compatibility.
      
      We do not, however, update the output of the system emulator's -help
      (or any documentation autogenerated from the qemu-options.hx which
      is the source of the -help text) because libvirt parses our -help
      output and will break. At a later date when QEMU provides a better
      interface so libvirt can avoid having to do this, we can update the
      -help text too.
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      c8057f95
  13. 28 7月, 2012 1 次提交
  14. 22 6月, 2012 1 次提交
  15. 05 6月, 2012 1 次提交
  16. 07 4月, 2012 1 次提交
    • P
      Userspace ARM BE8 support · d8fd2954
      Paul Brook 提交于
      Add support for ARM BE8 userspace binaries.
      i.e. big-endian data and little-endian code.
      In principle LE8 mode is also possible, but AFAIK has never actually
      been implemented/used.
      
      System emulation doesn't have any useable big-endian board models,
      but should in principle work once you fix that.
      Dynamic endianness switching requires messing with data accesses,
      preferably with TCG cooperation, and is orthogonal to BE8 support.
      Signed-off-by: NPaul Brook <paul@codesourcery.com>
      [PMM: various changes, mostly as per my suggestions in code review:
       * rebase
       * use EF_ defines rather than hardcoded constants
       * make bswap_code a bool for future VMSTATE macro compatibility
       * update comment in cpu.h about TB flags bit field usage
       * factor out load-code-and-swap into arm_ld*_code functions and
         get_user_code* macros
       * fix stray trailing space at end of line
       * added braces in disas.c to satisfy checkpatch
      ]
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: NRiku Voipio <riku.voipio@linaro.org>
      d8fd2954
  17. 06 4月, 2012 3 次提交
  18. 15 3月, 2012 3 次提交
  19. 14 3月, 2012 1 次提交
  20. 02 2月, 2012 1 次提交
  21. 02 12月, 2011 1 次提交
  22. 27 10月, 2011 3 次提交
  23. 21 10月, 2011 1 次提交
    • P
      linux-user: Fix broken "-version" option · 1386d4c0
      Peter Maydell 提交于
      Fix the "-version" option, which was accidentally broken in commit
      fc9c5412:
       * exit after printing version information rather than proceeding
         blithely onward (and likely printing the full usage message)
       * correct the cut-n-paste error in the usage message for it
       * don't insist on the presence of a following argument for
         options which don't take an argument (this was preventing
         'qemu-arm -version' from working)
       * remove a spurious argc check from the beginning of main() which
         meant 'QEMU_VERSION=1 qemu-arm' didn't work.
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: NAndrzej Zaborowski <andrew.zaborowski@intel.com>
      1386d4c0
  24. 09 9月, 2011 5 次提交
  25. 23 8月, 2011 1 次提交
  26. 21 8月, 2011 1 次提交
  27. 05 8月, 2011 1 次提交