This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Linux/PROCESSOR-SDK-AM335X: eMMC boot on BBB

Part Number: PROCESSOR-SDK-AM335X


Tool/software: Linux

In the Beaglebone Black, by default it will boot from eMMC. I erase the eMMC and boot from SD card.  I want to copy MLO, u-boot.img and filesystem from SD card to eMMC then boot from eMMC. So I follow the instructions posted in this forum before.

4. The eMMC is /dev/mmcblk1. Format it this way:
4.01. fdisk /dev/mmcblk1
4.02. o - this clears the existing partitions
4.03. p - this lists all partition tables on the card (there should be none)
4.04. n - create a new partition
4.05. p - primary partition
4.06. 1 - partition number
4.07. 2048 - default value for the first sector
4.08. +16M - last sector / partition size
4.09. t - change the partition type (select partition 1)
4.10. e - change tha partition type to "W95 FAT16 (LBA)"
4.11. a - set the bootable flag for the selected partition (1)
4.12. n - create a new partition
4.13. p - primary partition
4.14. 2 - partition number
4.15. hit Enter to choose the default (next available) value for the first sector
4.16. hit Enter to choose the default (last) value for the last sector
4.17. p - this lists all partition tables on the card (there should be two)
4.18. w - write all the above changes to disk
4.19. umount /dev/mmcblk1p1; mkfs.vfat -F 16 /dev/mmcblk1p1 - format the first partition
4.20. umount /dev/mmcblk1p2; mkfs.ext4 /dev/mmcblk1p2 - format the second partition

5. Copy the {MLO,u-boot.img,uEnv.txt} files to the first partition:
# mkdir boot
# mount /dev/mmcblk1p1 boot
# cp {MLO,u-boot.img,uEnv.txt} boot
# umount boot

6. Copy the root file system to the second partition:
# mkdir root
# mount /dev/mmcblk1p2 root
# tar -xf tisdk-rootfs-image-am335x-evm.tar.gz -C root
# umount root

Then I remove SD and power up the board. It complains "MMC: no card present" in u-boot and never boots successfully. If SD card is plugged in, BBB can boot either S2 button is pressed or not.

I am using pre-compiled files in TI SDK v4.0.0.4 (the one released in July or June 2017).

Attached are boot logs from emmc (emmc.txt) and sd card (sdcard.txt).

U-Boot SPL 2017.01-g9fd60700db (Jun 28 2017 - 17:18:56)                                                               
Trying to boot from MMC1                                                                                              
reading uboot.env                                                                                                     
                                                                                                                      
** Unable to read "uboot.env" from mmc0:1 **                                                                          
Using default environment                                                                                             
                                                                                                                      
reading u-boot.img                                                                                                    
reading u-boot.img                                                                                                    
reading u-boot.img                                                                                                    
reading u-boot.img                                                                                                    
                                                                                                                      
                                                                                                                      
U-Boot 2017.01-g9fd60700db (Jun 28 2017 - 17:18:56 -0400)                                                             
                                                                                                                      
CPU  : AM335X-GP rev 2.1                                                                                              
Model: TI AM335x BeagleBone Black                                                                                     
DRAM:  512 MiB                                                                                                        
NAND:  0 MiB                                                                                                          
MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1                                                                                 
reading uboot.env                                                                                                     
                                                                                                                      
** Unable to read "uboot.env" from mmc0:1 **                                                                          
Using default environment                                                                                             
                                                                                                                      
<ethaddr> not set. Validating first E-fuse MAC                                                                        
Net:   cpsw, usb_ether                                                                                                
Hit any key to stop autoboot:  0                                                                                      
=> pr                                                                                                                 
arch=arm                                                                                                              
args_mmc=run finduuid;setenv bootargs console=${console} ${optargs} root=PARTUUID=${uuid} rw rootfstype=${mmcrootfsty}
baudrate=115200                                                                                                       
board=am335x                                                                                                          
board_name=A335BNLT                                                                                                   
board_rev=000C                                                                                                        
board_serial=1633BBBG0613                                                                                             
boot_a_script=load ${devtype} ${devnum}:${distro_bootpart} ${scriptaddr} ${prefix}${script}; source ${scriptaddr}     
boot_efi_binary=load ${devtype} ${devnum}:${distro_bootpart} ${kernel_addr_r} efi/boot/bootarm.efi; if fdt addr ${fdti
boot_extlinux=sysboot ${devtype} ${devnum}:${distro_bootpart} any ${scriptaddr} ${prefix}extlinux/extlinux.conf       
boot_fdt=try                                                                                                          
boot_fit=0                                                                                                            
boot_net_usb_start=usb start                                                                                          
boot_prefixes=/ /boot/                                                                                                
boot_script_dhcp=boot.scr.uimg                                                                                        
boot_scripts=boot.scr.uimg boot.scr                                                                                   
boot_targets=mmc0 legacy_mmc0 mmc1 legacy_mmc1 nand0 pxe dhcp                                                         
bootcmd=if test ${boot_fit} -eq 1; then run update_to_fit;fi;run findfdt; run init_console; run envboot; run distro_bd
bootcmd_dhcp=run boot_net_usb_start; if dhcp ${scriptaddr} ${boot_script_dhcp}; then source ${scriptaddr}; fi;setenv ;
bootcmd_legacy_mmc0=setenv mmcdev 0; setenv bootpart 0:2 ; run mmcboot                                                
bootcmd_legacy_mmc1=setenv mmcdev 1; setenv bootpart 1:2 ; run mmcboot                                                
bootcmd_mmc0=setenv devnum 0; run mmc_boot                                                                            
bootcmd_mmc1=setenv devnum 1; run mmc_boot                                                                            
bootcmd_nand=run nandboot                                                                                             
bootcmd_pxe=run boot_net_usb_start; dhcp; if pxe get; then pxe boot; fi                                               
bootcount=1                                                                                                           
bootdelay=2                                                                                                           
bootdir=/boot                                                                                                         
bootenvfile=uEnv.txt                                                                                                  
bootfile=zImage                                                                                                       
bootm_size=0x10000000                                                                                                 
bootpart=0:2                                                                                                          
bootscript=echo Running bootscript from mmc${mmcdev} ...; source ${loadaddr}                                          
console=ttyO0,115200n8                                                                                                
cpu=armv7                                                                                                             
dfu_alt_info_emmc=rawemmc raw 0 3751936                                                                               
dfu_alt_info_mmc=boot part 0 1;rootfs part 0 2;MLO fat 0 1;MLO.raw raw 0x100 0x100;u-boot.img.raw raw 0x300 0x400;spl1
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;u-boot-9
dfu_alt_info_ram=kernel ram 0x80200000 0x4000000;fdt ram 0x80f80000 0x80000;ramdisk ram 0x81000000 0x4000000          
distro_bootcmd=for target in ${boot_targets}; do run bootcmd_${target}; done                                          
efi_dtb_prefixes=/ /dtb/ /dtb/current/                                                                                
envboot=mmc dev ${mmcdev}; if mmc rescan; then echo SD/MMC found on device ${mmcdev};if run loadbootscript; then run ;
eth1addr=b0:d5:cc:fd:ae:27                                                                                            
ethact=cpsw                                                                                                           
ethaddr=b0:d5:cc:fd:ae:25                                                                                             
fdt_addr_r=0x88000000                                                                                                 
fdtaddr=0x88000000                                                                                                    
fdtcontroladdr=9df294f8                                                                                               
fdtfile=undefined                                                                                                     
findfdt=if test $board_name = A335BONE; then setenv fdtfile am335x-bone.dtb; fi; if test $board_name = A335BNLT; then 
finduuid=part uuid mmc ${bootpart} uuid                                                                               
fit_bootfile=fitImage                                                                                                 
fit_loadaddr=0x87000000                                                                                               
importbootenv=echo Importing environment from mmc${mmcdev} ...; env import -t ${loadaddr} ${filesize}                 
init_console=if test $board_name = A335_ICE; then setenv console ttyO3,115200n8;else setenv console ttyO0,115200n8;fi;
kernel_addr_r=0x82000000                                                                                              
load_efi_dtb=load ${devtype} ${devnum}:${distro_bootpart} ${fdt_addr_r} ${prefix}${efi_fdtfile}                       
loadaddr=0x82000000                                                                                                   
loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenvfile}                                                          
loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr                                                                
loadfdt=load ${devtype} ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}                                                  
loadfit=run args_mmc; bootm ${loadaddr}#${fdtfile};                                                                   
loadimage=load ${devtype} ${bootpart} ${loadaddr} ${bootdir}/${bootfile}                                              
loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz                                                                   
mmc_boot=if mmc dev ${devnum}; then setenv devtype mmc; run scan_dev_for_boot_part; fi                                
mmcboot=mmc dev ${mmcdev}; setenv devnum ${mmcdev}; setenv devtype mmc; if mmc rescan; then echo SD/MMC found on devi;
mmcdev=0                                                                                                              
mmcloados=run args_mmc; if test ${boot_fdt} = yes || test ${boot_fdt} = try; then if run loadfdt; then bootz ${loadad;
mmcrootfstype=ext4 rootwait                                                                                           
mtdids=nand0=nand.0                                                                                                   
mtdparts=mtdparts=nand.0:128k(NAND.SPL),128k(NAND.SPL.backup1),128k(NAND.SPL.backup2),128k(NAND.SPL.backup3),256k(NAN)
nandargs=setenv bootargs console=${console} ${optargs} root=${nandroot} rootfstype=${nandrootfstype}                  
nandboot=echo Booting from nand ...; run nandargs; nand read ${fdtaddr} NAND.u-boot-spl-os; nand read ${loadaddr} NAN}
nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system,2048                                                                 
nandrootfstype=ubifs rootwait=1                                                                                       
netargs=setenv bootargs console=${console} ${optargs} root=/dev/nfs nfsroot=${serverip}:${rootpath},${nfsopts} rw ip=p
netboot=echo Booting from network ...; setenv autoload no; dhcp; run netloadimage; run netloadfdt; run netargs; bootz}
netloadfdt=tftp ${fdtaddr} ${fdtfile}                                                                                 
netloadimage=tftp ${loadaddr} ${bootfile}                                                                             
nfsopts=nolock                                                                                                        
partitions=uuid_disk=${uuid_gpt_disk};name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}                           
pxefile_addr_r=0x80100000                                                                                             
ramargs=setenv bootargs console=${console} ${optargs} root=${ramroot} rootfstype=${ramrootfstype}                     
ramboot=echo Booting from ramdisk ...; run ramargs; bootz ${loadaddr} ${rdaddr} ${fdtaddr}                            
ramdisk_addr_r=0x88080000                                                                                             
ramroot=/dev/ram0 rw                                                                                                  
ramrootfstype=ext2                                                                                                    
rdaddr=0x88080000                                                                                                     
rootpath=/export/rootfs                                                                                               
scan_dev_for_boot=echo Scanning ${devtype} ${devnum}:${distro_bootpart}...; for prefix in ${boot_prefixes}; do run sc;
scan_dev_for_boot_part=part list ${devtype} ${devnum} -bootable devplist; env exists devplist || setenv devplist 1; fe
scan_dev_for_efi=setenv efi_fdtfile ${fdtfile}; if test -z "${fdtfile}" -a -n "${soc}"; then setenv efi_fdtfile ${soce
scan_dev_for_extlinux=if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}extlinux/extlinux.conf; then echo Fi
scan_dev_for_scripts=for script in ${boot_scripts}; do if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}${e
scriptaddr=0x80000000                                                                                                 
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} ${spiimgsiz}
spibusno=0                                                                                                            
spiimgsize=0x362000                                                                                                   
spiroot=/dev/mtdblock4 rw                                                                                             
spirootfstype=jffs2                                                                                                   
spisrcaddr=0xe0000                                                                                                    
static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off                                              
stderr=serial@44e09000                                                                                                
stdin=serial@44e09000                                                                                                 
stdout=serial@44e09000                                                                                                
update_to_fit=setenv loadaddr ${fit_loadaddr}; setenv bootfile ${fit_bootfile}                                        
usb_boot=usb start; if usb dev ${devnum}; then setenv devtype usb; run scan_dev_for_boot_part; fi                     
usbnet_devaddr=b0:d5:cc:fd:ae:25                                                                                      
vendor=ti                                                                                                             
ver=U-Boot 2017.01-g9fd60700db (Jun 28 2017 - 17:18:56 -0400)                                                         

U-Boot SPL 2017.01-g9fd60700db (Jun 28 2017 - 17:18:56)                                                               
Trying to boot from MMC2                                                                                              
Card did not respond to voltage select!                                                                               
** Bad device mmc 0 **                                                                                                
Using default environment                                                                                             
                                                                                                                      
reading u-boot.img                                                                                                    
reading u-boot.img                                                                                                    
reading u-boot.img                                                                                                    
reading u-boot.img                                                                                                    
                                                                                                                      
                                                                                                                      
U-Boot 2017.01-g9fd60700db (Jun 28 2017 - 17:18:56 -0400)                                                             
                                                                                                                      
CPU  : AM335X-GP rev 2.1                                                                                              
Model: TI AM335x BeagleBone Black                                                                                     
DRAM:  512 MiB                                                                                                        
NAND:  0 MiB                                                                                                          
MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1                                                                                 
MMC: no card present                                                                                                  
** Bad device mmc 0 **                                                                                                
Using default environment                                                                                             
                                                                                                                      
<ethaddr> not set. Validating first E-fuse MAC                                                                        
Net:   cpsw, usb_ether                                                                                                
Hit any key to stop autoboot:  0                                                                                      
MMC: no card present                                                                                                  
MMC: no card present                                                                                                  
MMC: no card present                                                                                                  
MMC: no card present                                                                                                  
MMC: no card present                                                                                                  
MMC: no card present                                                                                                  
## Error: "bootcmd_nand0" not defined                                                                                 
starting USB...                                                                                                       
USB0:   Port not available.                                                                                           
cpsw Waiting for PHY auto negotiation to complete......... TIMEOUT !                                                  
BOOTP broadcast 1                                                                                                     
BOOTP broadcast 2                                                                                                     
BOOTP broadcast 3                                                                                                     
BOOTP broadcast 4                                                                                                     
=> pr                                                                                                                 
arch=arm                                                                                                              
args_mmc=run finduuid;setenv bootargs console=${console} ${optargs} root=PARTUUID=${uuid} rw rootfstype=${mmcrootfsty}
baudrate=115200                                                                                                       
board=am335x                                                                                                          
board_name=A335BNLT                                                                                                   
board_rev=000C                                                                                                        
board_serial=1633BBBG0613                                                                                             
boot_a_script=load ${devtype} ${devnum}:${distro_bootpart} ${scriptaddr} ${prefix}${script}; source ${scriptaddr}     
boot_efi_binary=load ${devtype} ${devnum}:${distro_bootpart} ${kernel_addr_r} efi/boot/bootarm.efi; if fdt addr ${fdti
boot_extlinux=sysboot ${devtype} ${devnum}:${distro_bootpart} any ${scriptaddr} ${prefix}extlinux/extlinux.conf       
boot_fdt=try                                                                                                          
boot_fit=0                                                                                                            
boot_net_usb_start=usb start                                                                                          
boot_prefixes=/ /boot/                                                                                                
boot_script_dhcp=boot.scr.uimg                                                                                        
boot_scripts=boot.scr.uimg boot.scr                                                                                   
boot_targets=mmc0 legacy_mmc0 mmc1 legacy_mmc1 nand0 pxe dhcp                                                         
bootcmd=if test ${boot_fit} -eq 1; then run update_to_fit;fi;run findfdt; run init_console; run envboot; run distro_bd
bootcmd_dhcp=run boot_net_usb_start; if dhcp ${scriptaddr} ${boot_script_dhcp}; then source ${scriptaddr}; fi;setenv ;
bootcmd_legacy_mmc0=setenv mmcdev 0; setenv bootpart 0:2 ; run mmcboot                                                
bootcmd_legacy_mmc1=setenv mmcdev 1; setenv bootpart 1:2 ; run mmcboot                                                
bootcmd_mmc0=setenv devnum 0; run mmc_boot                                                                            
bootcmd_mmc1=setenv devnum 1; run mmc_boot                                                                            
bootcmd_nand=run nandboot                                                                                             
bootcmd_pxe=run boot_net_usb_start; dhcp; if pxe get; then pxe boot; fi                                               
bootcount=1                                                                                                           
bootdelay=2                                                                                                           
bootdir=/boot                                                                                                         
bootenvfile=uEnv.txt                                                                                                  
bootfile=zImage                                                                                                       
bootm_size=0x10000000                                                                                                 
bootpart=1:2                                                                                                          
bootscript=echo Ruotscript from mmc${mmcdev} ...; source ${loadaddr}                                                  
console=ttyO0,115200n8                                                                                                
cpu=armv7                                                                                                             
devnum=1                                                                                                              
devtype=mmc                                                                                                           
dfu_alt_info_emmc=rawemmc raw 0 3751936                                                                               
dfu_alt_info_mmc=boot part 0 1;rootfs part 0 2;MLO fat 0 1;MLO.raw raw 0x100 0x100;u-boot.img.raw raw 0x300 0x400;spl1
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;u-boot-9
dfu_alt_info_ram=kernel ram 0x80200000 0x4000000;fdt ram 0x80f80000 0x80000;ramdisk ram 0x81000000 0x4000000          
distro_bootcmd=for target in ${boot_targets}; do run bootcmd_${target}; done                                          
efi_dtb_prefixes=/ /dtb/ /dtb/current/                                                                                
envboot=mmc dev ${mmcdev}; if mmc rescan; then echo SD/MMC found on device ${mmcdev};if run loadbootscript; then run ;
eth1addr=b0:d5:cc:fd:ae:27                                                                                            
ethact=cpsw                                                                                                           
ethaddr=b0:d5:cc:fd:ae:25                                                                                             
fdt_addr_r=0x88000000                                                                                                 
fdtaddr=0x88000000                                                                                                    
fdtcontroladdr=9df294f8                                                                                               
fdtfile=am335x-boneblack.dtb                                                                                          
findfdt=if test $board_name = A335BONE; then setenv fdtfile am335x-bone.dtb; fi; if test $board_name = A335BNLT; then 
finduuid=part uuid mmc ${bootpart} uuid                                                                               
fit_bootfile=fitImage                                                                                                 
fit_loadaddr=0x87000000                                                                                               
importbootenv=echo Importing environment from mmc${mmcdev} ...; env import -t ${loadaddr} ${filesize}                 
init_console=if test $board_name = A335_ICE; then setenv console ttyO3,115200n8;else setenv console ttyO0,115200n8;fi;
kernel_addr_r=0x82000000                                                                                              
load_efi_dtb=load ${devtype} ${devnum}:${distro_bootpart} ${fdt_addr_r} ${prefix}${efi_fdtfile}                       
loadaddr=0x82000000                                                                                                   
loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenvfile}                                                          
loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr                                                                
loadfdt=load ${devtype} ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}                                                  
loadfit=run args_mmc; bootm ${loadaddr}#${fdtfile};                                                                   
loadimage=load ${devtype} ${bootpart} ${loadaddr} ${bootdir}/${bootfile}                                              
loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz                                                                   
mmc_boot=if mmc dev ${devnum}; then setenv devtype mmc; run scan_dev_for_boot_part; fi                                
mmcboot=mmc dev ${mmcdev}; setenv devnum ${mmcdev}; setenv devtype mmc; if mmc rescan; then echo SD/MMC found on devi;
mmcdev=1                                                                                                              
mmcloados=run args_mmc; if test ${boot_fdt} = yes || test ${boot_fdt} = try; then if run loadfdt; then bootz ${loadad;
mmcrootfstype=ext4 rootwait                                                                                           
mtdids=nand0=nand.0                                                                                                   
mtdparts=mtdparts=nand.0:128k(NAND.SPL),128k(NAND.SPL.backup1),128k(NAND.SPL.backup2),128k(NAND.SPL.backup3),256k(NAN)
nandargs=setenv bootargs console=${console} ${optargs} root=${nandroot} rootfstype=${nandrootfstype}                  
nandboot=echo Booting from nand ...; run nandargs; nand read ${fdtaddr} NAND.u-boot-spl-os; nand read ${loadaddr} NAN}
nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system,2048                                                                 
nandrootfstype=ubifs rootwait=1                                                                                       
netargs=setenv bootargs console=${console} ${optargs} root=/dev/nfs nfsroot=${serverip}:${rootpath},${nfsopts} rw ip=p
netboot=echo Booting from network ...; setenv autoload no; dhcp; run netloadimage; run netloadfdt; run netargs; bootz}
netloadfdt=tftp ${fdtaddr} ${fdtfile}                                                                                 
netloadimage=tftp ${loadaddr} ${bootfile}                                                                             
nfsopts=nolock                                                                                                        
partitions=uuid_disk=${uuid_gpt_disk};name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}                           
pxefile_addr_r=0x80100000                                                                                             
ramargs=setenv bootargs console=${console} ${optargs} root=${ramroot} rootfstype=${ramrootfstype}                     
ramboot=echo Booting from ramdisk ...; run ramargs; bootz ${loadaddr} ${rdaddr} ${fdtaddr}                            
ramdisk_addr_r=0x88080000                                                                                             
ramroot=/dev/ram0 rw                                                                                                  
ramrootfstype=ext2                                                                                                    
rdaddr=0x88080000                                                                                                     
rootpath=/export/rootfs                                                                                               
scan_dev_for_boot=echo Scanning ${devtype} ${devnum}:${distro_bootpart}...; for prefix in ${boot_prefixes}; do run sc;
scan_dev_for_boot_part=part list ${devtype} ${devnum} -bootable devplist; env exists devplist || setenv devplist 1; fe
scan_dev_for_efi=setenv efi_fdtfile ${fdtfile}; if test -z "${fdtfile}" -a -n "${soc}"; then setenv efi_fdtfile ${soce
scan_dev_for_extlinux=if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}extlinux/extlinux.conf; then echo Fi
scan_dev_for_scripts=for script in ${boot_scripts}; do if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}${e
scriptaddr=0x80000000                                                                                                 
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} ${spiimgsiz}
spibusno=0                                                                                                            
spiimgsize=0x362000                                                                                                   
spiroot=/dev/mtdblock4 rw                                                                                             
spirootfstype=jffs2                                                                                                   
spisrcaddr=0xe0000                                                                                                    
static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off                                              
stderr=serial@44e09000                                                                                                
stdin=serial@44e09000                                                                                                 
stdout=serial@44e09000                                                                                                
update_to_fit=setenv loadaddr ${fit_loadaddr}; setenv bootfile ${fit_bootfile}                                        
usb_boot=usb start; if usb dev ${devnum}; then setenv devtype usb; run scan_dev_for_boot_part; fi                     
usbnet_devaddr=b0:d5:cc:fd:ae:25                                                                                      
vendor=ti                                                                                                             
ver=U-Boot 2017.01-g9fd60700db (Jun 28 2017 - 17:18:56 -0400)