forked from rmandrad/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into bananapi4-nvme-wip
- Loading branch information
Showing
18 changed files
with
99 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-6.6 = .66 | ||
LINUX_KERNEL_HASH-6.6.66 = 9d757937c4661c2f512c62641b74ef74eff9bb13dc5dbcbaaa108c21152f1e52 | ||
LINUX_VERSION-6.6 = .67 | ||
LINUX_KERNEL_HASH-6.6.67 = e41da482ec42a3b0e2b8ed2574c1d327e3dcf95cdf025c55a356b04307113e1a |
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
49 changes: 49 additions & 0 deletions
49
package/utils/busybox/patches/002-upstream-fix-hexdump.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,49 @@ | ||
From 87e60dcf0f7ef917b73353d8605188a420bd91f9 Mon Sep 17 00:00:00 2001 | ||
From: Natanael Copa <ncopa@alpinelinux.org> | ||
Date: Mon, 28 Oct 2024 15:26:21 +0100 | ||
Subject: hexdump: fix regression with -n4 -e '"%u"' | ||
|
||
Fix bug introduced in busybox 1.37.0 that broke kernel builds. | ||
|
||
Fixes commit e2287f99fe6f (od: for !DESKTOP, match output more closely | ||
to GNU coreutils 9.1, implement -s) | ||
|
||
function old new delta | ||
rewrite 967 976 +9 | ||
|
||
Signed-off-by: Natanael Copa <ncopa@alpinelinux.org> | ||
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||
--- | ||
libbb/dump.c | 6 ++++-- | ||
testsuite/hexdump.tests | 6 ++++++ | ||
2 files changed, 10 insertions(+), 2 deletions(-) | ||
|
||
--- a/libbb/dump.c | ||
+++ b/libbb/dump.c | ||
@@ -198,9 +198,11 @@ static NOINLINE void rewrite(priv_dumper | ||
if (!e) | ||
goto DO_BAD_CONV_CHAR; | ||
pr->flags = F_INT; | ||
- if (e > int_convs + 1) /* not d or i? */ | ||
- pr->flags = F_UINT; | ||
byte_count_str = "\010\004\002\001"; | ||
+ if (e > int_convs + 1) { /* not d or i? */ | ||
+ pr->flags = F_UINT; | ||
+ byte_count_str++; | ||
+ } | ||
goto DO_BYTE_COUNT; | ||
} else | ||
if (strchr(int_convs, *p1)) { /* %d etc */ | ||
--- a/testsuite/hexdump.tests | ||
+++ b/testsuite/hexdump.tests | ||
@@ -82,4 +82,10 @@ testing "hexdump -e /2 %d" \ | ||
"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"\ | ||
"\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"\ | ||
|
||
+testing "hexdump -n4 -e '\"%u\"'" \ | ||
+ "hexdump -n4 -e '\"%u\"'" \ | ||
+ "12345678" \ | ||
+ "" \ | ||
+ "\x4e\x61\xbc\x00AAAA" | ||
+ | ||
exit $FAILCOUNT |
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
10 changes: 10 additions & 0 deletions
10
...t/linux/mediatek/patches-6.6/955-dts-mt7968a-bpi-r3-add-label-to-gmac-for-sfp1-port.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,10 @@ | ||
--- a/arch/arm64/boot/dts/mediatek/mt7986a-bananapi-bpi-r3.dts | ||
+++ b/arch/arm64/boot/dts/mediatek/mt7986a-bananapi-bpi-r3.dts | ||
@@ -195,6 +195,7 @@ | ||
phy-mode = "2500base-x"; | ||
sfp = <&sfp1>; | ||
managed = "in-band-status"; | ||
+ openwrt,netdev-name = "sfp1"; | ||
}; | ||
|
||
mdio: mdio-bus { |