主题中讨论的其他器件:DM388
工具/软件:Linux
您好、先生、
我想知道、有什么方法可以在单个程序中构建整个 IPNC RDK 代码、然后该代码在 DM388处理器中传输、因此我们不会每次都需要 SD 卡。
此致、
Akshay Thite。
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
工具/软件:Linux
您好、先生、
我想知道、有什么方法可以在单个程序中构建整个 IPNC RDK 代码、然后该代码在 DM388处理器中传输、因此我们不会每次都需要 SD 卡。
此致、
Akshay Thite。
您好、Akshay、
内核在 RDK 3.9中作为 NFS 引导支持、您必须更改 nfsboot 的 bootargs。 请通过在 u-boot 控制台中打印来检查 mmcboot
#pri mmcboot
#pri bootcmd
#pri mmcargs
//与 mmcboot 类似,您可以定义 nfsboot
//服务器 IP
#setenv serverip 192.168.1.1
//NFS 根路径
#setenv rootpath '/home/vishwanath.patil/dm38x/Source/ipnc_rdk/target/filesys
#setenv nfsargs 'console=${console}root=/dev/nfs rw mem=${mem}nfsroot=$serverip:$rootpath IP=DHCP vram=${vram}${optargets}'
#setenv nfsboot 'run nfsargs;run loaduimage;run loaddtbimage;bootm ${loadaddr}-${loaddtbaddr};'
#setenv bootcmd 'csk_ff_init 1;运行 nfsboot;运行 mmcboot;运行 nandboot;'
引导
谢谢、此致、
Vishwanath Patil