-
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
324d312
commit 44fe8af
Showing
2 changed files
with
4 additions
and
3 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 |
---|---|---|
|
@@ -27,10 +27,10 @@ def prepare_source(base_name, base_ref='origin/master'): | |
patches = [] | ||
commits = [] | ||
|
||
# yapf: disable | ||
# Patching section | ||
if base_name == 'fedora': | ||
patches.append('https://lore.kernel.org/all/[email protected]/') # PCI: tegra194: Add check for host and endpoint modes | ||
# yapf: disable | ||
if base_name == 'linux-next-llvm': | ||
patches.append('https://git.kernel.org/tip/tip/p/82110ae235e0560d1f952f74f9fd991587b0e3a7') # x86/boot: Address clang -Wimplicit-fallthrough in vsprintf() | ||
# yapf: enable | ||
|
||
source_folder = Path(os.environ['CBL_SRC_P'], base_name) | ||
|