There are two kinds of bootable SD cards for LS1043ARDB: One is to be used with u-boot in NOR flash, other is all by itself no NOR flash which I call "fully bootable SD card"
I've been trying to build a fully bootable SD card using instructions from the below NXP Community links that my NXP FAE gave me:
How to boot from SD/MMC on the LS1043ARDB
how do i get u-boot-with-spl-pbl.bin?
However I found that the name of u-boot file is out dated and renamed in the SDK as mentioned in the below link
///////////////////////////////////
Rahul, you'll find that a plain old uboot repo (like on DENX or the mirror on github ) produces images named u-boot-with-spl-pbl.bin when configured for machines like the LS1046ARDB. The yocto-based NXP SDK checks out and builds the same uboot repo, but ends up calling the images something different, as you discovered. I believe the SDK may also build the final images differently than the default uboot does. The documentation was probably written for the original uboot repo without accounting for the renaming that happened in the SDK.
Creating LS1021A u-boot image to use with SD card
/////////////////////////////////////
Use the following page:
https://source.codeaurora.org/external/qoriq/qoriq-components/yocto-sdk/about/
Use the following commands for u-boot building:
bitbake -c cleansstate u-boot
bitbake -c patch u-boot // source of the u-boot is available using the following path:
// /yocto-sdk/build_ls1043ardb/tmp/work/ls1043ardb-fsl-linux/u-boot-qoriq/2018.03+fslgit-r0/git
bitbake -c compile -f u-boot
bitbake u-boot
Have a great day,
Pavel Chubakov
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------
Hi Pavel,
Thank you very much for your instruction.
I will give it a try and let you know.
Best,
Manh