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
+19
View File
@@ -0,0 +1,19 @@
config BR2_PACKAGE_BCM2835
bool "bcm2835"
depends on BR2_arm
help
C library for Broadcom BCM 2835 as used in Raspberry Pi.
It provides access to GPIO and other IO functions on the
Broadcom BCM 2835 chip, allowing access to the GPIO pins
on the 26 pin IDE plug on the RPi board so you can control
and interface with various external devices.
WARNING: the opinion of the Buildroot developers is that
such library is a complete abomination as it entirely works
around the standard Linux interfaces to access GPIOs, I2C,
SPI busses or other IOs. The library directly remaps the
hardware registers in user-space, completely bypassing what
the kernel drivers are doing, and potentially conflicting
with them.
http://www.airspayce.com/mikem/bcm2835
+3
View File
@@ -0,0 +1,3 @@
# Locally computed:
sha256 c062a8a1cf1dc1ba1ca3978451d2f668b66f7ce5548200a0f4a8bb2117b1b2c9 bcm2835-1.70.tar.gz
sha256 8b1ba204bb69a0ade2bfcf65ef294a920f6bb361b317dba43c7ef29d96332b9b COPYING
+16
View File
@@ -0,0 +1,16 @@
################################################################################
#
# bcm2835
#
################################################################################
BCM2835_VERSION = 1.70
BCM2835_SITE = http://www.airspayce.com/mikem/bcm2835
BCM2835_LICENSE = GPL-3.0
BCM2835_LICENSE_FILES = COPYING
BCM2835_INSTALL_STAGING = YES
# disable doxygen doc generation
BCM2835_CONF_ENV = ac_cv_prog_DOXYGEN=/bin/true
$(eval $(autotools-package))