mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
feaa241ce3
This commit makes bcusdk build with the musl C library by: * Adding a dependency on argp-standalone * Adding a patch to fix the incorrect usage of <sys/cdefs.h> * Adding a patch to fix a missing header include for fd_set Both patches have been submitted upstream, https://sourceforge.net/p/bcusdk/patches/3/. Fixes: http://autobuild.buildroot.net/results/46054f28d3fde173dd8f880fa8ac2784c8e1750f/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
927 B
Plaintext
26 lines
927 B
Plaintext
config BR2_PACKAGE_BCUSDK
|
|
bool "bcusdk"
|
|
depends on BR2_USE_MMU # libpthsem
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
select BR2_PACKAGE_LIBPTHSEM
|
|
select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL
|
|
help
|
|
A free development environment for the Bus Coupling Units of
|
|
the European Installation Bus.
|
|
|
|
The European Installation Bus EIB is a home and building
|
|
automation bus system. It is optimized for low-speed control
|
|
applications like lighting and blinds control.
|
|
|
|
BCUs (Bus Coupling Units) are standardized, generic
|
|
platforms for embedded EIB devices. They include the entire
|
|
physical layer network interface, power supply and a
|
|
microcontroller with an implementation of the EIB protocol
|
|
stack stored in the ROM.
|
|
|
|
http://www.auto.tuwien.ac.at/~mkoegler/eib/
|
|
|
|
comment "bcusdk needs a toolchain w/ C++"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|