This is an automated email from the ASF dual-hosted git repository.
aguettouche pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.
from 884fcb6 Revert "README.txt: add MacOS section for flock installation"
add 5a3e887 boards/z80/ez80/z20x: Initial port to z20x board.
No new revisions were added by this update.
Summary of changes:
Documentation/README.html | 17 +-
README.txt | 7 +-
boards/Kconfig | 14 +
boards/README.txt | 4 +
boards/z80/ez80/z20x/Kconfig | 35 +++
boards/z80/ez80/z20x/README.txt | 297 +++++++++++++++++++
.../sdboot => z20x/configs/nsh_flash}/.gitignore | 0
boards/z80/ez80/z20x/configs/nsh_flash/README.txt | 13 +
boards/z80/ez80/z20x/configs/nsh_flash/defconfig | 59 ++++
boards/z80/ez80/z20x/configs/nsh_flash/nsh.zdsproj | 261 +++++++++++++++++
boards/z80/ez80/z20x/configs/nsh_flash/nsh.zfpproj | 315 +++++++++++++++++++++
.../z80/ez80/z20x/configs/nsh_flash/nsh_flash.ztgt | 69 +++++
.../z80/ez80/z20x/configs/nsh_flash/nsh_ram.ztgt | 69 +++++
.../sdboot => z20x/configs/nsh_ram}/.gitignore | 0
boards/z80/ez80/z20x/configs/nsh_ram/README.txt | 13 +
boards/z80/ez80/z20x/configs/nsh_ram/defconfig | 60 ++++
boards/z80/ez80/z20x/configs/nsh_ram/nsh.zdsproj | 261 +++++++++++++++++
boards/z80/ez80/z20x/configs/nsh_ram/nsh.zfpproj | 315 +++++++++++++++++++++
.../z80/ez80/z20x/configs/nsh_ram/nsh_flash.ztgt | 69 +++++
boards/z80/ez80/z20x/configs/nsh_ram/nsh_ram.ztgt | 69 +++++
.../{makerlisp => z20x}/configs/sdboot/.gitignore | 0
boards/z80/ez80/z20x/configs/sdboot/README.txt | 13 +
boards/z80/ez80/z20x/configs/sdboot/defconfig | 52 ++++
boards/z80/ez80/z20x/configs/sdboot/sdboot.zdsproj | 261 +++++++++++++++++
boards/z80/ez80/z20x/configs/sdboot/sdboot.zfpproj | 315 +++++++++++++++++++++
.../z80/ez80/z20x/configs/sdboot/sdboot_flash.ztgt | 69 +++++
.../z80/ez80/z20x/configs/sdboot/sdboot_ram.ztgt | 69 +++++
boards/z80/ez80/z20x/include/board.h | 91 ++++++
boards/z80/ez80/z20x/scripts/Make.defs | 223 +++++++++++++++
.../z80/ez80/z20x/scripts/z20x_copytoram.linkcmd | 75 +++++
boards/z80/ez80/z20x/scripts/z20x_flash.linkcmd | 74 +++++
boards/z80/ez80/z20x/scripts/z20x_flash.ztgt | 69 +++++
boards/z80/ez80/z20x/scripts/z20x_ram.linkcmd | 75 +++++
boards/z80/ez80/z20x/scripts/z20x_ram.ztgt | 69 +++++
{wireless => boards/z80/ez80/z20x/src}/.gitignore | 0
boards/z80/ez80/z20x/src/Makefile | 41 +++
boards/z80/ez80/z20x/src/ez80_appinit.c | 79 ++++++
boards/z80/ez80/z20x/src/ez80_boot.c | 79 ++++++
boards/z80/ez80/z20x/src/ez80_bringup.c | 77 +++++
boards/z80/ez80/z20x/src/ez80_spi.c | 151 ++++++++++
boards/z80/ez80/z20x/src/ez80_spimmcsd.c | 94 ++++++
boards/z80/ez80/z20x/src/sd_main.c | 153 ++++++++++
boards/z80/ez80/z20x/src/z20x.h | 141 +++++++++
43 files changed, 4210 insertions(+), 7 deletions(-)
create mode 100644 boards/z80/ez80/z20x/Kconfig
create mode 100644 boards/z80/ez80/z20x/README.txt
copy boards/z80/ez80/{makerlisp/configs/sdboot =>
z20x/configs/nsh_flash}/.gitignore (100%)
create mode 100644 boards/z80/ez80/z20x/configs/nsh_flash/README.txt
create mode 100644 boards/z80/ez80/z20x/configs/nsh_flash/defconfig
create mode 100644 boards/z80/ez80/z20x/configs/nsh_flash/nsh.zdsproj
create mode 100644 boards/z80/ez80/z20x/configs/nsh_flash/nsh.zfpproj
create mode 100644 boards/z80/ez80/z20x/configs/nsh_flash/nsh_flash.ztgt
create mode 100644 boards/z80/ez80/z20x/configs/nsh_flash/nsh_ram.ztgt
copy boards/z80/ez80/{makerlisp/configs/sdboot =>
z20x/configs/nsh_ram}/.gitignore (100%)
create mode 100644 boards/z80/ez80/z20x/configs/nsh_ram/README.txt
create mode 100644 boards/z80/ez80/z20x/configs/nsh_ram/defconfig
create mode 100644 boards/z80/ez80/z20x/configs/nsh_ram/nsh.zdsproj
create mode 100644 boards/z80/ez80/z20x/configs/nsh_ram/nsh.zfpproj
create mode 100644 boards/z80/ez80/z20x/configs/nsh_ram/nsh_flash.ztgt
create mode 100644 boards/z80/ez80/z20x/configs/nsh_ram/nsh_ram.ztgt
copy boards/z80/ez80/{makerlisp => z20x}/configs/sdboot/.gitignore (100%)
create mode 100644 boards/z80/ez80/z20x/configs/sdboot/README.txt
create mode 100644 boards/z80/ez80/z20x/configs/sdboot/defconfig
create mode 100644 boards/z80/ez80/z20x/configs/sdboot/sdboot.zdsproj
create mode 100644 boards/z80/ez80/z20x/configs/sdboot/sdboot.zfpproj
create mode 100644 boards/z80/ez80/z20x/configs/sdboot/sdboot_flash.ztgt
create mode 100644 boards/z80/ez80/z20x/configs/sdboot/sdboot_ram.ztgt
create mode 100644 boards/z80/ez80/z20x/include/board.h
create mode 100644 boards/z80/ez80/z20x/scripts/Make.defs
create mode 100644 boards/z80/ez80/z20x/scripts/z20x_copytoram.linkcmd
create mode 100644 boards/z80/ez80/z20x/scripts/z20x_flash.linkcmd
create mode 100644 boards/z80/ez80/z20x/scripts/z20x_flash.ztgt
create mode 100644 boards/z80/ez80/z20x/scripts/z20x_ram.linkcmd
create mode 100644 boards/z80/ez80/z20x/scripts/z20x_ram.ztgt
copy {wireless => boards/z80/ez80/z20x/src}/.gitignore (100%)
create mode 100644 boards/z80/ez80/z20x/src/Makefile
create mode 100644 boards/z80/ez80/z20x/src/ez80_appinit.c
create mode 100644 boards/z80/ez80/z20x/src/ez80_boot.c
create mode 100644 boards/z80/ez80/z20x/src/ez80_bringup.c
create mode 100644 boards/z80/ez80/z20x/src/ez80_spi.c
create mode 100644 boards/z80/ez80/z20x/src/ez80_spimmcsd.c
create mode 100644 boards/z80/ez80/z20x/src/sd_main.c
create mode 100644 boards/z80/ez80/z20x/src/z20x.h