-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
poky: fix unppack errors for poky recipes after upstream renamed branch
Previous change fixed only fetch by using MIRRORS variable. This proved insufficient since branch name is also used during do_unpack. Instead add bbapppend files replacing SRC_URI for each affectyed recipe.
- Loading branch information
Showing
5 changed files
with
14 additions
and
6 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
3 changes: 3 additions & 0 deletions
3
dynamic-layers/poky/meta/recipes-extended/cracklib/cracklib_2.9.8.bbappend
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,3 @@ | ||
# upstream renamed branch | ||
SRC_URI:remove = " git://github.com/cracklib/cracklib;protocol=https;branch=master" | ||
SRC_URI:append = " git://github.com/cracklib/cracklib;protocol=https;branch=main" |
3 changes: 3 additions & 0 deletions
3
dynamic-layers/poky/meta/recipes-graphics/glslang/glslang_1.3.204.1.bbappend
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,3 @@ | ||
# upstream renamed branch | ||
SRC_URI:remove = " git://github.com/KhronosGroup/glslang.git;protocol=https;branch=master" | ||
SRC_URI:append = " git://github.com/KhronosGroup/glslang.git;protocol=https;branch=main" |
3 changes: 3 additions & 0 deletions
3
dynamic-layers/poky/meta/recipes-graphics/spir/spirv-headers_1.3.204.1.bbappend
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,3 @@ | ||
# upstream renamed branch | ||
SRC_URI:remove = " git://github.com/KhronosGroup/SPIRV-Headers;protocol=https;branch=master" | ||
SRC_URI:append = " git://github.com/KhronosGroup/SPIRV-Headers;protocol=https;branch=main" |
3 changes: 3 additions & 0 deletions
3
dynamic-layers/poky/meta/recipes-support/bmap-tools/bmap-tools_git.bbappend
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,3 @@ | ||
# upstream renamed branch | ||
SRC_URI:remove = " git://github.com/intel/${BPN};branch=master;protocol=https" | ||
SRC_URI:append = " git://github.com/intel/${BPN};branch=main;protocol=https" |