Hi Stefan, i am not sure where is the issue but here are my tips how i built new meinline u-boot few months ago... https://linux-sunxi.org/Mainline_U-Boot Install additional packages: $ apt-get install swig python-dev python3-dev Build HowTo: $ git clone git://git.denx.de/u-boot.git $ git checkout v2020.04 # or whatever is latest $ make CROSS_COMPILE=arm-linux-gnueabihf- A20-OLinuXino_MICRO-eMMC_defconfig $ make CROSS_COMPILE=arm-linux-gnueabihf- <board_name>_defconfig # at this point i created new branch and create default configuration for my custom tcs-7Zoll device using the 'savedefconfig' method (this is only optional step). $ make CROSS_COMPILE=arm-linux-gnueabihf- menuconfig # here you can check if SPL is turned on (it should be enabled by default) $ make CROSS_COMPILE=arm-linux-gnueabihf- # voilaaa u-boot-sunxi-with-splbin is here
Milos On Sunday, August 9, 2020 at 10:20:57 PM UTC+2 Stefan Monnier wrote: > http://linux-sunxi.org/Bootable_SD_card says that to install U-Boot > coming wither from mainline of legacy should be done with: > > dd if=u-boot-sunxi-with-spl.bin of=${card} bs=1024 seek=8 > > [ except for U-Boot v2013.07 or earlier. ] > > But when I build U-Boot from the mainline's `master` branch, I don't get > any `u-boot-sunxi-with-spl.bin` file. > > Did the procedure change? Where is it documented now? > > > Stefan > > -- You received this message because you are subscribed to the Google Groups "linux-sunxi" 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/linux-sunxi/b158d8d9-98ea-45ca-b499-de2a3164fac1n%40googlegroups.com.
