1altbootcmd=run ${subbootcmds} 2bootcmd=run ${subbootcmds} 3configure=run set_uimage; run set_tftppath; km_setboardid && run try_import_nfs_path && saveenv && reset 4subbootcmds=tftpfdt tftpkernel nfsargs add_default boot 5nfsargs=setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${toolchain}/${arch} 6tftpfdt=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 7tftpkernel=tftpboot ${load_addr_r} ${tftppath}/${uimage} 8toolchain=/opt/eldk 9rootfssize=0 10set_uimage=printenv uimage || setenv uimage uImage 11set_tftppath=if test ${hostname} = kmcoge5un; then setenv tftppath CI5UN; else if test ${hostname} = kmcoge5ne; then setenv tftppath CI5NE; else setenv tftppath ${IVM_Symbol}; fi; fi 12try_import_nfs_path=if tftpboot ${load_addr_r} ${tftppath}/nfs-path.txt; then env import -t ${load_addr_r} ${filesize}; else echo no auto nfs path imported; echo you can set nfsargs in /tftpboot/${tftppath}/nfs-path.txt and rerun develop; fi 13