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
+12
View File
@@ -0,0 +1,12 @@
config BR2_PACKAGE_HOST_DOXYGEN
bool "host doxygen"
depends on BR2_HOST_GCC_AT_LEAST_4_9 # C++14
help
Doxygen is the de facto standard tool for generating
documentation from annotated C++ sources, but it also
supports other popular programming languages such as C,
Objective-C, C#, PHP, Java, Python, IDL (Corba, Microsoft,
and UNO/OpenOffice flavors), Fortran, VHDL, Tcl, and to some
extent D.
http://www.doxygen.nl/
+3
View File
@@ -0,0 +1,3 @@
# Computed locally
sha256 18173d9edc46d2d116c1f92a95d683ec76b6b4b45b817ac4f245bb1073d00656 doxygen-1.8.18.src.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE
+17
View File
@@ -0,0 +1,17 @@
################################################################################
#
# doxygen
#
################################################################################
DOXYGEN_VERSION = 1.8.18
DOXYGEN_SOURCE = doxygen-$(DOXYGEN_VERSION).src.tar.gz
DOXYGEN_SITE = http://doxygen.nl/files
DOXYGEN_LICENSE = GPL-2.0
DOXYGEN_LICENSE_FILES = LICENSE
DOXYGEN_CPE_ID_VENDOR = doxygen
HOST_DOXYGEN_DEPENDENCIES = host-flex host-bison
HOST_DOXYGEN_CONF_OPTS += -DBUILD_SHARED_LIBS=OFF
$(eval $(host-cmake-package))