mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Add the dependency on udev, since espflash links against libudev (via the libudev-sys crate). Fixes: http://autobuild.buildroot.net/results/c61b6ed4b6fb4d18d503ac37add200f5e6ae3706 Signed-off-by: Torben Voltmer <mail@t-voltmer.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16 lines
506 B
Plaintext
16 lines
506 B
Plaintext
config BR2_PACKAGE_ESPFLASH
|
|
bool "espflash"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
select BR2_PACKAGE_HOST_RUSTC
|
|
help
|
|
Serial flasher utilities for Espressif devices, based
|
|
loosely on esptool.py. Supports the ESP32,
|
|
ESP32-C2/C3/C6, ESP32-H2, ESP32-P4, and ESP32-S2/S3.
|
|
|
|
https://github.com/esp-rs/espflash
|
|
|
|
comment "espflash needs udev /dev management"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
|
|
depends on !BR2_PACKAGE_HAS_UDEV
|