Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions config/sources/families/imx8m.conf
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ case $BOARD in
;;
esac

# bootloader releated
pre_config_uboot_target() {
# bootloader related.
# Use `<hook>__<purpose>` so the framework registers this alongside
# other extensions' hooks at the same stage; a bare
# `pre_config_uboot_target()` would suppress every other registration.
pre_config_uboot_target__imx8m_firmware() {
# get the firmware
rm -rf ${IMX_FIRMWARE}*
curl -fL "https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/${IMX_FIRMWARE}.bin" -o "${IMX_FIRMWARE}.bin" || {
Expand Down
Loading