forked from liyufan/lede
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bot] AutoMerging: merge all upstream's changes:
* https://github.com/coolsnowwolf/lede: fstools: fix ntfs3 mount with utf-8 treewide: sync with upstream (coolsnowwolf#10658) rockchip: add wireless support for H68K
- Loading branch information
Showing
36 changed files
with
103 additions
and
5,481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
package/network/utils/iproute2/patches/140-keep_libmnl_optional.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
package/network/utils/iproute2/patches/145-keep_libelf_optional.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- a/configure | ||
+++ b/configure | ||
@@ -266,7 +266,7 @@ EOF | ||
@@ -267,7 +267,7 @@ EOF | ||
|
||
check_elf() | ||
{ | ||
|
2 changes: 1 addition & 1 deletion
2
package/network/utils/iproute2/patches/150-keep_libcap_optional.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- a/configure | ||
+++ b/configure | ||
@@ -469,7 +469,7 @@ EOF | ||
@@ -470,7 +470,7 @@ EOF | ||
|
||
check_cap() | ||
{ | ||
|
2 changes: 1 addition & 1 deletion
2
package/network/utils/iproute2/patches/155-keep_tirpc_optional.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
package/network/utils/iproute2/patches/200-drop_libbsd_dependency.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
package/network/utils/iproute2/patches/300-selinux-configurable.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- a/block.c | ||
+++ b/block.c | ||
@@ -943,6 +943,11 @@ | ||
{ | ||
size_t mount_opts_len; | ||
char *mount_opts = NULL, *ptr; | ||
+ char _data[128] = {0}; | ||
+ if (strstr(fstype, "fat") || strstr(fstype, "ntfs")) { | ||
+ snprintf(_data, sizeof(_data), "%s", "iocharset=utf8,uid=65534,gid=65534"); | ||
+ } | ||
+ | ||
const char * const *filesystems; | ||
int err = -EINVAL; | ||
size_t count; | ||
@@ -960,7 +965,7 @@ | ||
const char *fs = filesystems[i]; | ||
|
||
err = mount(source, target, fs, m ? m->flags : 0, | ||
- (m && m->options) ? m->options : ""); | ||
+ (m && m->options) ? m->options : _data); | ||
if (!err || errno != ENODEV) | ||
break; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
toolchain/gcc/patches-11.x/400-libsanitizer-cherry-pick-9cf13067cb5088626ba7-from-u.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
From d2356ebb0084a0d80dbfe33040c9afe938c15d19 Mon Sep 17 00:00:00 2001 | ||
From: Martin Liska <mliska@suse.cz> | ||
Date: Mon, 11 Jul 2022 22:03:14 +0200 | ||
Subject: [PATCH] libsanitizer: cherry-pick 9cf13067cb5088626ba7 from upstream | ||
|
||
9cf13067cb5088626ba7ee1ec4c42ec59c7995a0 [sanitizer] Remove #include <linux/fs.h> to resolve fsconfig_command/mount_attr conflict with glibc 2.36 | ||
|
||
(cherry picked from commit 2701442d0cf6292f6624443c15813d6d1a3562fe) | ||
--- | ||
.../sanitizer_platform_limits_posix.cpp | 10 ++++++---- | ||
1 file changed, 6 insertions(+), 4 deletions(-) | ||
|
||
--- a/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp | ||
+++ b/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp | ||
@@ -72,7 +72,9 @@ | ||
#include <sys/vt.h> | ||
#include <linux/cdrom.h> | ||
#include <linux/fd.h> | ||
+#if SANITIZER_ANDROID | ||
#include <linux/fs.h> | ||
+#endif | ||
#include <linux/hdreg.h> | ||
#include <linux/input.h> | ||
#include <linux/ioctl.h> | ||
@@ -828,10 +830,10 @@ unsigned struct_ElfW_Phdr_sz = sizeof(El | ||
unsigned IOCTL_EVIOCGPROP = IOCTL_NOT_PRESENT; | ||
unsigned IOCTL_EVIOCSKEYCODE_V2 = IOCTL_NOT_PRESENT; | ||
#endif | ||
- unsigned IOCTL_FS_IOC_GETFLAGS = FS_IOC_GETFLAGS; | ||
- unsigned IOCTL_FS_IOC_GETVERSION = FS_IOC_GETVERSION; | ||
- unsigned IOCTL_FS_IOC_SETFLAGS = FS_IOC_SETFLAGS; | ||
- unsigned IOCTL_FS_IOC_SETVERSION = FS_IOC_SETVERSION; | ||
+ unsigned IOCTL_FS_IOC_GETFLAGS = _IOR('f', 1, long); | ||
+ unsigned IOCTL_FS_IOC_GETVERSION = _IOR('v', 1, long); | ||
+ unsigned IOCTL_FS_IOC_SETFLAGS = _IOW('f', 2, long); | ||
+ unsigned IOCTL_FS_IOC_SETVERSION = _IOW('v', 2, long); | ||
unsigned IOCTL_GIO_CMAP = GIO_CMAP; | ||
unsigned IOCTL_GIO_FONT = GIO_FONT; | ||
unsigned IOCTL_GIO_UNIMAP = GIO_UNIMAP; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.