Initial commit

This commit is contained in:
g-vidal
2025-10-26 18:06:53 +01:00
commit 05d538e677
85 changed files with 6639 additions and 0 deletions

16
files/boot/uboot.mkimage Normal file
View File

@@ -0,0 +1,16 @@
# Set device tree fdtfile
setenv dtbfile bcm2709-rpi-2-b.dtb
# Tell Linux that it is booting on a Raspberry Pi2/3
setenv machid 0x00000c42
# Save these changes to u-boot's environment
saveenv
# Load the existing Linux kernel into RAM
mmc dev 0
fatload mmc 0:1 ${kernel_addr_r} kernel7.img
fatload mmc 0:1 ${fdt_addr_r} ${dtbfile}
fatload mmc 0:1 ${ramdisk_addr_r} ${initramfs}
# Boot the kernel we have just loaded