update buildroot to 2017.02.11

This commit is contained in:
jbnadal
2018-05-22 15:35:47 +02:00
parent 4bf1f5e091
commit a3c10bd762
9257 changed files with 433426 additions and 1701 deletions

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

View File

@@ -0,0 +1,9 @@
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/

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 40ff4ab0247b75138a0887ed40f81c1a6184f340b77126c16d074b1075b41c20 fbset-2.1.tar.gz

View File

@@ -0,0 +1,25 @@
################################################################################
#
# fbset
#
################################################################################
FBSET_VERSION = 2.1
FBSET_SITE = http://users.telenet.be/geertu/Linux/fbdev
FBSET_DEPENDENCIES = host-bison host-flex
FBSET_LICENSE = GPLv2
# Make sure full fbset wins over busybox fbset
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
FBSET_DEPENDENCIES += busybox
endif
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))