initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
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
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 f163f81cd50aae6fa39cbb4f6408a3699da7a87a56649c4b96d6f168c9be6a7d rs485conf-5c8d00cf70950fab3454549b81dea843d844492a.tar.gz
sha256 3e5c80d50879a9572ac9e463215a942490a67b56dfd8a3e27004d7c62e0493c8 LICENSE
+20
View File
@@ -0,0 +1,20 @@
################################################################################
#
# rs485conf
#
################################################################################
RS485CONF_VERSION = 5c8d00cf70950fab3454549b81dea843d844492a
RS485CONF_SITE = $(call github,mniestroj,rs485conf,$(RS485CONF_VERSION))
RS485CONF_LICENSE = BSD-3-Clause
RS485CONF_LICENSE_FILES = LICENSE
define RS485CONF_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef
define RS485CONF_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) PREFIX="$(TARGET_DIR)/usr" -C $(@D) install
endef
$(eval $(generic-package))