Sign in

gwj / at91sam9263 · Commits

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Snippets
  • Commits 8,232
  • Compare
  • Branches 2
  • Tags 0
  • at91sam9263
26 Oct, 2008
2 commits
  • Fix incorrect use of pstrcpy (malc) ...
    51a0f568
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5538 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-26 10:22:11 +0000  
    Browse Code »
  • Fix undefined pthread_sigmask warning on FreeBSD (Juergen Lock) ...
    1b52da58
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5537 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-26 09:54:50 +0000  
    Browse Dir »

25 Oct, 2008
9 commits
  • Change freeing method because the allocation function was changed in r5532 ...
    653a07b2
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5536 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-25 13:48:59 +0000  
    Browse Dir »
  • Silence warnings about unused variables ...
    5be8e1f2
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5535 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-25 11:47:20 +0000  
    Browse File »
  • Suppress a GCC warning about unused function ...
    40ea94a5
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5534 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-25 11:26:41 +0000  
    Browse File »
  • Fix GCC 4 signedness warning ...
    4761a48b
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5533 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-25 11:25:48 +0000  
    Browse Code »
  • Replace uses of strndup (a GNU extension) with Qemu pstrdup ...
    2bd7318c
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5532 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-25 11:23:27 +0000  
    Browse Code »
  • Replace uses of strncpy (a GNU extension) with Qemu pstrcpy ...
    be15b141
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5531 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-25 11:21:28 +0000  
    Browse File »
  • Fix undefined pthread_sigmask warning on OpenBSD ...
    9b4c14c3
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5530 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-25 11:19:14 +0000  
    Browse Dir »
  • Use snprintf to please OpenBSD linker ...
    5b3715bf
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5529 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-25 11:18:12 +0000  
    Browse Code »
  • Fix a bad memcpy length (Bruce Rogers). ...
    fbc190d8
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5528 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-10-25 00:10:20 +0000  
    Browse Code »

24 Oct, 2008
8 commits
  • Fix whitespace in migration code. ...
    ff8d81d8
    Replace tabs with spaces.
    
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5527 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-10-24 22:10:31 +0000  
    Browse Code »
  • Fix possibly SEGV in tcp migration error case. ...
    88d2d9e0
    Spotted by hpoussin.
    
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5526 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-10-24 22:08:22 +0000  
    Browse File »
  • Live migration for Win32 (Hervé Poussineau) ...
    c1d36665
    This patch fixes migration so that it works on Win32.  This requires using
    socket specific calls since sockets cannot be treated like file descriptors
    on win32.
    
    Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5525 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-10-24 21:55:17 +0000  
    Browse File »
  • Fix windows build after migration changes ...
    17e90973
    The live migration code broke the windows build.  As part of this 
    change, I've switched the BIOS path to C:\Program Files\Qemu instead of 
    /c/Program Files/Qemu.  The later is only valid when launching from MSYS 
    but the former is always valid.
    
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5524 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-10-24 14:11:41 +0000  
    Browse File »
  • Add missing return statement (fixes compiler warning). ...
    00b229ac
    Signed-off-by: Stefan Weil <weil@mail.berlios.de>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5523 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-24 13:12:52 +0000  
    Browse Dir »
  • hw/pc: don't register the memory hole as unassigned twice ...
    7d0adcd6
    Since revision 5228, we don't register the memory hole (0xa00000 to
    0xfffff) anymore. As a consequence, we don't need to register it again
    as unassigned.
    
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5522 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-24 13:12:42 +0000  
    Browse Code »
  • Fix typos in PPC TCG conversion. ...
    2e31f5d3
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5521 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-10-24 12:03:16 +0000  
    Browse File »
  • ETRAX-FS: Drop DMA polling for ethernet. ...
    aa25cf46
    * Drop DMA poll mode. Instead immediately push rx frames straight into the DMA
      without waiting for DMA_run to poll them of the fifo.
    
    Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5520 c046a42c-6fe2-441c-8c8c-71466251a162
    edgar_igl authored
    2008-10-24 09:18:39 +0000  
    Browse Code »

23 Oct, 2008
1 commit
  • protect exec-all.h frm multiple inclusion (Glauber Costa) ...
    875cdcf6
    Signed-off-by: Glauber Costa <glommer@redhat.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5519 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-10-23 13:52:00 +0000  
    Browse File »

22 Oct, 2008
9 commits
  • Additional exclusive load/store instruction are v6K, not v6T2. ...
    a47f43d2
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5518 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-10-22 21:42:54 +0000  
    Browse Dir »
  • Fix ARMv6t2 strex instructions. ...
    86753403
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5517 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-10-22 20:35:54 +0000  
    Browse Code »
  • ETRAX-FS: Add support for passing kernel command lines ...
    f5a5cca3
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5516 c046a42c-6fe2-441c-8c8c-71466251a162
    edgar_igl authored
    2008-10-22 19:58:32 +0000  
    Browse File »
  • ETRAX-FS: Correct booting of elf linux images from ram. ...
    8ab94444
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5515 c046a42c-6fe2-441c-8c8c-71466251a162
    edgar_igl authored
    2008-10-22 19:35:08 +0000  
    Browse Dir »
  • Fix ARMv6 translation table base address calculation. ...
    b2fa1797
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5514 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-10-22 19:22:30 +0000  
    Browse Dir »
  • Use load address when loading ELF images. ...
    83c1f87c
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5513 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-10-22 18:20:20 +0000  
    Browse File »
  • Optimize redundant cp15 coprocessor access control register writes. ...
    4be27dbb
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5512 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-10-22 16:14:08 +0000  
    Browse Dir »
  • Update old fashioned function prototypes. ...
    3a742b76
    Signed-off-by: Stefan Weil <weil@mail.berlios.de>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5511 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-10-22 15:55:18 +0000  
    Browse Code »
  • * Use function pointers for symbol lookup (currently for elf32 and elf64, ...
    49918a75
    could be expanded).  This also fixes the bug with mips elf64 symbols
      in current Qemu trunk.
    
    * Use quicksort and binary search for symbol lookup.
    
    * Remove unneeded entries from symbol table.  This reduced a typical table
      size (linux mips kernel) from 1764487 to 11656 entries.
    
    Signed-off-by: Stefan Weil <weil@mail.berlios.de> 
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5510 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-10-22 15:11:31 +0000  
    Browse Code »

21 Oct, 2008
10 commits
  • Keep usb host scanning from leaking file descriptors ...
    f16a0db3
    If the first case does not succeed, then the usb scanning code will leak file
    descriptors on every scan.
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5509 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-10-21 16:34:20 +0000  
    Browse Code »
  • target-ppc: convert branch related instructions to TCG ...
    a2ffb812
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5508 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-21 16:31:31 +0000  
    Browse File »
  • Fix broken USB support for Linux host (Bjorn Danielsson) ...
    22babebb
    Make "host:" usb devices work again on systems that have the
    file /proc/bus/usb/devices. This was broken in r5441 due to
    incorrect logic for the USB_FS_SYS case in usb_host_scan().
    
    Signed-off-by: Bjorn Danielsson <bdq@dax.nu>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5507 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-10-21 16:27:28 +0000  
    Browse Code »
  • target-ppc: convert logical instructions to TCG ...
    26d67362
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5506 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-21 11:31:27 +0000  
    Browse File »
  • target-ppc: convert crf related instructions to TCG ...
    e1571908
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5505 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-21 11:31:14 +0000  
    Browse File »
  • TCG: add tcg_const_local_tl() ...
    bdffd4a9
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5504 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-21 11:30:45 +0000  
    Browse File »
  • target-ppc: use the new TCG logical operations ...
    cf960816
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5503 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-21 11:29:55 +0000  
    Browse Dir »
  • target-alpha: use the new TCG logical operations ...
    1b581c44
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5502 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-21 11:29:11 +0000  
    Browse File »
  • TCG: add logical operations found on alpha and powerpc processors ...
    f24cb33e
    - andc_i32/i64 t0, t1, t2
    - eqv_i32/i64 t0, t1, t2
    - nand_i32/i64 t0, t1, t2
    - nor_i32/i64 t0, t1, t2
    - orc_i32/i64 t0, t1, t2
    
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5501 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-21 11:28:59 +0000  
    Browse Code »
  • target-ppc: Convert XER accesses to TCG ...
    3d7b417e
    Define XER bits as a single register and access them individually to
    avoid defining 5 32-bit registers (TCG doesn't permit to map 8-bit
    registers).
    
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5500 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-21 11:28:46 +0000  
    Browse Code »

17 Oct, 2008
1 commit
  • added explicit license ...
    d75a0b97
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5499 c046a42c-6fe2-441c-8c8c-71466251a162
    bellard authored
    2008-10-17 17:31:57 +0000  
    Browse Code »