Skip to content

Commit

Permalink
MBa8MPxL-RAS314: fix firmware file in root folder
Browse files Browse the repository at this point in the history
- wget and cp lead to remaining file in root
- use mv instead

Signed-off-by: Martin Schmiedel <[email protected]>
  • Loading branch information
schmiedelm authored and igorpecovnik committed Feb 10, 2025
1 parent 9f8f9f5 commit 04873d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/boards/mba8mpxl-ras314.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function post_family_tweaks_bsp__mba8mpxl-ras314() {
wget https://github.com/nxp-imx/imx-firmware/raw/lf-6.6.3_1.0.0/nxp/FwImage_8997/pcieuart8997_combo_v4.bin
run_host_command_logged mkdir -pv --mode=755 "$destination/lib/firmware/" || exit_with_error "Unable to mkdir firmware"
run_host_command_logged mkdir -v --mode=775 "$destination/lib/firmware/mrvl/" || exit_with_error "Unable to mkdir mrvl"
run_host_command_logged cp -Pv "pcieuart8997_combo_v4.bin" "$destination/lib/firmware/mrvl/" || exit_with_error "Unable to copy mrvl firmware"
run_host_command_logged mv -v "pcieuart8997_combo_v4.bin" "$destination/lib/firmware/mrvl/" || exit_with_error "Unable to copy mrvl firmware"

# Add udev rule to delay btnxpuart loading
cat <<- NXP_UDEV_RULE > "${destination}"/etc/udev/rules.d/10-nxp-bluetooth-delay.rules
Expand Down

0 comments on commit 04873d4

Please sign in to comment.