In order to bring consistency in-tree, migrate all samples to the use
the new prefix <zephyr/...>. Note that the conversion has been scripted:
```python
from pathlib import Path
import re
EXTENSIONS = ("c", "h", "cpp", "rst")
for p in Path(".").glob("samples/**/*"):
if not p.is_file() or p.suffix and p.suffix[1:] not in EXTENSIONS:
continue
content = ""
with open(p) as f:
for line in f:
m = re.match(r"^(.*)#include <(.*)>(.*)$", line)
if (m and
not m.group(2).startswith("zephyr/") and
(Path(".") / "include" / "zephyr" / m.group(2)).exists()):
content += (
m.group(1) +
"#include <zephyr/" + m.group(2) +">" +
m.group(3) + "\n"
)
else:
content += line
with open(p, "w") as f:
f.write(content)
```
Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
|
||
|---|---|---|
| .. | ||
| src | ||
| CMakeLists.txt | ||
| prj.conf | ||
| README.rst | ||
| sample.yaml | ||
.. _sockets-net-mgmt-sample: Network Management Socket ######################### Overview ******** The net-mgmt-socket sample application for Zephyr implements a listener for network management events that the networking subsystem is sending. The source code for this sample application can be found at: :zephyr_file:`samples/net/sockets/net_mgmt`. Requirements ************ - :ref:`networking_with_host` Building and Running ******************** There are multiple ways to use this application. One of the most common usage scenario is to run echo-server application inside QEMU. This is described in :ref:`networking_with_qemu`. Build net-mgmt socket sample application like this: .. zephyr-app-commands:: :zephyr-app: samples/net/sockets/net_mgmt :board: <board to use> :conf: <config file to use> :goals: build :compact: Example building for the native_posix board: .. zephyr-app-commands:: :zephyr-app: samples/net/sockets/net_mgmt :host-os: unix :board: native_posix :conf: prj.conf :goals: run :compact: