Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

View File

@@ -0,0 +1,26 @@
From 4ef42740538cefd3c1554aa4df5bcb1388ac927b Mon Sep 17 00:00:00 2001
From: Sergio Prado <sergio.prado@e-labworks.com>
Date: Tue, 16 Jan 2018 22:28:32 -0200
Subject: [PATCH] Change shell script interpreter from /bin/bash to /bin/sh
This will make the script more portable, making it possible to run on
systems that do not have bash.
Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
---
aoe-stat.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/aoe-stat.in b/aoe-stat.in
index 50e6ac674169..0c1d6f5ebe1e 100755
--- a/aoe-stat.in
+++ b/aoe-stat.in
@@ -1,4 +1,4 @@
-#! /bin/bash
+#! /bin/sh
# aoe-stat - collate and present information about AoE storage
# Copyright 2012, CORAID, Inc., and licensed under GPL v.2.
--
1.9.1

View File

@@ -0,0 +1,12 @@
config BR2_PACKAGE_AOETOOLS
bool "aoetools"
depends on BR2_TOOLCHAIN_HAS_THREADS
help
The aoetools are programs for users of the ATA over Ethernet
(AoE) network storage protocol, a simple protocol for using
storage over an ethernet LAN.
http://aoetools.sourceforge.net/
comment "aoetools needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,5 @@
# Locally computed:
sha256 477e796f5c18e8c0e61b5d88e1759c68249e8e0210c2f3de2b98680e2cc63e32 aoetools-37.tar.gz
# Hash for license files:
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING

View File

@@ -0,0 +1,21 @@
################################################################################
#
# aoetools
#
################################################################################
AOETOOLS_VERSION = 37
AOETOOLS_SITE = $(call github,OpenAoE,aoetools,aoetools-$(AOETOOLS_VERSION))
AOETOOLS_LICENSE = GPL-2.0
AOETOOLS_LICENSE_FILES = COPYING
define AOETOOLS_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef
define AOETOOLS_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR=$(TARGET_DIR) \
-C $(@D) install
endef
$(eval $(generic-package))