Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
From e4c2c18b9d1d7a6dc17d8f7705b26fc2e2efc5a9 Mon Sep 17 00:00:00 2001
From: Brendan Heading <brendanheading@gmail.com>
Date: Sun, 30 Aug 2015 20:12:40 +0100
Subject: [PATCH 1/1] fix musl compilation issue
makedev(3) requires sys/types.h to be included.
Note upstream has not issued releases since 2009. No mailing list activity
since January 2010, and even before then it seems to be mostly spam.
Upstream-Status: dormant
Signed-off-by: Brendan Heading <brendanheading@gmail.com>
---
raidscan.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/raidscan.c b/raidscan.c
index fab3b02..3cb1a0d 100644
--- a/raidscan.c
+++ b/raidscan.c
@@ -22,6 +22,7 @@
#include "config.h"
#include <sys/stat.h>
+#include <sys/types.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <linux/major.h>
--
2.4.3

View File

@@ -0,0 +1,10 @@
config BR2_PACKAGE_BOOTUTILS
bool "bootutils"
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
help
BootUtils is a collection of utilities to facilitate booting
of Linux 2.6-based systems. The process of finding the root
volume either by label or explicit label= on the kernel
command line, mounting it, and 'switchroot'ing is automated.
http://bootutils.sourceforge.net/

View File

@@ -0,0 +1,2 @@
# Locally computed:
sha256 78549714e7c7fa246a4019c245f4da044aee6cfe48ad6887c4013ac4c749c7b9 bootutils-1.0.0.tar.gz

View File

@@ -0,0 +1,13 @@
################################################################################
#
# bootutils
#
################################################################################
BOOTUTILS_VERSION = 1.0.0
BOOTUTILS_SITE = http://downloads.sourceforge.net/project/bootutils/Stable/v$(BOOTUTILS_VERSION)
BOOTUTILS_CONF_OPTS = --prefix=/ --exec-prefix=/
BOOTUTILS_LICENSE = GPL-2.0+
BOOTUTILS_LICENSE_FILES = COPYING
$(eval $(autotools-package))