Re: [PATCH v3 0/9] ratp: new generic RATP command support

2018-03-01 Thread Sascha Hauer
On Sat, Feb 24, 2018 at 04:01:12PM +0100, Aleksander Morgado wrote:
> This v3 series includes new md, mw and reset operations in bbremote, using 
> the new binary API interface. The actual commits including the new RATP 
> commands include the bbremote changes as well.
> 
> An additional patch is also included to add a reference to the third-party 
> libratp-barebox and ratp-barebox-cli tools.
> 
> Aleksander Morgado (9):
>   ratp: implement generic command support
>   ratp: moved logic to its own subdirectory
>   ratp: allow building without full console support
>   ratp: implement ping as a standard ratp command
>   ratp: implement getenv as a standard ratp command
>   ratp: use xstrndup() instead of a custom xmemdup_add_zero()
>   ratp: new md and mw commands
>   ratp: new reset command
>   docs: add reference to libratp-barebox in the remote-control docs

Applied, thanks

Sascha

> 
>  Documentation/user/remote-control.rst |   7 ++
>  arch/arm/lib32/barebox.lds.S  |   4 +
>  arch/arm/lib64/barebox.lds.S  |   4 +
>  arch/blackfin/boards/ipe337/barebox.lds.S |   5 +-
>  arch/mips/lib/barebox.lds.S   |   4 +
>  arch/nios2/cpu/barebox.lds.S  |   5 +-
>  arch/openrisc/cpu/barebox.lds.S   |   4 +
>  arch/ppc/boards/pcm030/barebox.lds.S  |   4 +
>  arch/ppc/mach-mpc85xx/barebox.lds.S   |   4 +
>  arch/sandbox/board/barebox.lds.S  |   5 +
>  arch/x86/lib/barebox.lds.S|   7 ++
>  arch/x86/mach-efi/elf_ia32_efi.lds.S  |   5 +
>  arch/x86/mach-efi/elf_x86_64_efi.lds.S|   5 +
>  common/Kconfig|  13 +-
>  common/Makefile   |   3 +-
>  common/module.lds.S   |   2 +
>  common/ratp/Kconfig   |  14 +++
>  common/ratp/Makefile  |   6 +
>  common/ratp/getenv.c  |  51 
>  common/ratp/md.c  | 202 
> ++
>  common/ratp/mw.c  | 173 +
>  common/ratp/ping.c|  40 ++
>  common/{ => ratp}/ratp.c  | 156 +++
>  common/ratp/reset.c   |  55 
>  fs/Kconfig|   2 +-
>  include/asm-generic/barebox.lds.h |   2 +
>  include/ratp_bb.h |  52 
>  lib/Kconfig   |   2 +-
>  lib/readline.c|   2 +-
>  scripts/remote/controller.py  |  27 
>  scripts/remote/main.py|  51 
>  scripts/remote/messages.py| 105 
>  32 files changed, 918 insertions(+), 103 deletions(-)
>  create mode 100644 common/ratp/Kconfig
>  create mode 100644 common/ratp/Makefile
>  create mode 100644 common/ratp/getenv.c
>  create mode 100644 common/ratp/md.c
>  create mode 100644 common/ratp/mw.c
>  create mode 100644 common/ratp/ping.c
>  rename common/{ => ratp}/ratp.c (81%)
>  create mode 100644 common/ratp/reset.c
> 
> --
> 2.15.1
> 

-- 
Pengutronix e.K.   | |
Industrial Linux Solutions | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0|
Amtsgericht Hildesheim, HRA 2686   | Fax:   +49-5121-206917- |

___
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox


[PATCH v3 0/9] ratp: new generic RATP command support

2018-02-24 Thread Aleksander Morgado
This v3 series includes new md, mw and reset operations in bbremote, using the 
new binary API interface. The actual commits including the new RATP commands 
include the bbremote changes as well.

An additional patch is also included to add a reference to the third-party 
libratp-barebox and ratp-barebox-cli tools.

Aleksander Morgado (9):
  ratp: implement generic command support
  ratp: moved logic to its own subdirectory
  ratp: allow building without full console support
  ratp: implement ping as a standard ratp command
  ratp: implement getenv as a standard ratp command
  ratp: use xstrndup() instead of a custom xmemdup_add_zero()
  ratp: new md and mw commands
  ratp: new reset command
  docs: add reference to libratp-barebox in the remote-control docs

 Documentation/user/remote-control.rst |   7 ++
 arch/arm/lib32/barebox.lds.S  |   4 +
 arch/arm/lib64/barebox.lds.S  |   4 +
 arch/blackfin/boards/ipe337/barebox.lds.S |   5 +-
 arch/mips/lib/barebox.lds.S   |   4 +
 arch/nios2/cpu/barebox.lds.S  |   5 +-
 arch/openrisc/cpu/barebox.lds.S   |   4 +
 arch/ppc/boards/pcm030/barebox.lds.S  |   4 +
 arch/ppc/mach-mpc85xx/barebox.lds.S   |   4 +
 arch/sandbox/board/barebox.lds.S  |   5 +
 arch/x86/lib/barebox.lds.S|   7 ++
 arch/x86/mach-efi/elf_ia32_efi.lds.S  |   5 +
 arch/x86/mach-efi/elf_x86_64_efi.lds.S|   5 +
 common/Kconfig|  13 +-
 common/Makefile   |   3 +-
 common/module.lds.S   |   2 +
 common/ratp/Kconfig   |  14 +++
 common/ratp/Makefile  |   6 +
 common/ratp/getenv.c  |  51 
 common/ratp/md.c  | 202 ++
 common/ratp/mw.c  | 173 +
 common/ratp/ping.c|  40 ++
 common/{ => ratp}/ratp.c  | 156 +++
 common/ratp/reset.c   |  55 
 fs/Kconfig|   2 +-
 include/asm-generic/barebox.lds.h |   2 +
 include/ratp_bb.h |  52 
 lib/Kconfig   |   2 +-
 lib/readline.c|   2 +-
 scripts/remote/controller.py  |  27 
 scripts/remote/main.py|  51 
 scripts/remote/messages.py| 105 
 32 files changed, 918 insertions(+), 103 deletions(-)
 create mode 100644 common/ratp/Kconfig
 create mode 100644 common/ratp/Makefile
 create mode 100644 common/ratp/getenv.c
 create mode 100644 common/ratp/md.c
 create mode 100644 common/ratp/mw.c
 create mode 100644 common/ratp/ping.c
 rename common/{ => ratp}/ratp.c (81%)
 create mode 100644 common/ratp/reset.c

--
2.15.1

___
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox