Merge branch 'openwrt:master' into master
This commit is contained in:
commit
4da60e5c81
13 changed files with 149 additions and 15 deletions
82
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
Normal file
82
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
Normal file
|
@ -0,0 +1,82 @@
|
||||||
|
name: Bug report
|
||||||
|
description: Create a bug report to help us improve
|
||||||
|
labels:
|
||||||
|
- bug
|
||||||
|
body:
|
||||||
|
- type: textarea
|
||||||
|
id: description
|
||||||
|
attributes:
|
||||||
|
label: Describe the bug
|
||||||
|
description: A clear and concise description of the bug.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: input
|
||||||
|
id: version
|
||||||
|
attributes:
|
||||||
|
label: OpenWrt version
|
||||||
|
description: |
|
||||||
|
The OpenWrt release or commit hash where this bug occurs (use command below).
|
||||||
|
```. /etc/openwrt_release && echo $DISTRIB_REVISION```
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: input
|
||||||
|
id: target
|
||||||
|
attributes:
|
||||||
|
label: OpenWrt target/subtarget
|
||||||
|
description: |
|
||||||
|
The OpenWrt target and subtarget where this bug is observed (use command below).
|
||||||
|
```. /etc/openwrt_release && echo $DISTRIB_TARGET```
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: input
|
||||||
|
id: device
|
||||||
|
attributes:
|
||||||
|
label: Device
|
||||||
|
description: The device exhibiting this bug.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
id: image_kind
|
||||||
|
attributes:
|
||||||
|
label: Image kind
|
||||||
|
options:
|
||||||
|
- Official downloaded image
|
||||||
|
- Self-built image
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: reproduce
|
||||||
|
attributes:
|
||||||
|
label: Steps to reproduce
|
||||||
|
description: Steps to reproduce the reported behaviour.
|
||||||
|
- type: textarea
|
||||||
|
id: behaviour
|
||||||
|
attributes:
|
||||||
|
label: Actual behaviour
|
||||||
|
description: A clear and concise description of what actually happens.
|
||||||
|
- type: textarea
|
||||||
|
id: expected
|
||||||
|
attributes:
|
||||||
|
label: Expected behaviour
|
||||||
|
description: A clear and concise description of what you expected to happen.
|
||||||
|
- type: textarea
|
||||||
|
id: additional
|
||||||
|
attributes:
|
||||||
|
label: Additional info
|
||||||
|
description: Add any additional info you think might be helfpul.
|
||||||
|
- type: textarea
|
||||||
|
id: diffconfig
|
||||||
|
attributes:
|
||||||
|
label: Diffconfig
|
||||||
|
description: |
|
||||||
|
In case of a self-built image, please attach diffconfig.
|
||||||
|
```./scripts/diffconfig.sh```
|
||||||
|
render: text
|
||||||
|
- type: checkboxes
|
||||||
|
id: terms
|
||||||
|
attributes:
|
||||||
|
label: Terms
|
||||||
|
description: By submitting this issue, you agree to the terms below.
|
||||||
|
options:
|
||||||
|
- label: I am reporting an issue for OpenWrt, not an unsupported fork.
|
||||||
|
required: true
|
12
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
12
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
blank_issues_enabled: false
|
||||||
|
contact_links:
|
||||||
|
- name: Feature request
|
||||||
|
url: https://forum.openwrt.org/c/feature-requests
|
||||||
|
about: The OpenWrt project relies on volunteers. While we appreciate feature requests, we might lack the manpower to handle them. Ideally, you get familiar with the codebase and attempt to contribute the feature yourself. We recommend to post in the forum, as this is the most likely place to receive feedback on feature requests.
|
||||||
|
- name: OpenWrt community
|
||||||
|
url: https://openwrt.org/contact
|
||||||
|
about: Consider reaching out to our community to get help. OpenWrt is a complex software project with many pitfalls; there is a good chance someone can help you solve your issue in no time.
|
||||||
|
- name: OpenWrt documentation
|
||||||
|
url: https://openwrt.org/docs/start
|
||||||
|
about: The OpenWrt documentation contains a lot of valuable information.
|
|
@ -173,7 +173,7 @@ Signed-off-by: Jayantajit Gogoi <jayanta.gogoi525@gmail.com>
|
||||||
+};
|
+};
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/configs/nanopi_r1_defconfig
|
+++ b/configs/nanopi_r1_defconfig
|
||||||
@@ -0,0 +1,22 @@
|
@@ -0,0 +1,21 @@
|
||||||
+CONFIG_ARM=y
|
+CONFIG_ARM=y
|
||||||
+CONFIG_ARCH_SUNXI=y
|
+CONFIG_ARCH_SUNXI=y
|
||||||
+CONFIG_SPL=y
|
+CONFIG_SPL=y
|
||||||
|
@ -186,7 +186,6 @@ Signed-off-by: Jayantajit Gogoi <jayanta.gogoi525@gmail.com>
|
||||||
+CONFIG_NR_DRAM_BANKS=1
|
+CONFIG_NR_DRAM_BANKS=1
|
||||||
+# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
+# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
+CONFIG_CONSOLE_MUX=y
|
+CONFIG_CONSOLE_MUX=y
|
||||||
+CONFIG_SYS_CLK_FREQ=480000000
|
|
||||||
+# CONFIG_CMD_FLASH is not set
|
+# CONFIG_CMD_FLASH is not set
|
||||||
+# CONFIG_SPL_DOS_PARTITION is not set
|
+# CONFIG_SPL_DOS_PARTITION is not set
|
||||||
+# CONFIG_SPL_EFI_PARTITION is not set
|
+# CONFIG_SPL_EFI_PARTITION is not set
|
||||||
|
|
|
@ -197,7 +197,6 @@ CONFIG_HZ_FIXED=0
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
# CONFIG_I2C_BCM2708 is not set
|
# CONFIG_I2C_BCM2708 is not set
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
# CONFIG_I2C_BRCMSTB is not set
|
|
||||||
CONFIG_INPUT=y
|
CONFIG_INPUT=y
|
||||||
CONFIG_INPUT_MOUSEDEV=y
|
CONFIG_INPUT_MOUSEDEV=y
|
||||||
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
|
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
|
||||||
|
|
|
@ -250,7 +250,6 @@ CONFIG_HZ_FIXED=0
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
# CONFIG_I2C_BCM2708 is not set
|
# CONFIG_I2C_BCM2708 is not set
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
# CONFIG_I2C_BRCMSTB is not set
|
|
||||||
CONFIG_INPUT=y
|
CONFIG_INPUT=y
|
||||||
CONFIG_INPUT_MOUSEDEV=y
|
CONFIG_INPUT_MOUSEDEV=y
|
||||||
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
|
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
|
||||||
|
|
|
@ -248,7 +248,6 @@ CONFIG_HW_RANDOM_BCM2835=y
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
# CONFIG_I2C_BCM2708 is not set
|
# CONFIG_I2C_BCM2708 is not set
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
# CONFIG_I2C_BRCMSTB is not set
|
|
||||||
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
|
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
|
||||||
CONFIG_INPUT=y
|
CONFIG_INPUT=y
|
||||||
CONFIG_INPUT_MOUSEDEV=y
|
CONFIG_INPUT_MOUSEDEV=y
|
||||||
|
|
|
@ -255,7 +255,6 @@ CONFIG_HW_RANDOM_IPROC_RNG200=y
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
# CONFIG_I2C_BCM2708 is not set
|
# CONFIG_I2C_BCM2708 is not set
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
# CONFIG_I2C_BRCMSTB is not set
|
|
||||||
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
|
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
|
||||||
CONFIG_INPUT=y
|
CONFIG_INPUT=y
|
||||||
CONFIG_INPUT_MOUSEDEV=y
|
CONFIG_INPUT_MOUSEDEV=y
|
||||||
|
|
|
@ -126,6 +126,7 @@ CONFIG_AEABI=y
|
||||||
# CONFIG_AF_RXRPC_INJECT_LOSS is not set
|
# CONFIG_AF_RXRPC_INJECT_LOSS is not set
|
||||||
# CONFIG_AF_RXRPC_IPV6 is not set
|
# CONFIG_AF_RXRPC_IPV6 is not set
|
||||||
# CONFIG_AGP is not set
|
# CONFIG_AGP is not set
|
||||||
|
# CONFIG_AHCI_BRCM is not set
|
||||||
# CONFIG_AHCI_CEVA is not set
|
# CONFIG_AHCI_CEVA is not set
|
||||||
# CONFIG_AHCI_IMX is not set
|
# CONFIG_AHCI_IMX is not set
|
||||||
# CONFIG_AHCI_MVEBU is not set
|
# CONFIG_AHCI_MVEBU is not set
|
||||||
|
@ -2392,6 +2393,7 @@ CONFIG_HZ_100=y
|
||||||
# CONFIG_I2C_AU1550 is not set
|
# CONFIG_I2C_AU1550 is not set
|
||||||
# CONFIG_I2C_BCM2835 is not set
|
# CONFIG_I2C_BCM2835 is not set
|
||||||
# CONFIG_I2C_BCM_IPROC is not set
|
# CONFIG_I2C_BCM_IPROC is not set
|
||||||
|
# CONFIG_I2C_BRCMSTB is not set
|
||||||
# CONFIG_I2C_CADENCE is not set
|
# CONFIG_I2C_CADENCE is not set
|
||||||
# CONFIG_I2C_CBUS_GPIO is not set
|
# CONFIG_I2C_CBUS_GPIO is not set
|
||||||
# CONFIG_I2C_CHARDEV is not set
|
# CONFIG_I2C_CHARDEV is not set
|
||||||
|
@ -2537,7 +2539,6 @@ CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
|
||||||
# CONFIG_INA2XX_ADC is not set
|
# CONFIG_INA2XX_ADC is not set
|
||||||
# CONFIG_INDIRECT_PIO is not set
|
# CONFIG_INDIRECT_PIO is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
CONFIG_INET_TABLE_PERTURB_ORDER=16
|
|
||||||
# CONFIG_INET6_AH is not set
|
# CONFIG_INET6_AH is not set
|
||||||
# CONFIG_INET6_ESP is not set
|
# CONFIG_INET6_ESP is not set
|
||||||
# CONFIG_INET6_ESPINTCP is not set
|
# CONFIG_INET6_ESPINTCP is not set
|
||||||
|
@ -2550,6 +2551,7 @@ CONFIG_INET_TABLE_PERTURB_ORDER=16
|
||||||
# CONFIG_INET_ESPINTCP is not set
|
# CONFIG_INET_ESPINTCP is not set
|
||||||
# CONFIG_INET_IPCOMP is not set
|
# CONFIG_INET_IPCOMP is not set
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
|
CONFIG_INET_TABLE_PERTURB_ORDER=16
|
||||||
# CONFIG_INET_TCP_DIAG is not set
|
# CONFIG_INET_TCP_DIAG is not set
|
||||||
# CONFIG_INET_TUNNEL is not set
|
# CONFIG_INET_TUNNEL is not set
|
||||||
# CONFIG_INET_UDP_DIAG is not set
|
# CONFIG_INET_UDP_DIAG is not set
|
||||||
|
@ -3464,6 +3466,7 @@ CONFIG_MMC_BLOCK_MINORS=8
|
||||||
# CONFIG_MMC_SDHCI_ACPI is not set
|
# CONFIG_MMC_SDHCI_ACPI is not set
|
||||||
# CONFIG_MMC_SDHCI_AM654 is not set
|
# CONFIG_MMC_SDHCI_AM654 is not set
|
||||||
# CONFIG_MMC_SDHCI_BCM_KONA is not set
|
# CONFIG_MMC_SDHCI_BCM_KONA is not set
|
||||||
|
# CONFIG_MMC_SDHCI_BRCMSTB is not set
|
||||||
# CONFIG_MMC_SDHCI_CADENCE is not set
|
# CONFIG_MMC_SDHCI_CADENCE is not set
|
||||||
# CONFIG_MMC_SDHCI_F_SDH30 is not set
|
# CONFIG_MMC_SDHCI_F_SDH30 is not set
|
||||||
# CONFIG_MMC_SDHCI_IPROC is not set
|
# CONFIG_MMC_SDHCI_IPROC is not set
|
||||||
|
|
|
@ -130,6 +130,7 @@ CONFIG_AEABI=y
|
||||||
# CONFIG_AF_RXRPC_IPV6 is not set
|
# CONFIG_AF_RXRPC_IPV6 is not set
|
||||||
CONFIG_AF_UNIX_OOB=y
|
CONFIG_AF_UNIX_OOB=y
|
||||||
# CONFIG_AGP is not set
|
# CONFIG_AGP is not set
|
||||||
|
# CONFIG_AHCI_BRCM is not set
|
||||||
# CONFIG_AHCI_CEVA is not set
|
# CONFIG_AHCI_CEVA is not set
|
||||||
# CONFIG_AHCI_IMX is not set
|
# CONFIG_AHCI_IMX is not set
|
||||||
# CONFIG_AHCI_MVEBU is not set
|
# CONFIG_AHCI_MVEBU is not set
|
||||||
|
@ -2487,6 +2488,7 @@ CONFIG_HZ_100=y
|
||||||
# CONFIG_I2C_AU1550 is not set
|
# CONFIG_I2C_AU1550 is not set
|
||||||
# CONFIG_I2C_BCM2835 is not set
|
# CONFIG_I2C_BCM2835 is not set
|
||||||
# CONFIG_I2C_BCM_IPROC is not set
|
# CONFIG_I2C_BCM_IPROC is not set
|
||||||
|
# CONFIG_I2C_BRCMSTB is not set
|
||||||
# CONFIG_I2C_CADENCE is not set
|
# CONFIG_I2C_CADENCE is not set
|
||||||
# CONFIG_I2C_CBUS_GPIO is not set
|
# CONFIG_I2C_CBUS_GPIO is not set
|
||||||
# CONFIG_I2C_CHARDEV is not set
|
# CONFIG_I2C_CHARDEV is not set
|
||||||
|
@ -2638,7 +2640,6 @@ CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
|
||||||
# CONFIG_INA2XX_ADC is not set
|
# CONFIG_INA2XX_ADC is not set
|
||||||
# CONFIG_INDIRECT_PIO is not set
|
# CONFIG_INDIRECT_PIO is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
CONFIG_INET_TABLE_PERTURB_ORDER=16
|
|
||||||
# CONFIG_INET6_AH is not set
|
# CONFIG_INET6_AH is not set
|
||||||
# CONFIG_INET6_ESP is not set
|
# CONFIG_INET6_ESP is not set
|
||||||
# CONFIG_INET6_ESPINTCP is not set
|
# CONFIG_INET6_ESPINTCP is not set
|
||||||
|
@ -2651,6 +2652,7 @@ CONFIG_INET_TABLE_PERTURB_ORDER=16
|
||||||
# CONFIG_INET_ESPINTCP is not set
|
# CONFIG_INET_ESPINTCP is not set
|
||||||
# CONFIG_INET_IPCOMP is not set
|
# CONFIG_INET_IPCOMP is not set
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
|
CONFIG_INET_TABLE_PERTURB_ORDER=16
|
||||||
# CONFIG_INET_TCP_DIAG is not set
|
# CONFIG_INET_TCP_DIAG is not set
|
||||||
# CONFIG_INET_TUNNEL is not set
|
# CONFIG_INET_TUNNEL is not set
|
||||||
# CONFIG_INET_UDP_DIAG is not set
|
# CONFIG_INET_UDP_DIAG is not set
|
||||||
|
@ -3192,8 +3194,8 @@ CONFIG_LOCALVERSION=""
|
||||||
# CONFIG_LOCALVERSION_AUTO is not set
|
# CONFIG_LOCALVERSION_AUTO is not set
|
||||||
# CONFIG_LOCKD is not set
|
# CONFIG_LOCKD is not set
|
||||||
CONFIG_LOCKDEP_BITS=15
|
CONFIG_LOCKDEP_BITS=15
|
||||||
CONFIG_LOCKDEP_CIRCULAR_QUEUE_BITS=12
|
|
||||||
CONFIG_LOCKDEP_CHAINS_BITS=16
|
CONFIG_LOCKDEP_CHAINS_BITS=16
|
||||||
|
CONFIG_LOCKDEP_CIRCULAR_QUEUE_BITS=12
|
||||||
CONFIG_LOCKDEP_STACK_TRACE_BITS=19
|
CONFIG_LOCKDEP_STACK_TRACE_BITS=19
|
||||||
CONFIG_LOCKDEP_STACK_TRACE_HASH_BITS=14
|
CONFIG_LOCKDEP_STACK_TRACE_HASH_BITS=14
|
||||||
CONFIG_LOCKDEP_SUPPORT=y
|
CONFIG_LOCKDEP_SUPPORT=y
|
||||||
|
@ -3618,6 +3620,7 @@ CONFIG_MMC_BLOCK_MINORS=8
|
||||||
# CONFIG_MMC_SDHCI_ACPI is not set
|
# CONFIG_MMC_SDHCI_ACPI is not set
|
||||||
# CONFIG_MMC_SDHCI_AM654 is not set
|
# CONFIG_MMC_SDHCI_AM654 is not set
|
||||||
# CONFIG_MMC_SDHCI_BCM_KONA is not set
|
# CONFIG_MMC_SDHCI_BCM_KONA is not set
|
||||||
|
# CONFIG_MMC_SDHCI_BRCMSTB is not set
|
||||||
# CONFIG_MMC_SDHCI_CADENCE is not set
|
# CONFIG_MMC_SDHCI_CADENCE is not set
|
||||||
# CONFIG_MMC_SDHCI_F_SDH30 is not set
|
# CONFIG_MMC_SDHCI_F_SDH30 is not set
|
||||||
# CONFIG_MMC_SDHCI_IPROC is not set
|
# CONFIG_MMC_SDHCI_IPROC is not set
|
||||||
|
|
|
@ -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;
|
|
@ -7,13 +7,13 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=glibc
|
PKG_NAME:=glibc
|
||||||
PKG_VERSION:=2.35
|
PKG_VERSION:=2.36
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||||||
PKG_SOURCE_VERSION:=813a8d01716d4e099ec57194a93b14fa08b4beca
|
PKG_SOURCE_VERSION:=3aae843e9e9e6a2502e98ff44d2671b20a023f8e
|
||||||
PKG_MIRROR_HASH:=8c8d92dde334f0e0f9a0949d25b2950db513ce8723c31ae0b0ef64730a00322f
|
PKG_MIRROR_HASH:=29bdd6ca699f297de500ea457741d0706d57a69836fa7d45e6cc2cc20484cad4
|
||||||
PKG_SOURCE_URL:=https://sourceware.org/git/glibc.git
|
PKG_SOURCE_URL:=https://sourceware.org/git/glibc.git
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,7 @@ provides them.
|
||||||
int totfails = 0;
|
int totfails = 0;
|
||||||
|
|
||||||
int main (int argc, char *argv[]);
|
int main (int argc, char *argv[]);
|
||||||
@@ -120,13 +104,3 @@ put8 (char *cp)
|
@@ -119,13 +103,3 @@ put8 (char *cp)
|
||||||
printf("%02x", t);
|
printf("%02x", t);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +627,7 @@ provides them.
|
||||||
range [FROM - N + 1, FROM - 1]. If N is odd the first byte in FROM
|
range [FROM - N + 1, FROM - 1]. If N is odd the first byte in FROM
|
||||||
--- a/stdlib/stdlib.h
|
--- a/stdlib/stdlib.h
|
||||||
+++ b/stdlib/stdlib.h
|
+++ b/stdlib/stdlib.h
|
||||||
@@ -971,6 +971,12 @@ extern int getsubopt (char **__restrict
|
@@ -984,6 +984,12 @@ extern int getsubopt (char **__restrict
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ add /usr/lib to default search path for the dynamic linker
|
||||||
|
|
||||||
--- a/Makeconfig
|
--- a/Makeconfig
|
||||||
+++ b/Makeconfig
|
+++ b/Makeconfig
|
||||||
@@ -618,6 +618,9 @@ else
|
@@ -631,6 +631,9 @@ else
|
||||||
default-rpath = $(libdir)
|
default-rpath = $(libdir)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue