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
+33
View File
@@ -0,0 +1,33 @@
From 6d42be24b62b94df8e2f01956842b7ee4b640e97 Mon Sep 17 00:00:00 2001
From: Peter Seiderer <ps.report@gmx.net>
Date: Mon, 11 Jul 2016 22:07:42 +0200
Subject: [PATCH] Fix musl compile.
Unconditional include <asm/types.h> for __u32 type.
Fixes:
error: unknown type name '__u32'
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
fbset.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/fbset.h b/fbset.h
index 9b1d2ac..3c511e1 100644
--- a/fbset.h
+++ b/fbset.h
@@ -15,9 +15,7 @@
#include <stdio.h>
#include <sys/types.h>
-#ifdef __GLIBC__
#include <asm/types.h>
-#endif
#define VERSION "Linux Frame Buffer Device Configuration " \
"Version 2.1 (23/06/1999)\n" \
--
2.8.1
+10
View File
@@ -0,0 +1,10 @@
config BR2_PACKAGE_FBSET
bool "fbset"
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
help
Fbset is a system utility to show or change the settings of
the frame buffer device. The frame buffer device provides a
simple and unique interface to access different kinds of
graphic displays.
http://users.telenet.be/geertu/Linux/fbdev/
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 40ff4ab0247b75138a0887ed40f81c1a6184f340b77126c16d074b1075b41c20 fbset-2.1.tar.gz
sha256 c3285709a0840899a789faefae1704e87f96f757e905a38a1931a9d4fde95ddd fbset.c
+21
View File
@@ -0,0 +1,21 @@
################################################################################
#
# fbset
#
################################################################################
FBSET_VERSION = 2.1
FBSET_SITE = http://users.telenet.be/geertu/Linux/fbdev
FBSET_DEPENDENCIES = host-bison host-flex
FBSET_LICENSE = GPL-2.0
FBSET_LICENSE_FILES = fbset.c
define FBSET_BUILD_CMDS
$(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef
define FBSET_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 755 $(@D)/fbset $(TARGET_DIR)/usr/sbin/fbset
endef
$(eval $(generic-package))