Hi!
I played a little bit with both version of UBOOT avilable in PACMAN in Manjaro 20.10.
Aside the fact that is you don't backup your extlinux.conf file you my end with an unbootable computer, I found that :
- When using the "mainline" (uboot-pinebookpro) version, booting from SD card don't works
- When using the "bsp" (uboot-pinebookpro-bsp) version, booting from SD card works
It is a normal behavior or is there something wrong in the way I flash the UBOOT?
Here is how i switch between both (on my eMMC)
For MAINLINE I do :
For BSP I do :
Thanks!
I played a little bit with both version of UBOOT avilable in PACMAN in Manjaro 20.10.
Aside the fact that is you don't backup your extlinux.conf file you my end with an unbootable computer, I found that :
- When using the "mainline" (uboot-pinebookpro) version, booting from SD card don't works
- When using the "bsp" (uboot-pinebookpro-bsp) version, booting from SD card works
It is a normal behavior or is there something wrong in the way I flash the UBOOT?
Here is how i switch between both (on my eMMC)
For MAINLINE I do :
Code:
pacman -S uboot-pinebookpro
dd if=/boot/idbloader.img of=/dev/mmcblk2 seek=64 conv=notrunc,fsync
dd if=/boot/u-boot.itb of=/dev/mmcblk2 seek=16384 conv=notrunc,fsync
cp /boot/extlinux/extlinux.conf.sav /boot/extlinux/extlinux.conf
rm /boot/extlinux/*.pacnew
For BSP I do :
Code:
pacman -S uboot-pinebookpro-bsp
dd if=/boot/idbloader.img of=/dev/mmcblk2 seek=64 conv=notrunc
dd if=/boot/uboot.img of=/dev/mmcblk2 seek=16384 conv=notrunc
dd if=/boot/trust.img of=/dev/mmcblk2 seek=24576 conv=notrunc
cp /boot/extlinux/extlinux.conf.sav /boot/extlinux/extlinux.conf
rm /boot/extlinux/*.pacnew
Thanks!