mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-09 17:03:35 -09:00
As pointed in this PR[0] ESP_SLAVE and CONFIG_TARGET_* became useless after
commit [1] so let's drop the SoC Target choice. The SoC ID is automatically
retrieved via SDIO commands, so no need to specify it.
[0]: https://github.com/espressif/esp-hosted/pull/668
[1]: b544b01e20
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
32 lines
689 B
Plaintext
32 lines
689 B
Plaintext
comment "esp-hosted needs a Linux kernel to be built"
|
|
depends on !BR2_s390x
|
|
depends on !BR2_LINUX_KERNEL
|
|
|
|
config BR2_PACKAGE_ESP_HOSTED
|
|
bool "esp-hosted"
|
|
depends on !BR2_s390x
|
|
depends on BR2_LINUX_KERNEL
|
|
help
|
|
This package builds and installs the Linux kernel driver for
|
|
the Esp32-* Linux Wi-Fi driver. It supports both SDIO and SPI
|
|
busses that is selectable. It is compatible with recent Linux
|
|
kernels (>= 5.4).
|
|
|
|
if BR2_PACKAGE_ESP_HOSTED
|
|
|
|
choice
|
|
prompt "HW interface"
|
|
default BR2_PACKAGE_ESP_HOSTED_SDIO
|
|
help
|
|
Select which bus type esp is attached to
|
|
|
|
config BR2_PACKAGE_ESP_HOSTED_SDIO
|
|
bool "SDIO"
|
|
|
|
config BR2_PACKAGE_ESP_HOSTED_SPI
|
|
bool "SPI"
|
|
|
|
endchoice
|
|
|
|
endif
|