Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
From 4ae1577b432c1859704d2763f70a764dee23bd98 Mon Sep 17 00:00:00 2001
|
||||
From: Kylie McClain <somasis@exherbo.org>
|
||||
Date: Thu, 28 Apr 2016 22:40:32 -0400
|
||||
Subject: [PATCH] uxcons: Fix on musl libc
|
||||
|
||||
musl libc exports FD_SET and friends in sys/select.h.
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Patch status: upstream commit 4ae1577b432c
|
||||
|
||||
unix/uxcons.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/unix/uxcons.c b/unix/uxcons.c
|
||||
index b9fd67fe9274..f2a25f3fed70 100644
|
||||
--- a/unix/uxcons.c
|
||||
+++ b/unix/uxcons.c
|
||||
@@ -12,6 +12,7 @@
|
||||
#include <termios.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
+#include <sys/select.h>
|
||||
|
||||
#include "putty.h"
|
||||
#include "storage.h"
|
||||
--
|
||||
2.8.1
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
From 3377ea57f5d333d65d44a1130161396782389e88 Mon Sep 17 00:00:00 2001
|
||||
From: Tim Kosse <tim.kosse@filezilla-project.org>
|
||||
Date: Tue, 11 Aug 2015 09:43:34 +0200
|
||||
Subject: [PATCH] Fix __uint128_t compile error on MinGW.
|
||||
|
||||
MinGW has __uint128_t, but not __uint64_t.
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Patch status: upstream commit 3377ea57f5
|
||||
|
||||
sshbn.h | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/sshbn.h b/sshbn.h
|
||||
index a043241eea67..9366f614ae4c 100644
|
||||
--- a/sshbn.h
|
||||
+++ b/sshbn.h
|
||||
@@ -26,7 +26,7 @@
|
||||
* using the same 'two machine registers' kind of code generation that
|
||||
* 32-bit targets use for 64-bit ints. If we have one of these, we can
|
||||
* use a 64-bit BignumInt and a 128-bit BignumDblInt. */
|
||||
-typedef __uint64_t BignumInt;
|
||||
+typedef unsigned long long BignumInt;
|
||||
typedef __uint128_t BignumDblInt;
|
||||
#define BIGNUM_INT_MASK 0xFFFFFFFFFFFFFFFFULL
|
||||
#define BIGNUM_TOP_BIT 0x8000000000000000ULL
|
||||
--
|
||||
2.8.1
|
||||
|
||||
@@ -1,9 +1,15 @@
|
||||
config BR2_PACKAGE_PUTTY
|
||||
bool "putty"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on BR2_USE_WCHAR
|
||||
help
|
||||
PuTTY is a free SSH and Telnet client. Without GTK2 activated,
|
||||
only the commandline tools plink, pscp, psftp, and puttygen are
|
||||
built; enable GTK2 for the graphical client.
|
||||
PuTTY is a free SSH and Telnet client. Without GTK2
|
||||
activated, only the commandline tools plink, pscp, psftp,
|
||||
and puttygen are built; enable GTK2 for the graphical
|
||||
client.
|
||||
|
||||
http://www.chiark.greenend.org.uk/~sgtatham/putty/
|
||||
|
||||
comment "putty needs a toolchain w/ wchar"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# Hashes from: http://the.earth.li/~sgtatham/putty/0.67/{sha256,sha512}sums
|
||||
sha256 80192458e8a46229de512afeca5c757dd8fce09606b3c992fbaeeee29b994a47 putty-0.67.tar.gz
|
||||
sha512 c2b17da46b8db3fe3837a10cb9cf5dd4b3ef6bfa15cadab83f3b87cf1479ed31fced90b774297ae53bdcbbdf230fc80d5c73d5ff3be6916fb591fd7ce3d35eca putty-0.67.tar.gz
|
||||
# Hashes from: http://the.earth.li/~sgtatham/putty/0.70/{sha256,sha512}sums
|
||||
sha256 bb8aa49d6e96c5a8e18a057f3150a1695ed99a24eef699e783651d1f24e7b0be putty-0.70.tar.gz
|
||||
sha512 2aaf4fa2b4ad2d82eb5cdc4419ade79e0c5d8bd3c093db92b3c048e6107f85a5f1647f9d8203cda0906ce2b926725a75319f981cb32e6f1ebf50b1f738564fed putty-0.70.tar.gz
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PUTTY_VERSION = 0.67
|
||||
PUTTY_VERSION = 0.70
|
||||
PUTTY_SITE = http://the.earth.li/~sgtatham/putty/$(PUTTY_VERSION)
|
||||
PUTTY_SUBDIR = unix
|
||||
PUTTY_LICENSE = MIT
|
||||
|
||||
Reference in New Issue
Block a user