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
+17
View File
@@ -0,0 +1,17 @@
config BR2_PACKAGE_PRIVOXY
bool "privoxy"
depends on BR2_USE_MMU # fork()
depends on BR2_TOOLCHAIN_HAS_THREADS
select BR2_PACKAGE_PCRE
select BR2_PACKAGE_ZLIB
help
A non-caching web proxy with advanced filtering capabilities
for enhancing privacy, modifying web page data and HTTP
headers, controlling access, and removing ads and other
obnoxious Internet junk.
http://www.privoxy.org/
comment "privoxy needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS
+6
View File
@@ -0,0 +1,6 @@
# From https://sourceforge.net/projects/ijbswa/files/Sources/3.0.32%20%28stable%29/
md5 3a0a8ebdf80e0a29154683e74cbf510b privoxy-3.0.32-stable-src.tar.gz
sha1 3a298ab2599fc92555c86dc29a37742d7396a0d3 privoxy-3.0.32-stable-src.tar.gz
# Locally computed
sha256 c61de4008c62445ec18f1f270407cbf2372eaba93beaccdc9e3238bb2defeed7 privoxy-3.0.32-stable-src.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE
+18
View File
@@ -0,0 +1,18 @@
################################################################################
#
# privoxy
#
################################################################################
PRIVOXY_VERSION = 3.0.32
PRIVOXY_SITE = http://downloads.sourceforge.net/project/ijbswa/Sources/$(PRIVOXY_VERSION)%20%28stable%29
PRIVOXY_SOURCE = privoxy-$(PRIVOXY_VERSION)-stable-src.tar.gz
# configure not shipped
PRIVOXY_AUTORECONF = YES
PRIVOXY_DEPENDENCIES = pcre zlib
PRIVOXY_LICENSE = GPL-2.0+
PRIVOXY_LICENSE_FILES = LICENSE
PRIVOXY_CPE_ID_VENDOR = privoxy
PRIVOXY_SELINUX_MODULES = privoxy
$(eval $(autotools-package))