Skip to content

Commit be5fed1

Browse files
abhinavnxpmmahadevan108
authored andcommitted
zephyr: src: rt: Updated CMakelist
Updated cmakelist to use combo firmware for IW416 similar to other SoCs. Also made blobs verify as optional and will generate warnng if blobs are not fetched correctly. This is for anyone to use different firmware from github (eg. downstream testing or private firmware testing etc.) Signed-off-by: Abhinav Kulkarni <abhinav.kulkarni@nxp.com>
1 parent 5e5a498 commit be5fed1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zephyr/src/rt/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if(CONFIG_NXP_MONOLITHIC_WIFI OR CONFIG_BT_H4_NXP_CTLR)
1717
list(APPEND wifi_bt_binary_blobs_list ${hal_blobs_dir}/8987/${wifi_binary_blob_name})
1818
elseif(CONFIG_NXP_IW416)
1919
list(APPEND output_includes_list ${ZEPHYR_BINARY_DIR}/include/generated/iw416_wifi_fw.bin.inc)
20-
set(wifi_binary_blob_name sdIW416_wlan.bin)
20+
set(wifi_binary_blob_name sduartIW416_wlan_bt.bin)
2121
zephyr_library_sources(${CMAKE_CURRENT_LIST_DIR}/IW416/IW416_cpu1.c)
2222
list(APPEND wifi_bt_binary_blobs_list ${hal_blobs_dir}/IW416/${wifi_binary_blob_name})
2323
elseif(CONFIG_NXP_88W8801)
@@ -65,7 +65,7 @@ if(CONFIG_NXP_MONOLITHIC_WIFI OR CONFIG_BT_H4_NXP_CTLR)
6565
foreach(i RANGE ${count})
6666
list(GET binary_blobs_list ${i} binary_blob)
6767
list(GET output_includes_list ${i} output_include)
68-
zephyr_blobs_verify(FILES ${binary_blob} REQUIRED)
68+
zephyr_blobs_verify(FILES ${binary_blob})
6969
message(STATUS " generate include of binary blob: ${binary_blob}")
7070
generate_inc_file_for_target(app ${binary_blob} ${output_include})
7171
endforeach()

0 commit comments

Comments
 (0)