All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 2.1 00/10] target-xtensa queue 2014-06-29
@ 2014-06-28 22:49 Max Filippov
  2014-06-29 15:43 ` Peter Maydell
  0 siblings, 1 reply; 3+ messages in thread
From: Max Filippov @ 2014-06-28 22:49 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Max Filippov

Hi Peter,

please pull my current target-xtensa patch queue.
The following changes since commit d4cba13bdf251baeedb36b87c1e9f6766773e380:

  tcg/ppc: Fix failure in tcg_out_mem_long (2014-06-27 13:23:41 +0100)

are available in the git repository at:

  git@github.com:OSLL/qemu-xtensa.git tags/20140629-xtensa

for you to fetch changes up to f55b32e7499b291058a0d0fd7d35b14c24791684:

  hw/xtensa/xtfpga: implement initrd loading (2014-06-29 02:32:42 +0400)

----------------------------------------------------------------
Xtensa fixes and improvements queue 2014-06-29:
- fix FLASH mapping to boot region for KC705;
- clean up boot parameters passing;
- add uImage, DTB and initrd support.

----------------------------------------------------------------
Max Filippov (10):
      hw/xtensa/xtfpga: fix FLASH mapping to boot region for KC705
      hw/xtensa: remove extraneous xtensa_ prefix from file names
      hw/xtensa: replace fprintfs with error_report
      hw/xtensa/xtfpga: retrieve parameters from machine_opts
      hw/xtensa/xtfpga: use symbolic constants for bootparam tags
      hw/xtensa/xtfpga: refactor bootparameters filling
      hw/xtensa/xtfpga: add memory info to bootparam
      hw/xtensa/xtfpga: implement uImage loading
      hw/xtensa/xtfpga: implement DTB loading
      hw/xtensa/xtfpga: implement initrd loading

 hw/xtensa/Makefile.objs               |   4 +-
 hw/xtensa/bootparam.h                 |  49 +++++++++++++
 hw/xtensa/{xtensa_sim.c => sim.c}     |   6 +-
 hw/xtensa/xtensa_bootparam.h          |  25 -------
 hw/xtensa/{xtensa_lx60.c => xtfpga.c} | 128 ++++++++++++++++++++++++++++------
 5 files changed, 162 insertions(+), 50 deletions(-)
 create mode 100644 hw/xtensa/bootparam.h
 rename hw/xtensa/{xtensa_sim.c => sim.c} (96%)
 delete mode 100644 hw/xtensa/xtensa_bootparam.h
 rename hw/xtensa/{xtensa_lx60.c => xtfpga.c} (68%)

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

* Re: [Qemu-devel] [PULL 2.1 00/10] target-xtensa queue 2014-06-29
  2014-06-28 22:49 [Qemu-devel] [PULL 2.1 00/10] target-xtensa queue 2014-06-29 Max Filippov
@ 2014-06-29 15:43 ` Peter Maydell
  2014-06-29 15:48   ` Max Filippov
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Maydell @ 2014-06-29 15:43 UTC (permalink / raw)
  To: Max Filippov; +Cc: QEMU Developers

On 28 June 2014 23:49, Max Filippov <jcmvbkbc@gmail.com> wrote:
> Hi Peter,
>
> please pull my current target-xtensa patch queue.
> The following changes since commit d4cba13bdf251baeedb36b87c1e9f6766773e380:
>
>   tcg/ppc: Fix failure in tcg_out_mem_long (2014-06-27 13:23:41 +0100)
>
> are available in the git repository at:
>
>   git@github.com:OSLL/qemu-xtensa.git tags/20140629-xtensa

Can you fix up whatever you're using to generate these emails,
please? This isn't a valid git url, you probably meant
   git://github.com/OSLL/qemu-xtensa.git tags/20140629-xtensa

> for you to fetch changes up to f55b32e7499b291058a0d0fd7d35b14c24791684:
>
>   hw/xtensa/xtfpga: implement initrd loading (2014-06-29 02:32:42 +0400)
>
> ----------------------------------------------------------------
> Xtensa fixes and improvements queue 2014-06-29:
> - fix FLASH mapping to boot region for KC705;
> - clean up boot parameters passing;
> - add uImage, DTB and initrd support.

Applied, thanks.

-- PMM

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

* Re: [Qemu-devel] [PULL 2.1 00/10] target-xtensa queue 2014-06-29
  2014-06-29 15:43 ` Peter Maydell
@ 2014-06-29 15:48   ` Max Filippov
  0 siblings, 0 replies; 3+ messages in thread
From: Max Filippov @ 2014-06-29 15:48 UTC (permalink / raw)
  To: Peter Maydell; +Cc: QEMU Developers

On Sun, Jun 29, 2014 at 7:43 PM, Peter Maydell <peter.maydell@linaro.org> wrote:
> On 28 June 2014 23:49, Max Filippov <jcmvbkbc@gmail.com> wrote:
>> Hi Peter,
>>
>> please pull my current target-xtensa patch queue.
>> The following changes since commit d4cba13bdf251baeedb36b87c1e9f6766773e380:
>>
>>   tcg/ppc: Fix failure in tcg_out_mem_long (2014-06-27 13:23:41 +0100)
>>
>> are available in the git repository at:
>>
>>   git@github.com:OSLL/qemu-xtensa.git tags/20140629-xtensa
>
> Can you fix up whatever you're using to generate these emails,
> please? This isn't a valid git url, you probably meant
>    git://github.com/OSLL/qemu-xtensa.git tags/20140629-xtensa

Yeah, sorry, used ssh protocol remote instead of git this time.

-- 
Thanks.
-- Max

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

end of thread, other threads:[~2014-06-29 15:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-28 22:49 [Qemu-devel] [PULL 2.1 00/10] target-xtensa queue 2014-06-29 Max Filippov
2014-06-29 15:43 ` Peter Maydell
2014-06-29 15:48   ` Max Filippov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.