You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2020/03/03 22:41:37 UTC

[incubator-nuttx] branch master updated (a21120e -> 2eff5a6)

This is an automated email from the ASF dual-hosted git repository.

acassis pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.


    from a21120e  Correct PR424 to coding standard
     add 2eff5a6  z20X:  Continued development of the W25 Bootloader.

No new revisions were added by this update.

Summary of changes:
 arch/z80/src/ez80/Kconfig                          |  17 +
 arch/z80/src/ez80/Make.defs                        |  55 ++--
 arch/z80/src/ez80/ez80_i2c.c                       |  67 ++--
 arch/z80/src/ez80/{ez80f91_i2c.h => ez80_i2c.h}    | 144 +++++----
 .../ez80/{ez80_vectors.asm => ez80_irqcommon.asm}  | 108 ++-----
 arch/z80/src/ez80/ez80_progentry.asm               |  44 +++
 arch/z80/src/ez80/ez80_reset.asm                   |  75 +++++
 arch/z80/src/ez80/ez80_startup.asm                 |  45 +--
 arch/z80/src/ez80/ez80f91_handlers.asm             |  15 +-
 arch/z80/src/ez80/ez80f92_handlers.asm             |  36 +--
 arch/z80/src/ez80/ez80f92_loader.asm               | 352 +++++++++++++++++++++
 .../{ez80f92_handlers.asm => ez80f92_program.asm}  | 183 ++++-------
 .../ez80/ez80f910200zco/configs/dhcpd/defconfig    |   1 -
 .../ez80/ez80f910200zco/configs/httpd/defconfig    |   1 -
 .../ez80/ez80f910200zco/configs/nettest/defconfig  |   1 -
 .../z80/ez80/ez80f910200zco/configs/nsh/defconfig  |   1 -
 .../z80/ez80/ez80f910200zco/configs/poll/defconfig |   1 -
 boards/z80/ez80/makerlisp/Kconfig                  |   1 +
 boards/z80/ez80/z20x/Kconfig                       |  11 +-
 boards/z80/ez80/z20x/configs/sdboot/defconfig      |   1 -
 boards/z80/ez80/z20x/configs/w25boot/.gitignore    |   8 +-
 boards/z80/ez80/z20x/scripts/Make.defs             |   4 +-
 boards/z80/ez80/z20x/scripts/z20x_loader.linkcmd   |   3 +-
 boards/z80/ez80/z20x/scripts/z20x_program.linkcmd  |   5 +-
 boards/z80/ez80/z20x/src/ez80_boot.c               |   1 +
 boards/z80/ez80/z20x/src/z20x.h                    |  19 +-
 libs/libc/misc/lib_debug.c                         |   2 +-
 27 files changed, 771 insertions(+), 430 deletions(-)
 rename arch/z80/src/ez80/{ez80f91_i2c.h => ez80_i2c.h} (66%)
 rename arch/z80/src/ez80/{ez80_vectors.asm => ez80_irqcommon.asm} (56%)
 create mode 100644 arch/z80/src/ez80/ez80_progentry.asm
 create mode 100644 arch/z80/src/ez80/ez80_reset.asm
 create mode 100644 arch/z80/src/ez80/ez80f92_loader.asm
 copy arch/z80/src/ez80/{ez80f92_handlers.asm => ez80f92_program.asm} (52%)