rt-thread-official/bsp/allwinner/d1
flyingcys 82f30aa54f
rename c906 FPU macro (#9290)
1. 修改 ENABLE_FPU 为 ARCH_RISCV_FPU,与libcpu/common 保持统一
2. 对 bsp/cvitek/cv18xx_risc-v 中增加使能 ARCH_RISCV_FPU 的动作。解决了 issue #9075
2024-08-27 00:46:41 -04:00
..
applications format Kconfig and sconscript 2023-01-08 22:52:13 -05:00
board [ci] open ci check with function declaration warning (#8546) 2024-02-20 22:45:04 -05:00
.config rename c906 FPU macro (#9290) 2024-08-27 00:46:41 -04:00
.gitignore sync branch rt-smart. (#6641) 2022-12-03 12:07:44 +08:00
Kconfig rename c906 FPU macro (#9290) 2024-08-27 00:46:41 -04:00
README.md sync branch rt-smart. (#6641) 2022-12-03 12:07:44 +08:00
SConscript sync branch rt-smart. (#6641) 2022-12-03 12:07:44 +08:00
SConstruct [bsp/allwinner]update allwinnter libraries object file path (#7482) 2023-05-12 22:50:21 +08:00
generateimg.sh sync branch rt-smart. (#6641) 2022-12-03 12:07:44 +08:00
link.lds format link scripts 2023-01-08 22:52:13 -05:00
link_stacksize.lds format link scripts 2023-01-08 22:52:13 -05:00
rtconfig.h rename c906 FPU macro (#9290) 2024-08-27 00:46:41 -04:00
rtconfig.py sync branch rt-smart. (#6641) 2022-12-03 12:07:44 +08:00

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 />

参考文档