nuttx/boards/risc-v/qemu-rv/rv-virt
chao.an 64d7326ed5 compile/opt: add config DEBUG_OPT_UNUSED_SECTIONS
Enable this option to optimization the unused input sections with the
linker by compiling with " -ffunction-sections -fdata-sections ", and
linking with " --gc-sections ".

Signed-off-by: chao.an <anchao@xiaomi.com>
2022-04-22 01:37:23 +08:00
..
configs boards/ostest: remove board ostest implement 2022-04-18 22:22:16 +08:00
include
scripts compile/opt: add config DEBUG_OPT_UNUSED_SECTIONS 2022-04-22 01:37:23 +08:00
src boards/sim: support rc.sysinit 2022-04-21 12:54:53 +03:00
Kconfig
README.txt risc-v/qemu-rv: Supports SMP up to 8 cores 2022-02-18 13:25:01 +08:00

1. Download and install toolchain

  $ curl https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz

2. Build and install qemu

  $ git clone https://github.com/qemu/qemu
  $ cd qemu
  $ ./configure --target-list=riscv32-softmmu,riscv64-softmmu
  $ make
  $ sudo make install

3. Configure and build NuttX

  $ mkdir ./nuttx; cd ./nuttx
  $ git clone https://github.com/apache/incubator-nuttx.git
  $ git clone https://github.com/apache/incubator-nuttx-apps.git
  $ cd nuttx
  $ make distclean
  $ ./tools/configure.sh rv-virt:nsh
  $ make

4. Run the nuttx with qemu

  $ qemu-system-riscv32 -M virt -cpu rv32 -smp 8 -bios none -kernel nuttx -nographic

  or

  $ qemu-system-riscv64 -M virt -cpu rv64 -smp 8-bios none -kernel nuttx -nographic

5. TODO

  Support FPU
  Support RISC-V User mode
  Support Network