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:
parent
ffc9a3c2e2
commit
8ebc102780
@ -8,6 +8,6 @@ FEATURES_PROVIDED += periph_pwm
|
|||||||
FEATURES_PROVIDED += periph_qdec
|
FEATURES_PROVIDED += periph_qdec
|
||||||
|
|
||||||
# Put other features for this board (in alphabetical order)
|
# Put other features for this board (in alphabetical order)
|
||||||
FEATURES_PROVIDED += ethernet
|
FEATURES_PROVIDED += netif_ethernet
|
||||||
FEATURES_PROVIDED += motor_driver
|
FEATURES_PROVIDED += motor_driver
|
||||||
FEATURES_PROVIDED += netif
|
FEATURES_PROVIDED += netif
|
||||||
|
@ -14,7 +14,7 @@ FEATURES_PROVIDED += periph_uart
|
|||||||
FEATURES_PROVIDED += periph_usbdev
|
FEATURES_PROVIDED += periph_usbdev
|
||||||
|
|
||||||
# Put other features for this board (in alphabetical order)
|
# Put other features for this board (in alphabetical order)
|
||||||
FEATURES_PROVIDED += ethernet
|
FEATURES_PROVIDED += netif_ethernet
|
||||||
FEATURES_PROVIDED += netif
|
FEATURES_PROVIDED += netif
|
||||||
FEATURES_PROVIDED += riotboot
|
FEATURES_PROVIDED += riotboot
|
||||||
FEATURES_PROVIDED += tinyusb_device
|
FEATURES_PROVIDED += tinyusb_device
|
||||||
|
@ -14,7 +14,7 @@ FEATURES_PROVIDED += periph_uart
|
|||||||
FEATURES_PROVIDED += periph_usbdev
|
FEATURES_PROVIDED += periph_usbdev
|
||||||
|
|
||||||
# Put other features for this board (in alphabetical order)
|
# Put other features for this board (in alphabetical order)
|
||||||
FEATURES_PROVIDED += ethernet
|
FEATURES_PROVIDED += netif_ethernet
|
||||||
FEATURES_PROVIDED += netif
|
FEATURES_PROVIDED += netif
|
||||||
FEATURES_PROVIDED += tinyusb_device
|
FEATURES_PROVIDED += tinyusb_device
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ FEATURES_PROVIDED += periph_uart
|
|||||||
FEATURES_PROVIDED += periph_usbdev
|
FEATURES_PROVIDED += periph_usbdev
|
||||||
|
|
||||||
# Put other features for this board (in alphabetical order)
|
# Put other features for this board (in alphabetical order)
|
||||||
FEATURES_PROVIDED += ethernet
|
FEATURES_PROVIDED += netif_ethernet
|
||||||
FEATURES_PROVIDED += netif
|
FEATURES_PROVIDED += netif
|
||||||
FEATURES_PROVIDED += tinyusb_device
|
FEATURES_PROVIDED += tinyusb_device
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ FEATURES_PROVIDED += periph_uart
|
|||||||
FEATURES_PROVIDED += periph_usbdev
|
FEATURES_PROVIDED += periph_usbdev
|
||||||
|
|
||||||
# Put other features for this board (in alphabetical order)
|
# Put other features for this board (in alphabetical order)
|
||||||
FEATURES_PROVIDED += ethernet
|
FEATURES_PROVIDED += netif_ethernet
|
||||||
FEATURES_PROVIDED += netif
|
FEATURES_PROVIDED += netif
|
||||||
FEATURES_PROVIDED += riotboot
|
FEATURES_PROVIDED += riotboot
|
||||||
FEATURES_PROVIDED += tinyusb_device
|
FEATURES_PROVIDED += tinyusb_device
|
||||||
|
@ -19,7 +19,7 @@ FEATURES_PROVIDED += periph_freqm
|
|||||||
FEATURES_PROVIDED += periph_can
|
FEATURES_PROVIDED += periph_can
|
||||||
|
|
||||||
# Put other features for this board (in alphabetical order)
|
# Put other features for this board (in alphabetical order)
|
||||||
FEATURES_PROVIDED += ethernet
|
FEATURES_PROVIDED += netif_ethernet
|
||||||
FEATURES_PROVIDED += netif
|
FEATURES_PROVIDED += netif
|
||||||
FEATURES_PROVIDED += riotboot
|
FEATURES_PROVIDED += riotboot
|
||||||
FEATURES_PROVIDED += tinyusb_device
|
FEATURES_PROVIDED += tinyusb_device
|
||||||
|
@ -17,6 +17,6 @@ FEATURES_PROVIDED += periph_usbdev_hs
|
|||||||
FEATURES_PROVIDED += periph_usbdev_hs_ulpi
|
FEATURES_PROVIDED += periph_usbdev_hs_ulpi
|
||||||
|
|
||||||
# Put other features for this board (in alphabetical order)
|
# Put other features for this board (in alphabetical order)
|
||||||
FEATURES_PROVIDED += ethernet
|
FEATURES_PROVIDED += netif_ethernet
|
||||||
FEATURES_PROVIDED += netif
|
FEATURES_PROVIDED += netif
|
||||||
FEATURES_PROVIDED += tinyusb_device
|
FEATURES_PROVIDED += tinyusb_device
|
||||||
|
@ -877,10 +877,10 @@ groups:
|
|||||||
- title: Board Features
|
- title: Board Features
|
||||||
help: These features indicate features of the board
|
help: These features indicate features of the board
|
||||||
features:
|
features:
|
||||||
- name: ethernet
|
|
||||||
help: The board has Ethernet connectivity
|
|
||||||
- name: netif
|
- name: netif
|
||||||
help: The board has a network interface
|
help: The board has a network interface
|
||||||
|
- name: netif_ethernet
|
||||||
|
help: The board has an Ethernet network interface
|
||||||
- name: highlevel_stdio
|
- name: highlevel_stdio
|
||||||
help: A high-level stdio method (such as CDC ACM) is used. This requires a
|
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.
|
running thread and set-up and will not print during a crash.
|
||||||
|
@ -126,13 +126,13 @@ FEATURES_EXISTING := \
|
|||||||
esp_wifi \
|
esp_wifi \
|
||||||
esp_wifi_ap \
|
esp_wifi_ap \
|
||||||
esp_wifi_enterprise \
|
esp_wifi_enterprise \
|
||||||
ethernet \
|
|
||||||
gecko_sdk_librail_fpu \
|
gecko_sdk_librail_fpu \
|
||||||
gecko_sdk_librail_nonfpu \
|
gecko_sdk_librail_nonfpu \
|
||||||
highlevel_stdio \
|
highlevel_stdio \
|
||||||
libstdcpp \
|
libstdcpp \
|
||||||
motor_driver \
|
motor_driver \
|
||||||
netif \
|
netif \
|
||||||
|
netif_ethernet \
|
||||||
newlib \
|
newlib \
|
||||||
no_idle_thread \
|
no_idle_thread \
|
||||||
periph_adc \
|
periph_adc \
|
||||||
|
Loading…
Reference in New Issue
Block a user