Skip to content

Commit

Permalink
WIP: ca55: aosedge: Fix SRC_URL
Browse files Browse the repository at this point in the history
Signed-off-by: Yuya Hamamachi <[email protected]>
  • Loading branch information
yhamamachi committed Sep 5, 2024
1 parent bb6e0f5 commit 4df1351
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SRC_URI := "${@d.getVar('SRC_URI').replace('git@github.com/aoscloud', 'git@github.com/aosedge')}"
SRC_URI := "${@d.getVar('SRC_URI').replace('git://github.com/aoscloud', 'git://github.com/aosedge')}"
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SRC_URI := "${@d.getVar('SRC_URI').replace('git@github.com/aoscloud', 'git@github.com/aosedge')}"
SRC_URI := "${@d.getVar('SRC_URI').replace('git://github.com/aoscloud', 'git://github.com/aosedge')}"
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SRC_URI := "${@d.getVar('SRC_URI').replace('git@github.com/aoscloud', 'git@github.com/aosedge')}"
SRC_URI := "${@d.getVar('SRC_URI').replace('git://github.com/aoscloud', 'git://github.com/aosedge')}"
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ do_install_append() {
fi
}

SRC_URI := "${@d.getVar('SRC_URI').replace('git@github.com/aoscloud', 'git@github.com/aosedge')}"
SRC_URI := "${@d.getVar('SRC_URI').replace('git://github.com/aoscloud', 'git://github.com/aosedge')}"
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SRC_URI := "${@d.getVar('SRC_URI').replace('git@github.com/aoscloud', 'git@github.com/aosedge')}"
SRC_URI := "${@d.getVar('SRC_URI').replace('git://github.com/aoscloud', 'git://github.com/aosedge')}"
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,13 @@ do_install_append() {
fi
}

SRC_URI := "${@d.getVar('SRC_URI').replace('[email protected]/aoscloud', '[email protected]/aosedge')}"
RENESASOTA_IMPORT := "github.com/aosedge/aos-core-rcar-gen4"
python () {
src_uri = d.getVar('SRC_URI')
# Change to use new repository
new_src_uri = src_uri.replace('git://github.com/aoscloud', 'git://github.com/aosedge')
# Change fetch protocol to https
new_src_uri = new_src_uri.replace('ssh', 'https').replace('git@', '')
d.setVar('SRC_URI', new_src_uri)
}

Original file line number Diff line number Diff line change
@@ -1 +1 @@
SRC_URI := "${@d.getVar('SRC_URI').replace('git@github.com/aoscloud', 'git@github.com/aosedge')}"
SRC_URI := "${@d.getVar('SRC_URI').replace('git://github.com/aoscloud', 'git://github.com/aosedge')}"

0 comments on commit 4df1351

Please sign in to comment.