Import buildroot 2016.02.01

This commit is contained in:
2016-02-24 22:35:39 +01:00
parent a6ee09dea4
commit 828befcf3c
7393 changed files with 390887 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
From 562f48bee3443bda0ac257f2b0c52a72208163e0 Mon Sep 17 00:00:00 2001
From: Peter Seiderer <ps.report@gmx.net>
Date: Mon, 7 Dec 2015 21:20:38 +0100
Subject: [PATCH] Fix install file list.
Fixes:
CMake Error at cmake_install.cmake:40 (file):
file INSTALL cannot find
".../build/read-edid-3.0.2/COPYING".
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7bf4561..2b9bc86 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -13,5 +13,5 @@ endif ()
add_subdirectory (parse-edid)
INSTALL(FILES get-edid.1 DESTINATION share/man/man1)
-INSTALL(FILES AUTHORS ChangeLog COPYING README DESTINATION
+INSTALL(FILES AUTHORS ChangeLog README DESTINATION
share/doc/read-edid)
--
2.1.4

View File

@@ -0,0 +1,19 @@
Fix compiler check
By default CMake looks for c++ which the project does not need.
Patch by Thomas:
http://lists.busybox.net/pipermail/buildroot/2015-December/146865.html
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
diff -uNr read-edid-3.0.2.org/CMakeLists.txt read-edid-3.0.2/CMakeLists.txt
--- read-edid-3.0.2.org/CMakeLists.txt 2014-02-05 17:27:26.000000000 +0100
+++ read-edid-3.0.2/CMakeLists.txt 2015-12-13 16:08:43.000000000 +0100
@@ -1,5 +1,5 @@
cmake_minimum_required (VERSION 2.6)
-project (read-edid)
+project (read-edid C)
option(I2CBUILD "Build I2C get-edid implementation" ON)
option(CLASSICBUILD "Build VBE get-edid implementation" ON)

View File

@@ -0,0 +1,13 @@
config BR2_PACKAGE_READ_EDID
bool "read-edid"
help
Read-edid is a pair of tools for reading the EDID from a
monitor. It should work with most monitors made since 1996
(except for newer ones with 256-byte EDID's - WiP), assuming
the video card supports the standard read commands (most
do). Read-edid is a set of two tools - get-edid, which gets
the raw edid information from the monitor, and parse-edid,
which turns the raw binary information into an
XF86Config-compatible monitor section.
http://polypux.org/projects/read-edid/

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 c7c6d8440f5b90f98e276829271ccea5b2ff5a3413df8a0f87ec09f834af186f read-edid-3.0.2.tar.gz

View File

@@ -0,0 +1,15 @@
################################################################################
#
# read-edid
#
################################################################################
READ_EDID_VERSION = 3.0.2
READ_EDID_SITE = http://www.polypux.org/projects/read-edid
READ_EDID_LICENSE = BSD-like
READ_EDID_LICENSE_FILES = LICENSE
# disable classic get-edid support (needs libx86)
READ_EDID_CONF_OPTS += -DCLASSICBUILD=OFF
$(eval $(cmake-package))