mirror of
https://github.com/lupyuen/lupyuen.github.io.git
synced 2025-01-13 07:58:35 +08:00
Update resume
This commit is contained in:
parent
54841eb119
commit
4850b16c11
7 changed files with 451 additions and 407 deletions
828
index.html
828
index.html
File diff suppressed because it is too large
Load diff
BIN
lupyuen.pdf
BIN
lupyuen.pdf
Binary file not shown.
|
@ -156,6 +156,13 @@
|
|||
}
|
||||
],
|
||||
"publications": [
|
||||
{
|
||||
"name": "Star64 JH7110 RISC-V SBC: Boot from Network with U-Boot and TFTP",
|
||||
"publisher": "lupyuen.github.io",
|
||||
"releaseDate": "2023-07-13",
|
||||
"website": "https://lupyuen.github.io/articles/tftp",
|
||||
"summary": "Let's boot Apache NuttX RTOS (or Linux) over the Network with U-Boot Bootloader and TFTP... On Pine64's Star64 JH7110 RISC-V Single-Board Computer"
|
||||
},
|
||||
{
|
||||
"name": "Apache NuttX RTOS on RISC-V: Star64 JH7110 SBC",
|
||||
"publisher": "lupyuen.github.io",
|
||||
|
|
7
rss.xml
7
rss.xml
|
@ -3,6 +3,13 @@
|
|||
<title>lupyuen</title>
|
||||
<link>https://lupyuen.github.io</link>
|
||||
<description>IoT Techie and Educator</description>
|
||||
<item>
|
||||
<title>Star64 JH7110 RISC-V SBC: Boot from Network with U-Boot and TFTP</title>
|
||||
<link>https://lupyuen.github.io/articles/tftp</link>
|
||||
<description><![CDATA[Let's boot Apache NuttX RTOS (or Linux) over the Network with U-Boot Bootloader and TFTP... On Pine64's Star64 JH7110 RISC-V Single-Board Computer]]></description>
|
||||
<guid>https://lupyuen.github.io/articles/tftp</guid>
|
||||
<pubDate>Thu, 13 Jul 2023 00:00:00 +0000</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<title>Apache NuttX RTOS on RISC-V: Star64 JH7110 SBC</title>
|
||||
<link>https://lupyuen.github.io/articles/nuttx2</link>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
content="Star64 JH7110 RISC-V SBC: Boot from Network with U-Boot and TFTP"
|
||||
data-rh="true">
|
||||
<meta property="og:description"
|
||||
content="Let's boot Apache NuttX RTOS (or Linux) over the Network with U-Boot Bootloader and TFTP"
|
||||
content="Let's boot Apache NuttX RTOS (or Linux) over the Network with U-Boot Bootloader and TFTP... On Pine64's Star64 JH7110 RISC-V Single-Board Computer"
|
||||
data-rh="true">
|
||||
<meta name="description"
|
||||
content="Let's boot Apache NuttX RTOS (or Linux) over the Network with U-Boot Bootloader and TFTP">
|
||||
content="Let's boot Apache NuttX RTOS (or Linux) over the Network with U-Boot Bootloader and TFTP... On Pine64's Star64 JH7110 RISC-V Single-Board Computer">
|
||||
<meta property="og:image"
|
||||
content="https://lupyuen.github.io/images/tftp-title.jpg">
|
||||
<meta property="og:type"
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
<loc>https://lupyuen.github.io/</loc>
|
||||
<lastmod>2023-07-09T00:00:00+00:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://lupyuen.github.io/articles/tftp</loc>
|
||||
<lastmod>2023-07-09T00:00:00+00:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://lupyuen.github.io/articles/nuttx2</loc>
|
||||
<lastmod>2023-07-09T00:00:00+00:00</lastmod>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Star64 JH7110 RISC-V SBC: Boot from Network with U-Boot and TFTP
|
||||
|
||||
📝 _19 Jul 2023_
|
||||
📝 _13 Jul 2023_
|
||||
|
||||
![Pine64 Star64 JH7110 64-bit RISC-V SBC](https://lupyuen.github.io/images/tftp-title.jpg)
|
||||
|
||||
|
@ -430,8 +430,6 @@ Which does the same thing as the previous section: Boot NuttX (or Linux) over th
|
|||
|
||||
# What's Next
|
||||
|
||||
TODO
|
||||
|
||||
With Network Boot running, we're now ready for __Automated Testing of Apache NuttX RTOS__ on Star64 SBC!
|
||||
|
||||
(Though we might need a __Smart Power Plug__ to reboot our SBC: [__IKEA TRÅDFRI__](https://www.ikea.com/sg/en/p/tradfri-control-outlet-kit-smart-10364797/) and [__DIRIGERA__](https://www.ikea.com/sg/en/p/dirigera-hub-for-smart-products-white-smart-50503409/))
|
||||
|
@ -687,6 +685,8 @@ __tftpboot__ - boot image via network using TFTP protocol
|
|||
|
||||
(Same as __dhcp__ Command?)
|
||||
|
||||
__Note:__ Don't use the special variable __serverip__, it will change after running [__tftpboot__](https://lupyuen.github.io/articles/tftp#tftpboot-command)!
|
||||
|
||||
## booti Command
|
||||
|
||||
__booti__ - boot Linux kernel 'Image' format from memory
|
||||
|
@ -833,6 +833,6 @@ __fdt__ - flattened device tree utility commands
|
|||
|
||||
\<start>/\<end> - initrd start/end addr
|
||||
|
||||
__NOTE:__ Dereference aliases by omitting the leading '/', e.g. fdt print ethernet0.
|
||||
__Note:__ Dereference aliases by omitting the leading '/', e.g. fdt print ethernet0.
|
||||
|
||||
[(Source)](https://github.com/u-boot/u-boot/blob/master/cmd/fdt.c#L1114-L1162)
|
||||
|
|
Loading…
Reference in a new issue