8000 build system: rename ethernet feature into netif_ethernet by maribu · Pull Request #20694 · RIOT-OS/RIOT · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

build system: rename ethernet feature into netif_ethernet #20694

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion boards/native/common_features.inc.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f207zg/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion boards/nucleo-f429zi/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion boards/nucleo-f439zi/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion boards/nucleo-f767zi/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion boards/same54-xpro/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/stm32f746g-disco/features-shared.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions features.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6D4E running thread and set-up and will not print during a crash.
Expand Down
2 changes: 1 addition & 1 deletion makefiles/features_existing.inc.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
Loading
0