Skip to content

Commit 90f9acd

Browse files
authored
Merge pull request #326 from benpicco/gnrc/networking
treewide: gnrc/gnrc_* moved to gnrc/
2 parents 5441007 + 20372a6 commit 90f9acd

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

04-single-hop-6lowpan-icmp/test_spec04.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from testutils.shell import ping6, lladdr, check_pktbuf
1010

1111

12-
APP = 'examples/networking/gnrc/gnrc_networking'
12+
APP = 'examples/networking/gnrc/networking'
1313
TASK10_APP = 'tests/net/gnrc_udp'
1414
pytestmark = pytest.mark.rc_only()
1515

05-single-hop-route/test_spec05.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from testutils.shell import ping6, lladdr, check_pktbuf
88

99

10-
APP = 'examples/networking/gnrc/gnrc_networking'
10+
APP = 'examples/networking/gnrc/networking'
1111
pytestmark = pytest.mark.rc_only()
1212

1313

08-interop/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ ip-addr
8484
2023-04-14 15:23:36,735 # -- fe80::f6ce:36c6:d8d1:e340
8585
```
8686

87-
8. For the RIOT side just use [gnrc_networking](https://github.com/RIOT-OS/RIOT/tree/master/examples/networking/gnrc/gnrc_networking). Get the link-local IP address with `ifconfig`:
87+
8. For the RIOT side just use [gnrc_networking](https://github.com/RIOT-OS/RIOT/tree/master/examples/networking/gnrc/networking). Get the link-local IP address with `ifconfig`:
8888

8989
```
9090
2023-04-14 15:11:12,614 # ifconfig
@@ -344,7 +344,7 @@ The credentials for the WiFi network will be passed on the command line.
344344
Replace `esp8266-esp-12x` with the esp* board of your choice, adjust `PORT` if needed.
345345

346346
```
347-
USEMODULE="sock_dns gnrc_ipv6_nib_dns" make -C examples/networking/gnrc/gnrc_border_router BOARD=esp<...> UPLINK=wifi WIFI_SSID=<your_ssd> WIFI_PASS=<your_password> PORT=<port> flash term
347+
USEMODULE="sock_dns gnrc_ipv6_nib_dns" make -C examples/networking/gnrc/border_router BOARD=esp<...> UPLINK=wifi WIFI_SSID=<your_ssd> WIFI_PASS=<your_password> PORT=<port> flash term
348348
```
349349

350350
### Result
@@ -413,7 +413,7 @@ Use the `sock_dns` and `gnrc_ipv6_nib_dns` modules to enable name resolution.
413413
Replace `esp8266-esp-12x` with the esp* board of your choice, adjust `PORT` if needed.
414414

415415
```
416-
USEMODULE="sock_dns gnrc_ipv6_nib_dns" make -C examples/networking/gnrc/gnrc_networking BOARD=esp<…> PORT=<port> flash term
416+
USEMODULE="sock_dns gnrc_ipv6_nib_dns" make -C examples/networking/gnrc/networking BOARD=esp<…> PORT=<port> flash term
417417
```
418418

419419
### Result

08-interop/test_spec08.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from testutils.shell import lladdr, ping6, GNRCUDP
1515

1616

17-
GNRC_APP = 'examples/networking/gnrc/gnrc_networking'
17+
GNRC_APP = 'examples/networking/gnrc/networking'
1818
LWIP_APP = 'tests/pkg/lwip'
1919
pytestmark = pytest.mark.rc_only()
2020

10-icmpv6-error/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ hop link but not the second hop link via a native node from a Linux host.
224224

225225
$ GNRC_NETIF_NUMOF=2 USEMODULE="socket_zep netdev_tap" \
226226
CFLAGS=-DGNRC_IPV6_NIB_CONF_SLAAC=1 TERMFLAGS="-z [::]:17755 tap0" \
227-
make -C examples/networking/gnrc/gnrc_networking clean all term
227+
make -C examples/networking/gnrc/networking clean all term
228228

229229
4. Add `beef::/64` route via TAP interface on RIOT side:
230230

10-icmpv6-error/test_spec10.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
)
3636

3737

38-
APP = 'examples/networking/gnrc/gnrc_networking'
38+
APP = 'examples/networking/gnrc/networking'
3939
TAP = 'tap0'
4040
NETIF_PARSER = IfconfigListParser()
4141

11-lorawan/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ send/receive LoRaWAN frames.
199199

200200
### Testing procedure
201201

202-
- Build and flash the `examples/networking/gnrc/gnrc_lorawan`
202+
- Build and flash the `examples/networking/gnrc/lorawan`
203203

204-
$ make BOARD=<board> -C examples/networking/gnrc/gnrc_lorawan flash term
204+
$ make BOARD=<board> -C examples/networking/gnrc/lorawan flash term
205205

206206
- Configure the device EUI, application EUI, application the `ifconfig` command
207207

11-lorawan/test_spec11.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from testutils.shell import check_pktbuf
1111

1212

13-
GNRC_LORAWAN_APP = "examples/networking/gnrc/gnrc_lorawan"
13+
GNRC_LORAWAN_APP = "examples/networking/gnrc/lorawan"
1414
LORAWAN_APP = "examples/networking/misc/lorawan"
1515
SEMTECH_LORAMAC_APP = "tests/pkg/semtech-loramac"
1616
pytestmark = pytest.mark.rc_only()

testutils/shell.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class GNRCUDPClientSendParser(ShellInteractionParser):
2727
"""
2828
Shell interaction parser for
2929
30-
- $RIOTBASE/examples/networking/gnrc/gnrc_networking
30+
- $RIOTBASE/examples/networking/gnrc/networking
3131
- $RIOTBASE/tests/net/gnrc_udp.
3232
3333
As the `udp` shell command is application specific, a central
@@ -78,7 +78,7 @@ class GNRCLoRaWANSend(ShellInteraction):
7878
"""
7979
Shell interaction for
8080
81-
- $RIOTBASE/examples/networking/gnrc/gnrc_lorawan
81+
- $RIOTBASE/examples/networking/gnrc/lorawan
8282
8383
As the `send` shell command is application specific, a central
8484
ShellInteraction in `riotctrl_shell` does not make much sense
@@ -99,7 +99,7 @@ class GNRCUDP(ShellInteraction):
9999
"""
100100
Shell interaction for
101101
102-
- $RIOTBASE/examples/networking/gnrc/gnrc_networking
102+
- $RIOTBASE/examples/networking/gnrc/networking
103103
- $RIOTBASE/tests/net/gnrc_udp.
104104
105105
As the `udp` shell command is application specific, a central

0 commit comments

Comments
 (0)