configs/imxrt1050-evk: bump U-Boot and switch to use extlinux.conf

Switch to extlinux instead of built in U-Boot script.
Drop custom U-Boot fragment and genimage config.
Update U-Boot from 2024.01 to 2025.07. This new U-Boot now
requires BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y in the defconfig.

Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
[Julien:
 - mention U-Boot bump in commit log
 - add BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
]
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Jesse Taube
2025-07-08 19:47:39 -04:00
committed by Julien Olivain
parent 8f427b78a9
commit 051d145137
4 changed files with 8 additions and 21 deletions

View File

@@ -1,14 +1,3 @@
image boot.vfat {
vfat {
files = {
"zImage",
"imxrt1050-evk.dtb",
}
}
size = 8M
}
image sdcard.img {
hdimage {
}
@@ -27,12 +16,6 @@ image sdcard.img {
size = 512K
}
partition boot {
partition-type = 0xc
bootable = "true"
image = "boot.vfat"
}
partition rootfs {
partition-type = 0x83
image = "rootfs.ext4"

View File

@@ -0,0 +1,4 @@
label buildroot
kernel /boot/zImage
devicetree /boot/imxrt1050-evk.dtb
append console=ttyLP0 root=/dev/mmcblk0p1 rootwait rw

View File

@@ -1,2 +0,0 @@
CONFIG_USE_BOOTCOMMAND=y
CONFIG_BOOTCOMMAND="setenv bootargs console=ttyLP0 root=/dev/mmcblk0p2 rw earlycon rootwait;load mmc 0:1 0x80800000 imxrt1050-evk.dtb;load mmc 0:1 0x80000000 zImage;bootz 0x80000000 - 0x80800000"