uboot-env.txt 505 B

12345678910111213141516
  1. # this assumes ${scriptaddr} is already set!!
  2. # Try to boot a fitImage from eMMC/SD
  3. setenv fdt_high 0xffffffffffffffff
  4. setenv initrd_high 0xffffffffffffffff
  5. load mmc 0:${distro_bootpart} ${scriptaddr} mpfs_icicle.itb;
  6. bootm start ${scriptaddr}#kernel_dtb;
  7. bootm loados ${scriptaddr};
  8. # Try to load a ramdisk if available inside fitImage
  9. bootm ramdisk;
  10. bootm prep;
  11. fdt set /soc/ethernet@20112000 mac-address ${icicle_mac_addr0};
  12. fdt set /soc/ethernet@20110000 mac-address ${icicle_mac_addr1};
  13. bootm go;