mirror of
https://github.com/lupyuen/nuttx-sg2000.git
synced 2025-01-12 20:58:29 +08:00
Update doc
This commit is contained in:
parent
3cabb20cf6
commit
db4966b097
1 changed files with 6 additions and 10 deletions
16
README.md
16
README.md
|
@ -58,9 +58,7 @@ Nope we're in Arm Mode! Flip the switch back to RISC-V!
|
|||
|
||||
https://gist.github.com/lupyuen/1d5ba1b2a47c110ee7ff265102b1aae5
|
||||
|
||||
Milk-V Duo S doesn't ship with U-Boot Bootloader preinstalled. Too bad we can't boot NuttX over TFTP, our NuttX Porting will be a bit slower. Bummer :-(
|
||||
|
||||
TODO: Get the eMMC Version with U-Boot preinstalled. But flashing the eMMC only works on Windows. Sigh
|
||||
Milk-V Duo S doesn't ship with U-Boot Bootloader preinstalled in Flash Memory. We'll need U-Boot on MicroSD...
|
||||
|
||||
# Boot Linux on Milk-V Duo S
|
||||
|
||||
|
@ -355,14 +353,14 @@ run bootcmd_tftp
|
|||
|
||||
## Remember the Original Boot Targets
|
||||
setenv orig_boot_targets "$boot_targets"
|
||||
## Should show `mmc0 dhcp`
|
||||
printenv boot_targets
|
||||
## Should show `mmc0 dhcp pxe`
|
||||
printenv orig_boot_targets
|
||||
## Save it for future reboots
|
||||
saveenv
|
||||
|
||||
## Add TFTP to the Boot Targets
|
||||
setenv boot_targets "$boot_targets tftp"
|
||||
## Should show `mmc0 dhcp tftp`
|
||||
## Prepend TFTP to the Boot Targets
|
||||
setenv boot_targets "tftp $boot_targets"
|
||||
## Should show `tftp mmc0 dhcp pxe`
|
||||
printenv boot_targets
|
||||
## Save it for future reboots
|
||||
saveenv
|
||||
|
@ -685,8 +683,6 @@ Coming up...
|
|||
|
||||
1. Configure the 16550 UART Driver for NuttX, so can see the Console Output
|
||||
|
||||
TODO: Can we auto-boot NuttX over TFTP, without manually typing U-Boot Commands every time? Maybe we change the U-Boot Config on MicroSD?
|
||||
|
||||
TODO: Can we run `expect` with `screen` to automate the testing of NuttX on SG2000?
|
||||
|
||||
TODO: If we prefer to boot NuttX with MicroSD instead of TFTP, try this [MicroSD Multiplexer (USB / FTDI)](https://www.tindie.com/products/badgerdnl/sdwire-usb-c-sd-card-reader-sd-mux/)
|
||||
|
|
Loading…
Reference in a new issue