imx6: added fixfdt to bootscript
If a 'fixfdt' uboot script exists, execute it prior to bootm to allow easy bootloader env based fdt fixups and tweaks Signed-off-by: Tim Harvey <tharvey@gateworks.com>
This commit is contained in:
parent
028350907e
commit
35d761c0c5
1 changed files with 3 additions and 0 deletions
|
@ -61,12 +61,15 @@ setenv bootargs "${bootargs}" "${root}" "${video}" "${extra}"
|
|||
if ${fsload} ${loadaddr} ${bootdir}/uImage; then
|
||||
if ${fsload} ${fdt_addr} ${bootdir}/${fdt_file}; then
|
||||
echo Loaded DTB from ${bootdir}/${fdt_file}
|
||||
test -n "$fixfdt" && run fixfdt
|
||||
bootm ${loadaddr} - ${fdt_addr}
|
||||
elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file1}; then
|
||||
echo Loaded DTB from ${bootdir}/${fdt_file1}
|
||||
test -n "$fixfdt" && run fixfdt
|
||||
bootm ${loadaddr} - ${fdt_addr}
|
||||
elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file2}; then
|
||||
echo Loaded DTB from ${bootdir}/${fdt_file2}
|
||||
test -n "$fixfdt" && run fixfdt
|
||||
bootm ${loadaddr} - ${fdt_addr}
|
||||
else
|
||||
echo "Error loading device-tree"
|
||||
|
|
Loading…
Reference in a new issue