mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
ARM: rpi_b: set $fdtfile in default environment
U-Boot names the Raspberry Pi board rpi_b. This means that the common
expression for DTB filename ${soc}-${board}.dtb expands to
bcm2835-rpi_b.dtb. However, the DTB generated by the Linux kernel is
bcm2835-rpi-b.dtb. Set $fdtfile in U-Boot's environment so that scripts
look for the correct DTB filename.
An alternative would be to rename the U-Boot board to rpi-b. However,
that change would be far more invasive, and end up affecting users (i.e
they'd have to change their U-Boot build commands).
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
This commit is contained in:
parent
d53ccdb341
commit
bccaa476f6
1 changed files with 1 additions and 0 deletions
|
|
@ -123,6 +123,7 @@
|
|||
"scriptaddr=0x00000000\0" \
|
||||
"kernel_addr_r=0x01000000\0" \
|
||||
"fdt_addr_r=0x02000000\0" \
|
||||
"fdtfile=bcm2835-rpi-b.dtb\0" \
|
||||
"ramdisk_addr_r=0x02100000\0" \
|
||||
"boot_targets=mmc0\0" \
|
||||
\
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue