Created
May 21, 2015 19:37
-
-
Save RobertCNelson/aee0f911171f6573b54c to your computer and use it in GitHub Desktop.
tre
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| arch=arm | |
| baudrate=115200 | |
| board=am335x | |
| board_name=MASERATI | |
| board_rev=00A1 | |
| bootcmd=run findfdt; mmc dev ${mmcdev}; if mmc rescan; then echo SD/MMC found on device ${mmcdev};if run loadbootenv; then echo Loaded environment from ${bootenv};run importbootenv;fi;if test -n $uenvcmd; then echo Running uenvcmd ...;run uenvcmd;fi;if run loaduimage; then run loadfdt;run mmcboot;fi;else run nandboot;fi; | |
| bootdelay=1 | |
| bootdir=/boot | |
| bootenv=uEnv.txt | |
| bootfile=uImage | |
| bootpart=0:3 | |
| console=ttyO0,115200n8 | |
| cpu=armv7 | |
| dfu_alt_info_emmc=rawemmc mmc 0 3751936 | |
| dfu_alt_info_mmc=boot part 0 1;rootfs part 0 3;MLO fat 0 1;MLO.raw mmc 100 100;u-boot.img.raw mmc 300 3C0;u-boot.img fat 0 1;uEnv.txt fat 0 1 | |
| dfu_alt_info_nand=SPL part 0 1;SPL.backup1 part 0 2;SPL.backup2 part 0 3;SPL.backup3 part 0 4;u-boot part 0 5;kernel part 0 7;rootfs part 0 8 | |
| ethact=cpsw | |
| ethaddr=1c:ba:8c:a2:ed:68 | |
| fdt_high=0xffffffff | |
| fdtaddr=0x80F80000 | |
| findfdt=if test $board_name = A335BONE; then setenv fdtfile am335x-bone.dtb; fi; if test $board_name = A335BNLT; then setenv fdtfile am335x-boneblack.dtb; fi; if test $board_name = MASERATI; then setenv fdtfile arduino-tre.dtb; fi; if test $board_name = A33515BB; then setenv fdtfile am335x-evm.dtb; fi; if test $board_name = A335X_SK; then setenv fdtfile am335x-evmsk.dtb; fi | |
| importbootenv=echo Importing environment from mmc ...; env import -t $loadaddr $filesize | |
| loadaddr=0x80200000 | |
| loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv} | |
| loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile} | |
| loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz | |
| loaduimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile} | |
| mmcargs=setenv bootargs console=${console} ${optargs} root=${mmcroot} rootfstype=${mmcrootfstype} | |
| mmcboot=echo Booting from mmc ...; run mmcargs; bootm ${loadaddr} - ${fdtaddr} | |
| mmcdev=0 | |
| mmcroot=/dev/mmcblk0p3 ro | |
| mmcrootfstype=ext4 rootwait | |
| mtdids=nand0=omap2-nand.0 | |
| mtdparts=mtdparts=omap2-nand.0:128k(SPL),128k(SPL.backup1),128k(SPL.backup2),128k(SPL.backup3),1792k(u-boot),128k(u-boot-spl-os),128k(u-boot-env),5m(kernel),-(rootfs) | |
| nandargs=setenv bootargs console=${console} ${optargs} root=${nandroot} rootfstype=${nandrootfstype} | |
| nandboot=echo Booting from nand ...; run nandargs; nand read ${loadaddr} ${nandsrcaddr} ${nandimgsize}; bootm ${loadaddr} | |
| nandimgsize=0x500000 | |
| nandroot=ubi0:rootfs rw ubi.mtd=7,2048 | |
| nandrootfstype=ubifs rootwait=1 | |
| nandsrcaddr=0x280000 | |
| netargs=setenv bootargs console=${console} ${optargs} root=/dev/nfs nfsroot=${serverip}:${rootpath},${nfsopts} rw ip=dhcp | |
| netboot=echo Booting from network ...; setenv autoload no; dhcp; tftp ${loadaddr} ${bootfile}; tftp ${fdtaddr} ${fdtfile}; run netargs; bootm ${loadaddr} - ${fdtaddr} | |
| nfsopts=nolock | |
| ramargs=setenv bootargs console=${console} ${optargs} root=${ramroot} rootfstype=${ramrootfstype} | |
| ramboot=echo Booting from ramdisk ...; run ramargs; bootm ${loadaddr} ${rdaddr} ${fdtaddr} | |
| ramroot=/dev/ram0 rw ramdisk_size=65536 initrd=${rdaddr},64M | |
| ramrootfstype=ext2 | |
| rdaddr=0x81000000 | |
| rootpath=/export/rootfs | |
| soc=am33xx | |
| spiargs=setenv bootargs console=${console} ${optargs} root=${spiroot} rootfstype=${spirootfstype} | |
| spiboot=echo Booting from spi ...; run spiargs; sf probe ${spibusno}:0; sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; bootm ${loadaddr} | |
| spibusno=0 | |
| spiimgsize=0x362000 | |
| spiroot=/dev/mtdblock4 rw | |
| spirootfstype=jffs2 | |
| spisrcaddr=0xe0000 | |
| static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off | |
| stderr=serial | |
| stdin=serial | |
| stdout=serial | |
| usbnet_devaddr=1c:ba:8c:a2:ed:68 | |
| vendor=ti | |
| ver=U-Boot 2013.04-g74ce065-dirty (Apr 13 2014 - 12:09:20) | |
| Environment size: 3696/131068 bytes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment