Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -1,30 +0,0 @@
|
||||
From 99bbdc042ee4c92a13edcfeaf336aa755a199d0f Mon Sep 17 00:00:00 2001
|
||||
From: Anup Patel <anup@brainfault.org>
|
||||
Date: Sun, 11 Sep 2016 19:53:40 +0530
|
||||
Subject: [PATCH] Makefile: Fix oldconfig make target
|
||||
|
||||
Use "-s" instead of "-o" option of "openconf/conf" tool because
|
||||
the "-o" option does not generate all required openconf files.
|
||||
|
||||
Signed-off-by: Anup Patel <anup@brainfault.org>
|
||||
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
|
||||
---
|
||||
Makefile | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index 149a682..e05e801 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -434,7 +434,7 @@ menuconfig:
|
||||
oldconfig:
|
||||
$(V)mkdir -p $(OPENCONF_TMPDIR)
|
||||
$(V)$(MAKE) -C tools/openconf oldconfig
|
||||
- ./tools/openconf/conf -o $(OPENCONF_INPUT)
|
||||
+ ./tools/openconf/conf -s $(OPENCONF_INPUT)
|
||||
|
||||
# Rule for "make savedefconfig"
|
||||
.PHONY: savedefconfig
|
||||
--
|
||||
2.4.11
|
||||
|
||||
@@ -1,58 +0,0 @@
|
||||
From 6b49c1dbe0ac43e39eec97a7e79cf5fb995747dc Mon Sep 17 00:00:00 2001
|
||||
From: Eric Le Bihan <eric.le.bihan.dev@free.fr>
|
||||
Date: Mon, 12 Sep 2016 21:49:55 +0530
|
||||
Subject: [PATCH] openconf: do not check stdin
|
||||
|
||||
Do not check if stdin is redirected when ask_silent is true, so the
|
||||
`yes` program can be used to answer the questions about new values.
|
||||
|
||||
Example:
|
||||
|
||||
yes "" | make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- oldconfig
|
||||
|
||||
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
|
||||
Signed-off-by: Anup Patel <anup@brainfault.org>
|
||||
---
|
||||
tools/openconf/conf.c | 12 ------------
|
||||
1 file changed, 12 deletions(-)
|
||||
|
||||
diff --git a/tools/openconf/conf.c b/tools/openconf/conf.c
|
||||
index a428058..711cf0b 100644
|
||||
--- a/tools/openconf/conf.c
|
||||
+++ b/tools/openconf/conf.c
|
||||
@@ -65,16 +65,6 @@ static void strip(char *str)
|
||||
*p-- = 0;
|
||||
}
|
||||
|
||||
-static void check_stdin(void)
|
||||
-{
|
||||
- if (!valid_stdin) {
|
||||
- printf("aborted!\n\n");
|
||||
- printf("Console input/output is redirected. ");
|
||||
- printf("Run 'make oldconfig' to update configuration.\n\n");
|
||||
- exit(1);
|
||||
- }
|
||||
-}
|
||||
-
|
||||
static int conf_askvalue(struct symbol *sym, const char *def)
|
||||
{
|
||||
char *ret;
|
||||
@@ -100,7 +90,6 @@ static int conf_askvalue(struct symbol *sym, const char *def)
|
||||
printf("%s\n", def);
|
||||
return 0;
|
||||
}
|
||||
- check_stdin();
|
||||
case ask_all:
|
||||
fflush(stdout);
|
||||
ret = fgets(line, 128, stdin);
|
||||
@@ -306,7 +295,6 @@ static int conf_choice(struct menu *menu)
|
||||
printf("%d\n", cnt);
|
||||
break;
|
||||
}
|
||||
- check_stdin();
|
||||
case ask_all:
|
||||
fflush(stdout);
|
||||
ret = fgets(line, 128, stdin);
|
||||
--
|
||||
2.4.11
|
||||
|
||||
@@ -10,9 +10,9 @@ menuconfig BR2_PACKAGE_XVISOR
|
||||
depends on BR2_PACKAGE_XVISOR_ARCH_SUPPORTS
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
help
|
||||
Xvisor is an open-source type-1 hypervisor, which aims at providing
|
||||
a monolithic, light-weight, portable, and flexible virtualization
|
||||
solution.
|
||||
Xvisor is an open-source type-1 hypervisor, which aims at
|
||||
providing a monolithic, light-weight, portable, and flexible
|
||||
virtualization solution.
|
||||
|
||||
http://www.xhypervisor.org/
|
||||
|
||||
@@ -32,12 +32,12 @@ endchoice
|
||||
|
||||
config BR2_PACKAGE_XVISOR_DEFCONFIG
|
||||
string "Defconfig name"
|
||||
depends on BR2_PACKAGE_XVISOR_USE_DEFCONFIG
|
||||
default "generic-v5" if BR2_ARM_CPU_ARMV5
|
||||
default "generic-v6" if BR2_ARM_CPU_ARMV6
|
||||
default "generic-v7" if BR2_ARM_CPU_ARMV7A
|
||||
default "generic-v8" if BR2_aarch64
|
||||
default "x86_64_generic" if BR2_x86_64
|
||||
depends on BR2_PACKAGE_XVISOR_USE_DEFCONFIG
|
||||
help
|
||||
Name of the Xvisor defconfig file to use, without the
|
||||
trailing -defconfig. The defconfig is located in
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# Locally generated
|
||||
sha256 9347080c3481fb8586d196dd51a580a57084bfea1bc425e89f7fa0da7170708a xvisor-0.2.8.tar.gz
|
||||
sha256 29b3b830380dde4f596611abd34487fb753e120ce462dbb0056f3025b88ef14f xvisor-0.2.9.tar.gz
|
||||
|
||||
@@ -4,12 +4,13 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
XVISOR_VERSION = 0.2.8
|
||||
XVISOR_VERSION = 0.2.9
|
||||
XVISOR_SITE = http://www.xhypervisor.org/tarball
|
||||
XVISOR_LICENSE = GPLv2+
|
||||
XVISOR_LICENSE = GPL-2.0+
|
||||
XVISOR_LICENSE_FILES = COPYING
|
||||
XVISOR_INSTALL_IMAGES = YES
|
||||
XVISOR_INSTALL_TARGET = NO
|
||||
XVISOR_DEPENDENCIES = host-bison host-flex
|
||||
|
||||
XVISOR_MAKE_TARGETS = all
|
||||
|
||||
|
||||
Reference in New Issue
Block a user