1. 28 6月, 2014 18 次提交
  2. 27 6月, 2014 4 次提交
  3. 26 6月, 2014 16 次提交
  4. 25 6月, 2014 2 次提交
    • P
      Merge remote-tracking branch 'remotes/mjt/tags/trivial-patches-2014-06-24' into staging · 2b5b7ae9
      Peter Maydell 提交于
      trivial patches for 2014-06-24
      
      # gpg: Signature made Tue 24 Jun 2014 17:07:31 BST using RSA key ID A4C3D7DB
      # gpg: Good signature from "Michael Tokarev <mjt@tls.msk.ru>"
      # gpg:                 aka "Michael Tokarev <mjt@corpit.ru>"
      # gpg:                 aka "Michael Tokarev <mjt@debian.org>"
      # gpg: WARNING: This key is not certified with a trusted signature!
      # gpg:          There is no indication that the signature belongs to the owner.
      # Primary key fingerprint: 6EE1 95D1 886E 8FFB 810D  4324 457C E0A0 8044 65C5
      #      Subkey fingerprint: 6F67 E18E 7C91 C5B1 5514  66A7 BEE5 9D74 A4C3 D7DB
      
      * remotes/mjt/tags/trivial-patches-2014-06-24:
        Add support for the arm breakpoint syscall
        Increase maximum number of session of the internal TFTP server.
        target-s390x: Remove unused ld_code6() function
        hw/moxie/moxiesim.c: Remove unused moxie_intc_create()
        target-unicore: Remove unused functions
        build-sys: introduce install-prog macro to install&strip binaries and use it
        tcg: mark tcg_out* and tcg_patch* with attribute 'unused'
        rng-random: NULL check not needed before g_free()
        block.c: Remove useless 'buf' variable
        vscclient: Add required headers to fix build on FreeBSD
        target-ppc: Fix compiler warning
        configure: Enable TPM by default, add --disable-tpm
        Fix new typos (found by codespell)
        virtio-serial: remove useless set_config function
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      2b5b7ae9
    • H
      Add support for the arm breakpoint syscall · d5355087
      Hunter Laux 提交于
      OABI arm used a software interrupt(0xef9f0001) for breakpoints.
      Since 2005 gdb has used the break instruction(0xe7f001f0) for EABI.
      Apparently Steel Bank Common Lisp still uses the swi instruction.
      
      This is the kernel implementation:
      http://lxr.free-electrons.com/source/arch/arm/kernel/traps.c#L598Signed-off-by: NHunter Laux <hunterlaux@gmail.com>
      Reviewed-by: NPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: NMichael Tokarev <mjt@tls.msk.ru>
      d5355087