Bump Buildroot to 2021.02-rc3 (#1260)

* Rebase patches to Buildroot 2021.02-rc3

* Update Buildroot to 2021.02-rc3

* Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
This commit is contained in:
Stefan Agner
2021-03-04 00:50:33 +01:00
committed by GitHub
parent b77d633382
commit f358f322da
2130 changed files with 23612 additions and 21038 deletions

View File

@@ -0,0 +1,9 @@
config BR2_PACKAGE_SCREENFETCH
bool "screenfetch"
depends on BR2_USE_MMU # bash
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash
select BR2_PACKAGE_BASH # runtime dependency
help
screenFetch is a bash script to display distro info.
https://github.com/KittyKatt/screenFetch

View File

@@ -0,0 +1,2 @@
sha256 aa97dcd2a8576ae18de6c16c19744aae1573a3da7541af4b98a91930a30a3178 screenfetch-3.9.1.tar.gz
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING

View File

@@ -0,0 +1,17 @@
################################################################################
#
# screenfetch
#
################################################################################
SCREENFETCH_VERSION = 3.9.1
SCREENFETCH_SITE = $(call github,KittyKatt,screenFetch,v$(SCREENFETCH_VERSION))
SCREENFETCH_LICENSE = GPL-3.0+
SCREENFETCH_LICENSE_FILES = COPYING
define SCREENFETCH_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/screenfetch-dev \
$(TARGET_DIR)/usr/bin/screenfetch
endef
$(eval $(generic-package))