Skip to content

Commit 2fb8a26

Browse files
Balaji Srinivasanrlubos
Balaji Srinivasan
authored andcommitted
samples: https_client: Rename nRF91 specific overlay files
The pdn and tfm overlay files are only applicable for the nRF91 series. They are now remamed to reflect the same. Readme updated. Additional build configuration added to ensure that the PDN overlay gets built by CI. Fixes CIA-1162. Signed-off-by: Balaji Srinivasan <balaji.srinivasan@nordicsemi.no>
1 parent 0eae030 commit 2fb8a26

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst

+1
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,7 @@ Networking samples
613613
* The format of the :file:`.pem` file to the pem format.
614614
* The sample to automatically convert the :file:`.pem` file to hex format so it can be included.
615615
* The sample to gracefully bring down the network interfaces.
616+
* Renamed :file:`overlay-pdn_ipv4.conf` to :file:`overlay-pdn-nrf91-ipv4.conf` and :file:`overlay-tfm_mbedtls.conf` to :file:`overlay-tfm-nrf91.conf`.
616617

617618
* :ref:`download_sample` sample:
618619

samples/net/https_client/README.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ This certificate is provided in the :file:`samples/net/https_client/cert` folder
4141
To connect to other servers, you might need to provision a different certificate.
4242
See :ref:`cert_dwload` for more information.
4343

44-
Using Mbed TLS and TF-M
45-
***********************
44+
Using Mbed TLS and TF-M on nRF91 Series DKs
45+
*******************************************
4646

4747
This sample supports using Mbed TLS and Trusted Firmware-M (TF-M).
4848
Instead of offloading the TLS sockets into the modem, you can use the Mbed TLS library from Zephyr.
@@ -69,19 +69,19 @@ Building and running
6969

7070
.. include:: /includes/build_and_run_ns.txt
7171

72-
To build the sample with Mbed TLS and TF-M, add the following to your west build command:
72+
To build the sample with Mbed TLS and TF-M for the nRF91 Series DKs, add the following to your west build command:
7373

7474
.. code-block:: none
7575
76-
-DOVERLAY_CONFIG=overlay-tfm_mbedtls.conf
76+
-DOVERLAY_CONFIG=overlay-tfm-nrf91.conf
7777
7878
The default packet data network (PDN) configuration is dual stack, which will use an IPv6 address if available (and IPv4 if not).
7979

80-
For testing IPv4 only, you might need to configure the packet data network settings, adding the following to your build command:
80+
On the nRF91 Series DKs, for testing IPv4 only, you might need to configure the packet data network settings, adding the following to your build command:
8181

8282
.. code-block:: none
8383
84-
-DOVERLAY_CONFIG=overlay-pdn_ipv4.conf
84+
-DOVERLAY_CONFIG=overlay-pdn-nrf91-ipv4.conf
8585
8686
Testing
8787
=======
@@ -136,7 +136,7 @@ Output for the default configuration, where the carrier does support IPv6:
136136
Finished, closing socket.
137137
PDP context 0 deactivated
138138
139-
Output where you override the default packet data network (PDN) configuration to IPv4 only, via the `overlay-pdn_ipv4.conf` overlay:
139+
Output where you override the default packet data network (PDN) configuration to IPv4 only, using the ``overlay-pdn-nrf91-ipv4.conf`` overlay:
140140

141141
.. code-block:: console
142142

samples/net/https_client/sample.yaml

+12-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,18 @@ tests:
1414
tags: ci_build
1515
sample.net.https_client.lte.tfm-mbedtls:
1616
build_only: true
17-
extra_args: OVERLAY_CONFIG="overlay-tfm_mbedtls.conf"
17+
extra_args: OVERLAY_CONFIG="overlay-tfm-nrf91.conf"
18+
integration_platforms:
19+
- nrf9160dk_nrf9160_ns
20+
- nrf9161dk_nrf9161_ns
21+
platform_allow:
22+
- nrf9160dk_nrf9160_ns
23+
- nrf9161dk_nrf9161_ns
24+
- nrf9151dk_nrf9151_ns
25+
tags: ci_build
26+
sample.net.https_client.lte.pdn-ipv4:
27+
build_only: true
28+
extra_args: OVERLAY_CONFIG="overlay-pdn-nrf91-ipv4.conf"
1829
integration_platforms:
1930
- nrf9160dk_nrf9160_ns
2031
- nrf9161dk_nrf9161_ns

0 commit comments

Comments
 (0)