Skip to content

Instantly share code, notes, and snippets.

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for arc-openwrt-linux-strip... arc-openwrt-linux-uclibc-strip
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for style of include used by make... GNU
checking for arc-openwrt-linux-gcc... arc-openwrt-linux-uclibc-gcc
checking whether the C compiler works... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for arc-openwrt-linux-strip... arc-openwrt-linux-uclibc-strip
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for style of include used by make... GNU
checking for arc-openwrt-linux-gcc... arc-openwrt-linux-uclibc-gcc
checking whether the C compiler works... yes
diff --git a/folly/io/async/ssl/OpenSSLUtils.cpp b/folly/io/async/ssl/OpenSSLUtils.cpp
index 0504cf8..a9c2775 100644
--- a/folly/io/async/ssl/OpenSSLUtils.cpp
+++ b/folly/io/async/ssl/OpenSSLUtils.cpp
@@ -155,8 +155,12 @@ static std::unordered_map<uint16_t, std::string> getOpenSSLCipherNames() {
SSL_CTX* ctx = nullptr;
SSL* ssl = nullptr;
+#if OPENSSL_VERSION_NUMBER < 0x10100000L
const SSL_METHOD* meth = SSLv23_server_method();
Port 0: MAC 2c:f0:a2:dd:bc:d0
Port 0: MAC 00:c0:ca:95:87:6c
Port 0: MAC 18:a6:f7:78:86:e8
Port 1: MAC 00:17:10:8d:ff:09
Port 5: MAC 9c:ad:ef:63:d5:05
Port 6: MAC 18:a6:f7:78:86:e9
diff --git a/drivers/mmc/host/mtk-sd.c b/drivers/mmc/host/mtk-sd.c
index 6457a7d8880f..01ad733da8b2 100644
--- a/drivers/mmc/host/mtk-sd.c
+++ b/drivers/mmc/host/mtk-sd.c
@@ -438,11 +438,24 @@ static const struct mtk_mmc_compatible mt2712_compat = {
.enhance_rx = true,
};
+static const struct mtk_mmc_compatible mt7620_compat = {
+ .clk_div_bits = 8,
--- a/block.h
+++ b/block.h
@@ -34,6 +34,7 @@ class Block
{ if( size_ < 0 || size_ > LLONG_MAX - pos_ ) size_ = LLONG_MAX - pos_; }
public:
+ Block() {} // default constructor
Block( const long long p, const long long s ) : pos_( p ), size_( s )
{ if( p < 0 ) { pos_ = 0; if( s > 0 ) size_ -= std::min( s, -p ); }
fix_size(); }
diff --git a/utils/gddrescue/Makefile b/utils/gddrescue/Makefile
index 9cce4ef15..230a1feeb 100644
--- a/utils/gddrescue/Makefile
+++ b/utils/gddrescue/Makefile
@@ -5,19 +5,21 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=gddrescue
-PKG_VERSION:=1.22
+PKG_VERSION:=1.23
[92065.609742] print_req_error: I/O error, dev loop0, sector 38368
[92065.615879] F2FS-fs (loop0): Issue discard(4796, 4796, 1) failed, ret: -5
[92126.085239] print_req_error: I/O error, dev loop0, sector 38376
[92126.091238] F2FS-fs (loop0): Issue discard(4797, 4797, 1) failed, ret: -5
[92615.889193] print_req_error: I/O error, dev loop0, sector 38384
[92615.895236] F2FS-fs (loop0): Issue discard(4798, 4798, 1) failed, ret: -5
[93170.648344] print_req_error: I/O error, dev loop0, sector 38392
[93170.654318] F2FS-fs (loop0): Issue discard(4799, 4799, 1) failed, ret: -5
[97299.865070] print_req_error: I/O error, dev loop0, sector 38400
[97299.871055] F2FS-fs (loop0): Issue discard(4800, 4800, 1) failed, ret: -5
Sun Mar 3 01:27:06 2019 kern.err kernel: [ 205.848373] kcifsd: cifsd_kthread_fn:350: connect success: accepted new connection
Sun Mar 3 01:27:06 2019 kern.err kernel: [ 205.856180] kcifsd: cifsd_tcp_conn_handler_loop:202: RFC1002 header 106 bytes
Sun Mar 3 01:27:28 2019 kern.err kernel: [ 215.989473] kcifsd: cifsd_lookup_dialect_by_id:237: client requested dialect 0x9d86
Sun Mar 3 01:27:28 2019 kern.err kernel: [ 215.997429] kcifsd: cifsd_lookup_dialect_by_id:237: client requested dialect 0xdc
Sun Mar 3 01:27:28 2019 kern.err kernel: [ 216.005055] kcifsd: cifsd_lookup_dialect_by_id:237: client requested dialect 0xcf86
Sun Mar 3 01:27:28 2019 kern.err kernel: [ 216.012825] kcifsd: cifsd_lookup_dialect_by_id:237: client requested dialect 0xe886
Sun Mar 3 01:27:28 2019 kern.err kernel: [ 216.020597] kcifsd: cifsd_lookup_dialect_by_id:237: client requested dialect 0x78ff
Sun Mar 3 01:27:28 2019 kern.err kernel: [ 216.028480] kcifsd: cifsd_lookup_dialect_by_id:237: client requested dialect 0x100
Su
diff --git a/src/_cffi_src/openssl/asn1.py b/src/_cffi_src/openssl/asn1.py
index 82bf797..fa64c2e 100644
--- a/src/_cffi_src/openssl/asn1.py
+++ b/src/_cffi_src/openssl/asn1.py
@@ -41,7 +41,7 @@ FUNCTIONS = """
void ASN1_OBJECT_free(ASN1_OBJECT *);
/* ASN1 STRING */
-unsigned char *ASN1_STRING_data(ASN1_STRING *);
+const unsigned char * ASN1_STRING_get0_data(const ASN1_STRING *x);