]>
Commit | Line | Data |
---|---|---|
b648bfc2 HB |
1 | altbootcmd=run ${subbootcmds} |
2 | bootcmd=run ${subbootcmds} | |
ef3f2f08 | 3 | configure=run set_uimage; setenv tftppath ${IVM_Symbol} ; km_setboardid && saveenv && reset |
b648bfc2 | 4 | subbootcmds=tftpfdt tftpkernel nfsargs add_default boot |
d26982cb | 5 | nfsargs=setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${toolchain}/${arch} |
ef3f2f08 TM |
6 | tftpfdt=if run set_fdthigh || test ${arch} != arm; then if tftpboot ${fdt_addr_r} ${tftppath}/fdt_0x${IVM_BoardId}_0x${IVM_HWKey}.dtb; then; else tftpboot ${fdt_addr_r} ${tftppath}/${hostname}.dtb; fi; else true; fi |
7 | tftpkernel=tftpboot ${load_addr_r} ${tftppath}/${uimage} | |
d26982cb | 8 | toolchain=/opt/eldk |
2a7714ce | 9 | rootfssize=0 |
d42a3b74 | 10 | set_uimage=printenv uimage || setenv uimage uImage |