Meco Man 8e10983c9b [klibc] add rt_vsnprintf_std.c and rename RT_KLIBC_USING_VSNPRINTF_LONGLONG 7 months ago
..
applications 9bc68d26a4 format Kconfig and sconscript 2 years ago
board c6bdee3c50 [ci] open ci check with function declaration warning (#8546) 1 year ago
.config 82f30aa54f rename c906 FPU macro (#9290) 10 months ago
.gitignore ecf2d82159 sync branch rt-smart. (#6641) 2 years ago
Kconfig 82f30aa54f rename c906 FPU macro (#9290) 10 months ago
README.md ecf2d82159 sync branch rt-smart. (#6641) 2 years ago
SConscript ecf2d82159 sync branch rt-smart. (#6641) 2 years ago
SConstruct acb5010e04 [bsp/allwinner]update allwinnter libraries object file path (#7482) 2 years ago
generateimg.sh ecf2d82159 sync branch rt-smart. (#6641) 2 years ago
link.lds 592284c66c format link scripts 2 years ago
link_stacksize.lds 592284c66c format link scripts 2 years ago
rtconfig.h 8e10983c9b [klibc] add rt_vsnprintf_std.c and rename RT_KLIBC_USING_VSNPRINTF_LONGLONG 7 months ago
rtconfig.py ecf2d82159 sync branch rt-smart. (#6641) 2 years ago

README.md

RT-Thread全志D1移植

全志 d1-allwinner-nezha 属于 riscv64 平台

编译环境搭建

  • 拉取 RT-Thread Smart的代码仓库 git clone https://gitee.com/guozhanxin/rtthread-smart.git

windows 环境

  • 打开 RT-Thread ENV 工具

  • 进入 tools 目录 cd tools

  • 拉取 riscv64平台的编译工具 python get_toolchain.py riscv64

  • 返回上级目录 cd ..

  • 设置环境变量 ./smart-env.bat

ubuntu 环境

  • 打开 ubuntu shell 终端

  • 进入 tools 目录 cd tools

  • 拉取 riscv64平台的编译工具 python get_toolchain.py riscv64

  • 返回上级目录 cd ..

  • 设置环境变量 source smart-env.sh riscv64

编译环境验证

  • 输入:riscv64-unknown-linux-musl-gcc -v

开发与编译

  • windows 下使用RT-Thread ENV 工具, menuconfig 配置工程,scons 编译工程

  • ubuntu 下 使用shell 终端: scons --menuconfig 配置工程, scons 编译工程

下载验证

  • 编译完后,通过:mkimage 生成 img 镜像文件,这个img 镜像文件可以使用 U-boot 引导启动

  • 启动方式一般有:SD卡启动、NandFlash启动、网络引导启动

  • windows 下使用全志的:AllwinnertechPhoeniSuitRelease20201225

  • 可以使用 xfel 工具进行烧写NandFlash

运行效果

## Booting kernel from Legacy Image at 45000000 ...
   Image Name:   
   Image Type:   RISC-V Linux Kernel Image (uncompressed)
   Data Size:    249576 Bytes = 243.7 KiB
   Load Address: 45000000
   Entry Point:  45000000
   Verifying Checksum ... OK
[01.861]
Starting kernel ...
heap: [0x45077bb0 - 0x48277bb0]
 \ | /
- RT -     Thread Smart Operating System
 / | \     5.0.0 build Jun 18 2022
 2006 - 2020 Copyright by rt-thread team
file system initialization done!
Hello RISC-V
msh />

参考文档