Skip to content

Commit 95cae23

Browse files
committed
Fix the blobs doc URL
The docs are removed from the sdk-nrfxlib and also they don't exactly describe the blobs, so, use the notice as a doc for blobs. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent 9aa68d7 commit 95cae23

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

scripts/update_blobs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def get_wifi_blob_info(name: str) -> BlobInfo:
5555
"1.0.0", # This will be overridden by actual binary parsing
5656
f"nrf_wifi/bin/zephyr/{name}/{WIFI_FW_BIN_NAME}",
5757
f"wifi_fw_bins/{name}/{WIFI_FW_BIN_NAME}",
58-
f"nrf_wifi/doc",
58+
f"https://docs.nordicsemi.com/bundle/ps_nrf7000/page/chapters/notice/doc/notice_on_sw.html",
5959
)
6060

6161

@@ -94,7 +94,7 @@ def render_template(template_path: str, output_path: str, latest_sha: str) -> No
9494
blob_info["rpath"] = blob.rpath
9595
blob_info["version"] = blob.version
9696
blob_info["url"] = f"{nrfxlib_url}/{blob.rpath}"
97-
blob_info["doc_url"] = f"{nrfxlib_url}/{blob.docpath}"
97+
blob_info["doc_url"] = f"{blob.docpath}"
9898

9999
# Download the binary to compute SHA-256 and extract version
100100
response = requests.get(blob_info["url"])

zephyr/module.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ blobs:
1212
license-path: ./LICENSE.txt
1313
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/0e6ff4c030bbebdee9d7595914a7378a70b966b7/nrf_wifi/bin/zephyr/default/nrf70.bin
1414
description: nRF70 Wi-Fi firmware for default mode
15-
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/0e6ff4c030bbebdee9d7595914a7378a70b966b7/nrf_wifi/doc
15+
doc-url: https://docs.nordicsemi.com/bundle/ps_nrf7000/page/chapters/notice/doc/notice_on_sw.html
1616

1717
- path: wifi_fw_bins/scan_only/nrf70.bin
1818
sha256: 57a2688478ef45896bd0975d57fee4e67cd6024cdcebc9993cf6607c9f24bfb4
@@ -21,7 +21,7 @@ blobs:
2121
license-path: ./LICENSE.txt
2222
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/0e6ff4c030bbebdee9d7595914a7378a70b966b7/nrf_wifi/bin/zephyr/scan_only/nrf70.bin
2323
description: nRF70 Wi-Fi firmware for scan_only mode
24-
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/0e6ff4c030bbebdee9d7595914a7378a70b966b7/nrf_wifi/doc
24+
doc-url: https://docs.nordicsemi.com/bundle/ps_nrf7000/page/chapters/notice/doc/notice_on_sw.html
2525

2626
- path: wifi_fw_bins/radio_test/nrf70.bin
2727
sha256: 259a91e13f6f9fdc08bc892e4db398fbe3b982413dce34e74be825e8b5b4444d
@@ -30,7 +30,7 @@ blobs:
3030
license-path: ./LICENSE.txt
3131
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/0e6ff4c030bbebdee9d7595914a7378a70b966b7/nrf_wifi/bin/zephyr/radio_test/nrf70.bin
3232
description: nRF70 Wi-Fi firmware for radio_test mode
33-
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/0e6ff4c030bbebdee9d7595914a7378a70b966b7/nrf_wifi/doc
33+
doc-url: https://docs.nordicsemi.com/bundle/ps_nrf7000/page/chapters/notice/doc/notice_on_sw.html
3434

3535
- path: wifi_fw_bins/system_with_raw/nrf70.bin
3636
sha256: 6de4300d0ebdaa910e2e9d92defc5e656825f9b2eddfdfc2c3d2b259e2c22053
@@ -39,7 +39,7 @@ blobs:
3939
license-path: ./LICENSE.txt
4040
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/0e6ff4c030bbebdee9d7595914a7378a70b966b7/nrf_wifi/bin/zephyr/system_with_raw/nrf70.bin
4141
description: nRF70 Wi-Fi firmware for system_with_raw mode
42-
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/0e6ff4c030bbebdee9d7595914a7378a70b966b7/nrf_wifi/doc
42+
doc-url: https://docs.nordicsemi.com/bundle/ps_nrf7000/page/chapters/notice/doc/notice_on_sw.html
4343

4444
- path: wifi_fw_bins/offloaded_raw_tx/nrf70.bin
4545
sha256: 2a42e24eef2ff5096edfa37e57f2340ac152ee89780fa3bf1f598a4c8460e0f7
@@ -48,4 +48,4 @@ blobs:
4848
license-path: ./LICENSE.txt
4949
url: https://github.com/nrfconnect/sdk-nrfxlib/raw/0e6ff4c030bbebdee9d7595914a7378a70b966b7/nrf_wifi/bin/zephyr/offloaded_raw_tx/nrf70.bin
5050
description: nRF70 Wi-Fi firmware for offloaded_raw_tx mode
51-
doc-url: https://github.com/nrfconnect/sdk-nrfxlib/raw/0e6ff4c030bbebdee9d7595914a7378a70b966b7/nrf_wifi/doc
51+
doc-url: https://docs.nordicsemi.com/bundle/ps_nrf7000/page/chapters/notice/doc/notice_on_sw.html

0 commit comments

Comments
 (0)