-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Nathan Chancellor <[email protected]>
- Loading branch information
1 parent
aaee21d
commit 7a63040
Showing
2 changed files
with
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,22 +31,14 @@ def prepare_source(base_name, base_ref='origin/master'): | |
# Patching section | ||
if base_name in NEXT_TREES: | ||
# https://lore.kernel.org/[email protected]/ | ||
patches.append('https://lore.kernel.org/all/[email protected]/') # net: phy: Don't conditionally compile the phy_link_topology creation | ||
|
||
if base_name == 'fedora': | ||
patches.append('https://lore.kernel.org/all/[email protected]/') # wifi: nl80211: Avoid address calculations via out of bounds array indexing | ||
|
||
# This was in -next through drm-misc-next but for-linux-next in | ||
# drm/misc/kernel is now pointed at drm-misc-next-fixes, which does not | ||
# have this change: https://lore.kernel.org/all/20240503162733.GA4136865@thelio-3990X/ | ||
patches.append('https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/c72211751870ffa2cff5d91834059456cfa7cbd5.patch') # drm: xlnx: zynqmp_dpsub: Fix compilation error | ||
|
||
if base_name in ('fedora', 'rpi'): | ||
# Revert v1 and apply v2 of "of: reserved_mem: Remove the use of | ||
# phandle from the reserved_mem APIs" to resolve reported clang warning: | ||
# https://lore.kernel.org/[email protected]/ | ||
reverts.append('2acef04ad57cab44b33001542791fc93f81cadf1') | ||
patches.append('https://git.kernel.org/robh/p/c56436ef17520c5fb0f9c2fc47aa961a7946895f') | ||
patches.append('https://lore.kernel.org/all/[email protected]/') # net: phy: phy_link_topology: Pass netdevice to phy_link_topo helpers | ||
patches.append('https://lore.kernel.org/all/[email protected]/') # net: phy: phy_link_topology: Lazy-initialize the link topology | ||
|
||
patches.append('https://lore.kernel.org/all/20240513-f2fs-add-missing-inline-to-f2fs_build_fault_attr-v1-1-c3ce1c995fa2@kernel.org/') # f2fs: Add inline to f2fs_build_fault_attr() stub | ||
|
||
if base_name == 'linux-next-llvm': | ||
# https://lore.kernel.org/20240513151920.GA3061950@thelio-3990X/ | ||
reverts.append('32fde9e18b3f557ac2fd12a25fc91211105d3e1e') # KVM: SEV: Provide support for SNP_EXTENDED_GUEST_REQUEST NAE event | ||
# yapf: enable | ||
|
||
source_folder = Path(os.environ['CBL_SRC_P'], base_name) | ||
|