> uenvcmd=\
> run loadall; \
> run findroot; \
> echo Using root partition ${rootpart}; \
> setenv fdt_buffer 0x60000; \
> load ${devtype} ${bootpart} ${rdaddr} ${uboot_overlay}; \
> fdt addr ${fdtaddr}; \
> fdt resize ${fdt_buffer}; \
> fdt apply ${rdaddr}; \
> fdt resize ${fdt_buffer}; \
>         echo Done with the edit; \
> if run loadfdt; then \
> echo Loaded ${fdtfile}; \

Wrong order, you placed my "reference example" before the you loaded
the main dtb.  ( i also didn't expect you'd just copy it as is.. so
let's expand it more..)

```
    if run loadfdt; then \
        echo Loaded ${fdtfile}; \
        setenv fdt_buffer 0x60000; \
        load mmc 0:1 ${rdaddr} /lib/firmware/BB-UART4-00A0.dtbo; \
        fdt addr ${fdtaddr}; \
        fdt resize ${fdt_buffer}; \
        fdt apply ${rdaddr}; \
        fdt resize ${fdt_buffer}; \
        load mmc 0:1 ${rdaddr} /lib/firmware/BB-UART1-00A0.dtbo; \
        fdt addr ${fdtaddr}; \
        fdt resize ${fdt_buffer}; \
        fdt apply ${rdaddr}; \
        fdt resize ${fdt_buffer}; \
        <and so on>
        <and so on>
        if run loadimage; then \
            run mmcargs; \
            bootz ${loadaddr} - ${fdtaddr}; \
        fi; \
    fi;
```

Does that now make sense?

Regards,

-- 
Robert Nelson
https://rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CAOCHtYii_phM5fYidqL6tJY9oqLq-FuU_C_H4UwRzQssBDEXkQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to