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

build system: rename ethernet feature into netif_ethernet

The `ethernet` feature has not yet been used, so renaming it should not
cause any issue.

The goal is to eventually have a number of `netif_<type>` features that
would allow filtering boards by the time of connectivity the have.
This commit is contained in:
Marian Buschsieweke 2024-05-24 21:52:07 +02:00
parent ffc9a3c2e2
commit 8ebc102780
No known key found for this signature in database
GPG Key ID: 77AA882EC78084E6
9 changed files with 10 additions and 10 deletions

View File

@ -8,6 +8,6 @@ FEATURES_PROVIDED += periph_pwm
FEATURES_PROVIDED += periph_qdec
# Put other features for this board (in alphabetical order)
FEATURES_PROVIDED += ethernet
FEATURES_PROVIDED += netif_ethernet
FEATURES_PROVIDED += motor_driver
FEATURES_PROVIDED += netif

View File

@ -14,7 +14,7 @@ FEATURES_PROVIDED += periph_uart
FEATURES_PROVIDED += periph_usbdev
# Put other features for this board (in alphabetical order)
FEATURES_PROVIDED += ethernet
FEATURES_PROVIDED += netif_ethernet
FEATURES_PROVIDED += netif
FEATURES_PROVIDED += riotboot
FEATURES_PROVIDED += tinyusb_device

View File

@ -14,7 +14,7 @@ FEATURES_PROVIDED += periph_uart
FEATURES_PROVIDED += periph_usbdev
# Put other features for this board (in alphabetical order)
FEATURES_PROVIDED += ethernet
FEATURES_PROVIDED += netif_ethernet
FEATURES_PROVIDED += netif
FEATURES_PROVIDED += tinyusb_device

View File

@ -13,7 +13,7 @@ FEATURES_PROVIDED += periph_uart
FEATURES_PROVIDED += periph_usbdev
# Put other features for this board (in alphabetical order)
FEATURES_PROVIDED += ethernet
FEATURES_PROVIDED += netif_ethernet
FEATURES_PROVIDED += netif
FEATURES_PROVIDED += tinyusb_device

View File

@ -20,7 +20,7 @@ FEATURES_PROVIDED += periph_uart
FEATURES_PROVIDED += periph_usbdev
# Put other features for this board (in alphabetical order)
FEATURES_PROVIDED += ethernet
FEATURES_PROVIDED += netif_ethernet
FEATURES_PROVIDED += netif
FEATURES_PROVIDED += riotboot
FEATURES_PROVIDED += tinyusb_device

View File

@ -19,7 +19,7 @@ FEATURES_PROVIDED += periph_freqm
FEATURES_PROVIDED += periph_can
# Put other features for this board (in alphabetical order)
FEATURES_PROVIDED += ethernet
FEATURES_PROVIDED += netif_ethernet
FEATURES_PROVIDED += netif
FEATURES_PROVIDED += riotboot
FEATURES_PROVIDED += tinyusb_device

View File

@ -17,6 +17,6 @@ FEATURES_PROVIDED += periph_usbdev_hs
FEATURES_PROVIDED += periph_usbdev_hs_ulpi
# Put other features for this board (in alphabetical order)
FEATURES_PROVIDED += ethernet
FEATURES_PROVIDED += netif_ethernet
FEATURES_PROVIDED += netif
FEATURES_PROVIDED += tinyusb_device

View File

@ -877,10 +877,10 @@ groups:
- title: Board Features
help: These features indicate features of the board
features:
- name: ethernet
help: The board has Ethernet connectivity
- name: netif
help: The board has a network interface
- name: netif_ethernet
help: The board has an Ethernet network interface
- name: highlevel_stdio
help: A high-level stdio method (such as CDC ACM) is used. This requires a
running thread and set-up and will not print during a crash.

View File

@ -126,13 +126,13 @@ FEATURES_EXISTING := \
esp_wifi \
esp_wifi_ap \
esp_wifi_enterprise \
ethernet \
gecko_sdk_librail_fpu \
gecko_sdk_librail_nonfpu \
highlevel_stdio \
libstdcpp \
motor_driver \
netif \
netif_ethernet \
newlib \
no_idle_thread \
periph_adc \