1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #16631 from jia200x/pr/fix_gnrc_netif_cmd_lora_dep

shell_commands/gnrc_netif: fix gnrc_netif_cmd_lora dependency
This commit is contained in:
José Alamos 2021-07-10 18:00:22 +02:00 committed by GitHub
commit 9eb05b0ce6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -7,8 +7,3 @@ USEMODULE += ztimer_usec
USEMODULE += ztimer_msec
USEMODULE += lora
ifneq (,$(filter gnrc,$(USEMODULE)))
# Pull in `ifconfig` support for LoRA
USEMODULE += gnrc_netif_cmd_lora
endif

View File

@ -262,6 +262,10 @@ ifneq (,$(filter shell_commands,$(USEMODULE)))
USEMODULE += netif
USEMODULE += ipv6_addr
endif
ifneq (,$(filter gnrc_lorawan,$(USEMODULE)))
USEMODULE += gnrc_netif_cmd_lora
endif
endif
ifneq (,$(filter posix_semaphore,$(USEMODULE)))