On Thu, Jul 2, 2020 at 9:17 AM Bob Ham <[email protected]> wrote: > > On 02/07/2020 15:12, Robert Nelson wrote: > > On Thu, Jul 2, 2020 at 8:51 AM Bob Ham <[email protected]> wrote: > > >> Can anyone tell me whether the fix is going to appear in u-boot? > > > > The fix has been in u-boot for a few years. > > > > It relies on the device-tree path, we are still shipping the old > > "board" file path in u-boot. > > Robert, thanks for your response. > > Could you possibly explain a little more about what you mean here? What > are the device-tree path and the board file path? What can I change in > order to get this to work?
Step 1, configure your image for extlinux.conf booting.. cd /opt/scripts/tools/ git pull sudo ./generate_extlinux.sh Step 2, build u-boot master Use this version of gcc: https://www.digikey.com/eewiki/display/linuxonarm/BeagleBone+Black#BeagleBoneBlack-ARMCrossCompiler:GCC git clone https://github.com/u-boot/u-boot --depth=1 cd u-boot/ make ARCH=arm CROSS_COMPILE=${CC} distclean make ARCH=arm CROSS_COMPILE=${CC} am335x_evm_defconfig make ARCH=arm CROSS_COMPILE=${CC} Then write these files to your microSD card: sudo dd if=./MLO of=/dev/sdb count=1 seek=1 bs=128k sudo dd if=./u-boot.img of=/dev/sdb count=2 seek=1 bs=384k 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/CAOCHtYh_kApYX5bEESTWD9RXkg-WcDo4eXLUDyHqVjnv%3DoXp7w%40mail.gmail.com.
