Fabio Estevam | 95736c3 | 2024-09-13 21:56:05 -0300 | [diff] [blame] | 1 | addcons=setenv bootargs ${bootargs} console=${console},${baudrate} |
| 2 | addip=setenv bootargs ${bootargs} ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:${netdev}:off |
| 3 | addmisc=setenv bootargs ${bootargs} ${miscargs} |
| 4 | addmtd=run mtdnand;run mtdspi;setenv bootargs ${bootargs} ${mtdparts} |
| 5 | altbootcmd=run swupdate |
| 6 | bootcmd=run nandboot;run swupdate |
| 7 | bootcount=2 |
| 8 | bootlimit=3 |
| 9 | console=ttymxc3 |
| 10 | cpu=armv7 |
| 11 | ethprime=FEC |
| 12 | fdt_addr_r=0x18000000 |
| 13 | fitfile=fitImage |
| 14 | flash-all-from-sd-card=env default -f -a;load mmc 0:1 10000000 u-boot.scr;source 10000000;saveenv |
| 15 | initrd_high=0xffffffff |
| 16 | kernel_addr_r=0x12000000 |
| 17 | loadaddr=0x12000000 |
| 18 | miscargs=panic=1 |
| 19 | mmcargs=setenv bootargs root=${mmcroot} rw rootwait |
| 20 | mmcboot=if run mmcload;then run mmcargs addcons addmisc;bootm;fi |
| 21 | mmcload=mmc rescan;load mmc 0:${mmcpart} ${kernel_addr_r} boot/fitImage |
| 22 | mmcpart=1 |
| 23 | mmcroot=/dev/mmcblk0p1 |
| 24 | mtdnand=setenv mtdparts mtdparts=gpmi-nand:40m(Kernels),860m(root),-(nand) |
| 25 | mtdspi=setenv mtdparts ${mtdparts}';spi2.0:1024k(bootloader),64k(env1),64k(env2),-(rescue)' |
| 26 | nanboot_fit=tftp ${kernel_addr_r} ${board_name}/${fitfile};run nandargs addip addcons addmtd addmisc;bootm |
| 27 | nandargs=setenv bootargs ubi.mtd=1 root=ubi0:rootfs${ubiroot} rootfstype=ubifs |
| 28 | nandboot=run mtdnand;ubi part Kernels;ubi readvol ${kernel_addr_r} kernel${ubiroot};run nandargs addip addcons addmtd addmisc;bootm ${kernel_addr_r} |
| 29 | net_nfs=tftp ${kernel_addr_r} ${board_name}/${bootfile};tftp ${fdt_addr_r} ${board_name}/${fdt_file};run nfsargs addip addcons addmtd addmisc;bootm ${kernel_addr_r} - ${fdt_addr_r} |
| 30 | net_nfs_fit=tftp ${kernel_addr_r} ${board_name}/${fitfile};run nfsargs addip addcons addmtd addmisc;bootm ${kernel_addr_r} |
| 31 | netmask=255.255.255.0 |
| 32 | nfsargs=setenv bootargs root=/dev/nfs nfsroot=${serverip}:${nfsroot},v3 panic=1 |
| 33 | swupdate=setenv bootargs root=/dev/ram;run addip addcons addmtd addmisc;sf probe;sf read ${kernel_addr_r} 120000 600000;sf read 14000000 730000 800000;bootm ${kernel_addr_r} 14000000 |
| 34 | ubiroot=1 |