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/02 17:06:00 UTC

[incubator-nuttx] branch master updated (915f094 -> e814977)

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 915f094  NFS bug fix and improvement (#412)
     add e814977  boards/z80/ez80/z20x/:  Add W25 bootloader

No new revisions were added by this update.

Summary of changes:
 arch/z80/src/ez80/ez80_spi.c                       |  12 +-
 arch/z80/src/ez80/{ez80f91_spi.h => ez80_spi.h}    |  15 +-
 arch/z80/src/ez80/ez80_startup.asm                 |   1 +
 boards/z80/ez80/makerlisp/src/ez80_spi.c           |  12 +-
 boards/z80/ez80/makerlisp/src/ez80_spimmcsd.c      |  12 +-
 boards/z80/ez80/z20x/Kconfig                       |  71 ++-
 .../z20x/configs/{sdboot => w25boot}/.gitignore    |   0
 .../z20x/configs/{nsh_ram => w25boot}/README.txt   |   8 +-
 .../z20x/configs/{sdboot => w25boot}/defconfig     |  20 +-
 .../configs/{sdboot => w25boot}/sdboot.zdsproj     |   4 +-
 .../configs/{sdboot => w25boot}/sdboot.zfpproj     |   8 +-
 .../configs/{sdboot => w25boot}/sdboot_flash.ztgt  |   0
 .../configs/{sdboot => w25boot}/sdboot_ram.ztgt    |   0
 boards/z80/ez80/z20x/scripts/Make.defs             |  17 +-
 .../{z20x_flash.linkcmd => z20x_loader.linkcmd}    |  18 +-
 .../{z20x_ram.linkcmd => z20x_program.linkcmd}     |  10 +-
 boards/z80/ez80/z20x/src/Makefile                  |   2 +
 boards/z80/ez80/z20x/src/ez80_boot.c               |   7 +
 boards/z80/ez80/z20x/src/ez80_bringup.c            |   6 +-
 boards/z80/ez80/z20x/src/ez80_spi.c                |  12 +-
 boards/z80/ez80/z20x/src/ez80_spimmcsd.c           |  12 +-
 boards/z80/ez80/z20x/src/ez80_w25.c                |  17 +-
 boards/z80/ez80/z20x/src/sd_main.c                 |   9 +-
 boards/z80/ez80/z20x/src/w25_main.c                | 492 +++++++++++++++++++++
 boards/z80/ez80/z20x/src/z20x.h                    |  55 ++-
 25 files changed, 714 insertions(+), 106 deletions(-)
 rename arch/z80/src/ez80/{ez80f91_spi.h => ez80_spi.h} (94%)
 copy boards/z80/ez80/z20x/configs/{sdboot => w25boot}/.gitignore (100%)
 copy boards/z80/ez80/z20x/configs/{nsh_ram => w25boot}/README.txt (53%)
 copy boards/z80/ez80/z20x/configs/{sdboot => w25boot}/defconfig (70%)
 copy boards/z80/ez80/z20x/configs/{sdboot => w25boot}/sdboot.zdsproj (97%)
 copy boards/z80/ez80/z20x/configs/{sdboot => w25boot}/sdboot.zfpproj (96%)
 copy boards/z80/ez80/z20x/configs/{sdboot => w25boot}/sdboot_flash.ztgt (100%)
 copy boards/z80/ez80/z20x/configs/{sdboot => w25boot}/sdboot_ram.ztgt (100%)
 copy boards/z80/ez80/z20x/scripts/{z20x_flash.linkcmd => z20x_loader.linkcmd} (88%)
 rename boards/z80/ez80/z20x/scripts/{z20x_ram.linkcmd => z20x_program.linkcmd} (93%)
 create mode 100644 boards/z80/ez80/z20x/src/w25_main.c