Browse Source

repo change: update repo path info for github repo

upload the jh7110 visionfive2 repo to github, including:
VisionFive2, opensbi, linux, u-boot, buildroot, soft_3rdpart.

This is the main repo and could build the entire firmware which
could run on the jh7110 visionfive2 board.

this version based on the internal version VF2_515_v2.5.0

Signed-off-by: Andy Hu <andy.hu@starfivetech.com>
Andy Hu 1 year ago
parent
commit
d255bb1137
4 changed files with 20 additions and 26 deletions
  1. 9 9
      .gitmodules
  2. 7 13
      README.md
  3. 2 2
      conf/buildroot_initramfs_config
  4. 2 2
      conf/buildroot_rootfs_config

+ 9 - 9
.gitmodules

@@ -1,20 +1,20 @@
 [submodule "buildroot"]
 	path = buildroot
-	url = git@192.168.110.45:sbc/buildroot.git
-	branch = vf2-devel
+	url = git@github.com:starfive-tech/buildroot.git
+	branch = JH7110_VisionFive2_devel
 [submodule "u-boot"]
 	path = u-boot
-	url = git@192.168.110.45:sbc/u-boot.git
-	branch = vf2-devel
+	url = git@github.com:starfive-tech/u-boot.git
+	branch = JH7110_VisionFive2_devel
 [submodule "linux"]
 	path = linux
-	url = git@192.168.110.45:sbc/linux.git
-	branch = vf2-515-devel
+	url = git@github.com:starfive-tech/linux.git
+	branch = JH7110_VisionFive2_devel
 [submodule "opensbi"]
 	path = opensbi
-	url = git@192.168.110.45:sbc/opensbi.git
+	url = git@github.com:starfive-tech/opensbi.git
 	branch = master
 [submodule "soft_3rdpart"]
 	path = soft_3rdpart
-	url = git@192.168.110.45:sdk/soft_3rdpart.git
-	branch = jh7110-devel
+	url = git@github.com:starfive-tech/soft_3rdpart.git
+	branch = JH7110_VisionFive2_devel

+ 7 - 13
README.md

@@ -27,26 +27,20 @@ $ sudo apt-get install git-lfs
 
 Checkout this repository  (e.g.: branch `vf2-515-devel`). Then checkout all of the linked submodules using:
 
-	$ git clone git@192.168.110.45:sbc/visionfive.git
-	$ git checkout --track origin/vf2-515-devel
+	$ git clone git@github.com:starfive-tech/VisionFive2.git
+	$ git checkout JH7110_VisionFive2_devel
 	$ git submodule update --init --recursive
 
-In case someone run `git clone git@gitlab.starfivetech.com:sbc/visionfive.git`, recommend to add the below at the tail of the /etc/hosts to fix the network domain issue:
-
-```
-192.168.110.45 gitlab.starfivetech.com
-```
-
 This will take some time and require around 7GB of disk space. Some modules may fail because certain dependencies don't have the best git hosting. The only solution is to wait and try again later (or ask someone for a copy of that source repository).
 
-For user who build the release tag version, the above command is enough. For developer, need to switch the 5 submodules `buildroot`, `u-boot`, `linux`, `opensbi`, `soft_3rdpart` to correct branch manually, or refer to `.gitmodule`
+For user who build the release tag version, the above command is enough. For developer, need to switch the 5 submodules `buildroot`, `u-boot`, `linux`, `opensbi`, `soft_3rdpart` to correct branch manually, also could refer to `.gitmodule`
 
 ```
-$ cd buildroot && git checkout --track origin/vf2-devel && cd ..
-$ cd u-boot && git checkout --track origin/vf2-devel && cd ..
-$ cd linux && git checkout --track origin/vf2-515-devel && cd ..
+$ cd buildroot && git checkout --track origin/JH7110_VisionFive2_devel && cd ..
+$ cd u-boot && git checkout --track origin/JH7110_VisionFive2_devel && cd ..
+$ cd linux && git checkout --track origin/JH7110_VisionFive2_devel && cd ..
 $ cd opensbi && git checkout master && cd ..
-$ cd soft_3rdpart && git checkout jh7110-devel && cd ..
+$ cd soft_3rdpart && git checkout JH7110_VisionFive2_devel && cd ..
 ```
 
 ## Quick Build Instructions

+ 2 - 2
conf/buildroot_initramfs_config

@@ -1,8 +1,8 @@
 BR2_riscv=y
 BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
 BR2_KERNEL_HEADERS_CUSTOM_GIT=y
-BR2_KERNEL_HEADERS_CUSTOM_REPO_URL="git@192.168.110.45:sbc/linux.git"
-BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION="vf2-515-devel"
+BR2_KERNEL_HEADERS_CUSTOM_REPO_URL="git@github.com:starfive-tech/linux.git"
+BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION="JH7110_VisionFive2_devel"
 BR2_PACKAGE_GLIBC_UTILS=y
 BR2_TOOLCHAIN_BUILDROOT_CXX=y
 BR2_TOOLCHAIN_BUILDROOT_FORTRAN=y

+ 2 - 2
conf/buildroot_rootfs_config

@@ -1,8 +1,8 @@
 BR2_riscv=y
 BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
 BR2_KERNEL_HEADERS_CUSTOM_GIT=y
-BR2_KERNEL_HEADERS_CUSTOM_REPO_URL="git@192.168.110.45:sbc/linux.git"
-BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION="vf2-515-devel"
+BR2_KERNEL_HEADERS_CUSTOM_REPO_URL="git@github.com:starfive-tech/linux.git"
+BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION="JH7110_VisionFive2_devel"
 BR2_PACKAGE_GLIBC_UTILS=y
 BR2_TOOLCHAIN_BUILDROOT_CXX=y
 BR2_TOOLCHAIN_BUILDROOT_FORTRAN=y