source "package/rfkill/Config.in"
source "package/rng-tools/Config.in"
source "package/rpi-userland/Config.in"
+ source "package/rs485conf/Config.in"
source "package/rtl8188eu/Config.in"
source "package/rtl8821au/Config.in"
source "package/sane-backends/Config.in"
--- /dev/null
+config BR2_PACKAGE_RS485CONF
+ bool "rs485conf"
+ help
+ rs485conf is intended to be used on embedded boards with RS485
+ interface. It can show as well as modify RS485 configuration
+ parameters of TTY device with easy to use command line
+ options.
+
+ https://github.com/mniestroj/rs485conf
--- /dev/null
+################################################################################
+#
+# rs485conf
+#
+################################################################################
+
+RS485CONF_VERSION = 5c8d00cf70950fab3454549b81dea843d844492a
+RS485CONF_SITE = $(call github,mniestroj,rs485conf,$(RS485CONF_VERSION))
+RS485CONF_LICENSE = BSD-3c
+RS485CONF_LICENSE_FILES = LICENSE
+
+define RS485CONF_BUILD_CMDS
+ $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
+endef
+
+define RS485CONF_INSTALL_TARGET_CMDS
+ $(MAKE) PREFIX="$(TARGET_DIR)/usr" -C $(@D) install
+endef
+
+$(eval $(generic-package))