Skip to content

Commit 67706ea

Browse files
committed
doc
Signed-off-by: acejilam <[email protected]>
1 parent 6080e74 commit 67706ea

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

docker-vyos/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ LABEL maintainer="[email protected]" \
8888
org.opencontainers.image.authors="[email protected]" \
8989
org.opencontainers.image.created=${BUILD_DATE} \
9090
org.opencontainers.image.version=${VYOS_VERSION} \
91-
org.opencontainers.image.url="https://github.com/lsutils/vyos-build" \
91+
org.opencontainers.image.url="https://github.com/vyos-arm64/vyos-build" \
9292
org.opencontainers.image.documentation="https://docs.vyos.io/en/latest/contributing/build-vyos.html" \
93-
org.opencontainers.image.source="https://github.com/lsutils/vyos-build" \
93+
org.opencontainers.image.source="https://github.com/vyos-arm64/vyos-build" \
9494
org.opencontainers.image.vendor="Sentrium S.L." \
9595
org.opencontainers.image.licenses="GNU" \
9696
org.opencontainers.image.title="vyos-build" \

docker/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ RUN grep "VERSION_ID" /etc/os-release || (echo 'VERSION_ID="12"' >> /etc/os-rele
4242
# `docker run --rm --privileged multiarch/qemu-user-static:register --reset`
4343
LABEL authors="VyOS Maintainers <[email protected]>" \
4444
org.opencontainers.image.authors="VyOS Maintainers <[email protected]>" \
45-
org.opencontainers.image.url="https://github.com/lsutils/vyos-build" \
45+
org.opencontainers.image.url="https://github.com/vyos-arm64/vyos-build" \
4646
org.opencontainers.image.documentation="https://docs.vyos.io/en/latest/contributing/build-vyos.html" \
47-
org.opencontainers.image.source="https://github.com/lsutils/vyos-build" \
47+
org.opencontainers.image.source="https://github.com/vyos-arm64/vyos-build" \
4848
org.opencontainers.image.vendor="Sentrium S.L." \
4949
org.opencontainers.image.licenses="GNU" \
5050
org.opencontainers.image.title="vyos-build" \
@@ -150,7 +150,7 @@ RUN eval $(opam env --root=/opt/opam --set-root) && opam install -y \
150150

151151
# Build VyConf which is required to build libvyosconfig
152152
RUN eval $(opam env --root=/opt/opam --set-root) && \
153-
opam pin add vyos1x-config https://github.com/notvyos/vyos1x-config.git#b7f104781 -y
153+
opam pin add vyos1x-config https://github.com/vyos-arm64/vyos1x-config.git#b7f104781 -y
154154

155155
# Packages needed for libvyosconfig
156156
RUN apt-get update && apt-get install -y \
@@ -160,7 +160,7 @@ RUN apt-get update && apt-get install -y \
160160

161161
# Build libvyosconfig
162162
RUN eval $(opam env --root=/opt/opam --set-root) && \
163-
git clone https://github.com/notvyos/libvyosconfig.git /tmp/libvyosconfig && \
163+
git clone https://github.com/vyos-arm64/libvyosconfig.git /tmp/libvyosconfig && \
164164
cd /tmp/libvyosconfig && git checkout 6c1f8a3f && \
165165
dpkg-buildpackage -uc -us -tc -b && \
166166
dpkg -i /tmp/libvyosconfig0_*_$(dpkg-architecture -qDEB_HOST_ARCH).deb

packages/vyos-build-container/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pipeline {
5353
doGenerateSubmoduleConfigurations: false,
5454
extensions: [[$class: 'CleanCheckout']],
5555
branches: [[name: env.BRANCH_NAME]],
56-
userRemoteConfigs: [[url: 'https://github.com/lsutils/vyos-build.git ']]])
56+
userRemoteConfigs: [[url: 'https://github.com/vyos-arm64/vyos-build.git ']]])
5757

5858
sh 'cd ..; ./build.sh'
5959
}

scripts/image-build/build-vyos-image

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ except Exception as e:
6363
# Checkout vyos-1x under build directory
6464
try:
6565
branch_name = build_defaults['vyos_branch']
66-
url_vyos_1x = 'https://github.com/notvyos/vyos-1x'
66+
url_vyos_1x = 'https://github.com/vyos-arm64/vyos-1x'
6767
path_vyos_1x = os.path.join(defaults.BUILD_DIR, 'vyos-1x')
6868
try:
6969
repo_vyos_1x = git.Repo.clone_from(url_vyos_1x, path_vyos_1x, no_checkout=True)

scripts/list-build-dependencies

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,21 +80,21 @@ echo ""
8080
GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
8181

8282
# First we need to get vyos-world so we know all individual packages for VyOS
83-
curl -L https://github.com/notvyos/vyos-world/raw/$GIT_BRANCH/debian/control \
83+
curl -L https://github.com/vyos-arm64/vyos-world/raw/$GIT_BRANCH/debian/control \
8484
--output /tmp/vyos-world.control --retry 100 --retry-delay 1 --silent
8585

8686
VYOS_PACKAGES=$(get_runtime_depends /tmp/vyos-world.control)
8787
rm -f /tmp/vyos-world.control
8888
for pkg in $VYOS_PACKAGES
8989
do
9090
# Check if repo exists
91-
res=$(curl -o /dev/null --silent -Iw '%{http_code}' https://github.com/notvyos/$pkg)
91+
res=$(curl -o /dev/null --silent -Iw '%{http_code}' https://github.com/vyos-arm64/$pkg)
9292
if [[ $res -ne 200 ]]; then
9393
continue
9494
fi
9595

9696
CTRLFILE=/tmp/$pkg.control
97-
curl -L https://github.com/notvyos/$pkg/raw/$GIT_BRANCH/debian/control \
97+
curl -L https://github.com/vyos-arm64/$pkg/raw/$GIT_BRANCH/debian/control \
9898
--output $CTRLFILE --retry 100 --retry-delay 1 --silent
9999

100100
declare -a array
@@ -104,7 +104,7 @@ do
104104
length=${#array[@]}
105105
cnt=0
106106

107-
echo "# Packages needed to build '$pkg' from https://github.com/notvyos/$pkg"
107+
echo "# Packages needed to build '$pkg' from https://github.com/vyos-arm64/$pkg"
108108
echo "apt-get install -y \\"
109109
for name in "${array[@]}"; do
110110
cnt=$((cnt + 1))

0 commit comments

Comments
 (0)