qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/15] linux-user update
@ 2014-05-05 12:34 riku.voipio
  2014-05-05 13:02 ` Peter Maydell
  2014-05-06 10:53 ` Peter Maydell
  0 siblings, 2 replies; 4+ messages in thread
From: riku.voipio @ 2014-05-05 12:34 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Riku Voipio, Anthony Liguori

From: Riku Voipio <riku.voipio@linaro.org>

The following changes since commit fdaad4715ae9e998fd0595bedfb16fdaf0c68ccc:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140501' into staging (2014-05-02 11:32:00 +0100)

are available in the git repository at:

  http://git.linaro.org/git/people/riku.voipio/qemu.git 

for you to fetch changes up to a39fb273bddd315b440b0617783051456a148242:

  linux-user: fix getrusage and wait4 failures with invalid rusage struct (2014-05-05 15:21:05 +0300)

Huw Davies (2):
  linux-user: Move if-elses to a switch statement.
  linux-user: Add support for SCM_CREDENTIALS.

James Hogan (2):
  linux-user: Assert stack used for auxvec, envp, argv
  linux-user: Handle arches with llseek instead of _llseek

Maxim Ostapenko (1):
  linux-user: Add /proc/self/exe open forwarding

Natanael Copa (1):
  linux-user: avoid using glibc internals in _syscall5 and in definition
    of target_sigevent struct

Petar Jovanovic (1):
  linux-user: fix getrusage and wait4 failures with invalid rusage
    struct

Peter Maydell (5):
  linux-user/signal.c: Set fault address in AArch64 signal info
  linux-user/elfload.c: Fix incorrect ARM HWCAP bits
  linux-user/elfload.c: Update ARM HWCAP bits
  linux-user/elfload.c: Fix A64 code which was incorrectly acting like
    A32
  linux-user/elfload.c: Support ARM HWCAP2 flags

Riku Voipio (3):
  linux-user: rename cpu-uname -> uname
  linux-user: move uname functions to uname.c
  linux-user: remove configure option for setting uname release

 configure                 |   8 --
 include/elf.h             |   1 +
 linux-user/Makefile.objs  |   2 +-
 linux-user/cpu-uname.c    |  72 ------------------
 linux-user/cpu-uname.h    |   1 -
 linux-user/elfload.c      | 147 +++++++++++++++++++++++++++++++-----
 linux-user/main.c         |   2 +-
 linux-user/signal.c       |   3 +-
 linux-user/syscall.c      | 189 ++++++++++++++++------------------------------
 linux-user/syscall_defs.h |  16 +++-
 linux-user/uname.c        | 171 +++++++++++++++++++++++++++++++++++++++++
 linux-user/uname.h        |  10 +++
 12 files changed, 392 insertions(+), 230 deletions(-)
 delete mode 100644 linux-user/cpu-uname.c
 delete mode 100644 linux-user/cpu-uname.h
 create mode 100644 linux-user/uname.c
 create mode 100644 linux-user/uname.h

-- 
2.0.0.rc0

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PULL v2 00/15] linux-user update
  2014-05-05 12:34 [Qemu-devel] [PULL v2 00/15] linux-user update riku.voipio
@ 2014-05-05 13:02 ` Peter Maydell
  2014-05-05 19:03   ` Riku Voipio
  2014-05-06 10:53 ` Peter Maydell
  1 sibling, 1 reply; 4+ messages in thread
From: Peter Maydell @ 2014-05-05 13:02 UTC (permalink / raw)
  To: Riku Voipio; +Cc: QEMU Developers, Anthony Liguori

On 5 May 2014 13:34,  <riku.voipio@linaro.org> wrote:
> From: Riku Voipio <riku.voipio@linaro.org>
>
> The following changes since commit fdaad4715ae9e998fd0595bedfb16fdaf0c68ccc:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140501' into staging (2014-05-02 11:32:00 +0100)
>
> are available in the git repository at:
>
>   http://git.linaro.org/git/people/riku.voipio/qemu.git

This seems to be missing the branch or tag name to pull from...

thanks
-- PMM

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PULL v2 00/15] linux-user update
  2014-05-05 13:02 ` Peter Maydell
@ 2014-05-05 19:03   ` Riku Voipio
  0 siblings, 0 replies; 4+ messages in thread
From: Riku Voipio @ 2014-05-05 19:03 UTC (permalink / raw)
  To: Peter Maydell; +Cc: QEMU Developers, Anthony Liguori

[-- Attachment #1: Type: text/plain, Size: 789 bytes --]

On 5 May 2014 16:02, Peter Maydell <peter.maydell@linaro.org> wrote:

> On 5 May 2014 13:34,  <riku.voipio@linaro.org> wrote:
> > From: Riku Voipio <riku.voipio@linaro.org>
> >
> > The following changes since commit
> fdaad4715ae9e998fd0595bedfb16fdaf0c68ccc:
> >
> >   Merge remote-tracking branch
> 'remotes/pmaydell/tags/pull-target-arm-20140501' into staging (2014-05-02
> 11:32:00 +0100)
> >
> > are available in the git repository at:
> >
> >   http://git.linaro.org/git/people/riku.voipio/qemu.git
>
> This seems to be missing the branch or tag name to pull from...
>

Sorry, git even gave a warning how the branch doesn't have the patches -
which I promptly ignored after verifying that the patches are in
linux-user-for-upstream branch as expected... Updated pull req sent.

Riku

[-- Attachment #2: Type: text/html, Size: 1426 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PULL v2 00/15] linux-user update
  2014-05-05 12:34 [Qemu-devel] [PULL v2 00/15] linux-user update riku.voipio
  2014-05-05 13:02 ` Peter Maydell
@ 2014-05-06 10:53 ` Peter Maydell
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2014-05-06 10:53 UTC (permalink / raw)
  To: Riku Voipio; +Cc: QEMU Developers

On 5 May 2014 20:00,  <riku.voipio@linaro.org> wrote:
> From: Riku Voipio <riku.voipio@linaro.org>
>
> The following changes since commit fdaad4715ae9e998fd0595bedfb16fdaf0c68ccc:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140501' into staging (2014-05-02 11:32:00 +0100)
>
> are available in the git repository at:
>
>   http://git.linaro.org/git/people/riku.voipio/qemu.git linux-user-for-upstream

Applied, thanks.

PS: if you could consistently use the git:// url it would
save me a fractional amount of effort :-)

thanks
-- PMM

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-05-06 10:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-05 12:34 [Qemu-devel] [PULL v2 00/15] linux-user update riku.voipio
2014-05-05 13:02 ` Peter Maydell
2014-05-05 19:03   ` Riku Voipio
2014-05-06 10:53 ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).