-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #778 from nathanchance/update-patches-sep-28-2024
- Loading branch information
Showing
20 changed files
with
106 additions
and
24 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
36 changes: 36 additions & 0 deletions
36
patches/mainline/0001-lib-Kconfig.debug-Force-disable-BUILTIN_MODULE_RANGE.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,36 @@ | ||
From 7d7e669c606e72ce8c20f19a0eacacd47522ca1a Mon Sep 17 00:00:00 2001 | ||
From: Nathan Chancellor <[email protected]> | ||
Date: Sat, 28 Sep 2024 11:32:49 -0700 | ||
Subject: [PATCH] lib/Kconfig.debug: Force disable BUILTIN_MODULE_RANGES | ||
|
||
Commit 5f5e7344322f ("kbuild: generate offset range data for builtin | ||
modules") introduced a dependency on gawk, which causes allmodconfig | ||
builds in TuxSuite to fail because gawk is not present: | ||
|
||
/bin/sh: 1: gawk: not found | ||
make[3]: *** [/builds/linux/scripts/Makefile.vmlinux:47: modules.builtin.ranges] Error 127 | ||
|
||
While this is fixed in TuxSuite, force disable | ||
CONFIG_BUILTIN_MODULE_RANGES, as it is not critical to test. | ||
|
||
Link: https://gitlab.com/Linaro/tuxmake/-/issues/220 | ||
Signed-off-by: Nathan Chancellor <[email protected]> | ||
--- | ||
lib/Kconfig.debug | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug | ||
index 7315f643817a..0a1fbf9ebfd6 100644 | ||
--- a/lib/Kconfig.debug | ||
+++ b/lib/Kconfig.debug | ||
@@ -575,6 +575,7 @@ config VMLINUX_MAP | ||
|
||
config BUILTIN_MODULE_RANGES | ||
bool "Generate address range information for builtin modules" | ||
+ depends on BROKEN | ||
depends on !LTO | ||
depends on VMLINUX_MAP | ||
help | ||
-- | ||
2.46.1 | ||
|
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 +1,2 @@ | ||
0001-lib-Kconfig.debug-Force-disable-BUILTIN_MODULE_RANGE.patch | ||
v2_20240916_dan_carpenter_iio_bmi323_fix_copy_and_paste_bugs_in_suspend_resume.patch |
36 changes: 36 additions & 0 deletions
36
patches/tip/0001-lib-Kconfig.debug-Force-disable-BUILTIN_MODULE_RANGE.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,36 @@ | ||
From 7d7e669c606e72ce8c20f19a0eacacd47522ca1a Mon Sep 17 00:00:00 2001 | ||
From: Nathan Chancellor <[email protected]> | ||
Date: Sat, 28 Sep 2024 11:32:49 -0700 | ||
Subject: [PATCH] lib/Kconfig.debug: Force disable BUILTIN_MODULE_RANGES | ||
|
||
Commit 5f5e7344322f ("kbuild: generate offset range data for builtin | ||
modules") introduced a dependency on gawk, which causes allmodconfig | ||
builds in TuxSuite to fail because gawk is not present: | ||
|
||
/bin/sh: 1: gawk: not found | ||
make[3]: *** [/builds/linux/scripts/Makefile.vmlinux:47: modules.builtin.ranges] Error 127 | ||
|
||
While this is fixed in TuxSuite, force disable | ||
CONFIG_BUILTIN_MODULE_RANGES, as it is not critical to test. | ||
|
||
Link: https://gitlab.com/Linaro/tuxmake/-/issues/220 | ||
Signed-off-by: Nathan Chancellor <[email protected]> | ||
--- | ||
lib/Kconfig.debug | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug | ||
index 7315f643817a..0a1fbf9ebfd6 100644 | ||
--- a/lib/Kconfig.debug | ||
+++ b/lib/Kconfig.debug | ||
@@ -575,6 +575,7 @@ config VMLINUX_MAP | ||
|
||
config BUILTIN_MODULE_RANGES | ||
bool "Generate address range information for builtin modules" | ||
+ depends on BROKEN | ||
depends on !LTO | ||
depends on VMLINUX_MAP | ||
help | ||
-- | ||
2.46.1 | ||
|
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 @@ | ||
0001-lib-Kconfig.debug-Force-disable-BUILTIN_MODULE_RANGE.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
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.