Browse Source

REPO Migration: copy JH7100_VisionFive_devel repo from github to gitlab

According the up comeing code developing process, copy the JH7100
VisionFive main branch 'JH7100_VisionFive_devel' on github
git@github.com:starfive-tech/freelight-u-sdk.git
to http://gitlab.starfivetech.com/jh7100/freelight-u-sdk.git

keep the usdk and submodules branch name. And update README.md,
builroot config, .gitmodules, submodule path info for
the repo change.

Record the repo commit id:
freelight-u-sdk: 3a782f6fba3f826931dca081722449469e632d50
buildroot      : 7dd07bb55ed4f4f1507b4f2d0b1e95d39d94c0f2
u-boot         : ef571fcead40632331f5441836e27161cb776a17
linux          : 53ba58c39b2cc2f236a174971053e53b8a12de90
opensbi        : ce4c0188d96b2c20c2e08d24646a5e517fe15a4b

Signed-off-by: Andy Hu <andy.hu@starfivetech.com>
Andy Hu 2 years ago
parent
commit
219228298f
7 changed files with 17 additions and 18 deletions
  1. 6 6
      .gitmodules
  2. 1 1
      HiFive_U-Boot
  3. 6 7
      README.md
  4. 1 1
      buildroot
  5. 1 1
      conf/buildroot_initramfs_config
  6. 1 1
      linux
  7. 1 1
      opensbi

+ 6 - 6
.gitmodules

@@ -1,17 +1,17 @@
 [submodule "buildroot"]
 	path = buildroot
-	url = git@github.com:starfive-tech/sft-riscv-buildroot.git
-	branch = starlight_multimedia
+	url = http://192.168.110.45/jh7100/buildroot.git
+	branch = JH7100_VisionFive_devel
 [submodule "HiFive_U-Boot"]
 	path = HiFive_U-Boot
-	url = git@github.com:starfive-tech/u-boot.git
-	branch = JH7100_upstream_devel
+	url = http://192.168.110.45/jh7100/u-boot.git
+	branch = JH7100_VisionFive_devel
 [submodule "linux"]
 	path = linux
-	url = git@github.com:starfive-tech/linux.git
+	url = http://192.168.110.45/jh7100/linux.git
 	branch = visionfive-5.15.y-devel
 [submodule "opensbi"]
 	path = opensbi
-	url = git@github.com:starfive-tech/opensbi.git
+	url = http://192.168.110.45/jh7100/opensbi.git
 	branch = master
 

+ 1 - 1
HiFive_U-Boot

@@ -1 +1 @@
-Subproject commit 20bf0f0601464c9080a13b0033f5f61e69f4000b
+Subproject commit ef571fcead40632331f5441836e27161cb776a17

+ 6 - 7
README.md

@@ -25,9 +25,9 @@ Install required additional packages.
 
 ## Fetch code Instructions ##
 
-Checkout this repository  (branch `JH7100_VisionFive`). Then you will need to checkout all of the linked submodules using:
+Checkout this repository  (branch `JH7100_VisionFive_devel`). Then you will need to checkout all of the linked submodules using:
 
-	$ git checkout --track origin/JH7100_VisionFive
+	$ git checkout --track origin/JH7100_VisionFive_devel
 	$ git submodule update --init --recursive
 
 This will take some time and require around 5GB of disk space. Some modules may
@@ -36,16 +36,15 @@ fail because certain dependencies don't have the best git hosting.
 Once the submodules are initialized, 4 submodules `buildroot`, `HiFive_U-boot`,
 `linux` and `opensbi` need checkout to corresponding branches manually, seeing `.gitmodule`
 
-	$ cd buildroot && git checkout --track origin/starlight_multimedia && cd ..
-	$ cd HiFive_U-Boot && git checkout --track origin/JH7100_upstream_devel && cd ..
+	$ cd buildroot && git checkout --track origin/JH7100_VisionFive_devel && cd ..
+	$ cd HiFive_U-Boot && git checkout --track origin/JH7100_VisionFive_devel && cd ..
 	$ cd linux && git checkout --track origin/visionfive-5.15.y-devel && cd ..
 	$ cd opensbi && git checkout master && cd ..
 
 ## Build Instructions ##
 
 After update submodules, run `make` or `make -jx` and the complete toolchain and
-fw_payload.bin.out & image.fit will be built. The completed build tree will consume about 18G of
-disk space.
+`fw_payload.bin.out` & `image.fit` will be built. The completed build tree will consume about 18G of disk space.
 
 U-SDK support different hardware boards, you should specify the board you use when build the project. Now U-SDK support fit image build for three starfive boards: `starlight`, `starlight-a1` or `visionfive`.
 You can choose building your target board with `HWBOARD` variables.
@@ -67,7 +66,7 @@ By default, the above generated image does not contain VPU driver module(wave511
 	$ rm -rf work/buildroot_initramfs/images/rootfs.tar
 	$ make -jx
 
-Copy files fw_payload.bin.out and image.fit to tftp installation path to use
+Copy files `fw_payload.bin.out` and `image.fit` to tftp server installation path to use
 
 ```
 Path:

+ 1 - 1
buildroot

@@ -1 +1 @@
-Subproject commit c5237352f24e5b8d1240086ea0f07fd20d1fadb1
+Subproject commit 7dd07bb55ed4f4f1507b4f2d0b1e95d39d94c0f2

+ 1 - 1
conf/buildroot_initramfs_config

@@ -1,7 +1,7 @@
 BR2_riscv=y
 BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
 BR2_KERNEL_HEADERS_CUSTOM_GIT=y
-BR2_KERNEL_HEADERS_CUSTOM_REPO_URL="https://github.com/starfive-tech/linux.git"
+BR2_KERNEL_HEADERS_CUSTOM_REPO_URL="http://192.168.110.45/jh7100/linux.git"
 BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION="visionfive-5.15.y-devel"
 BR2_PACKAGE_GLIBC_UTILS=y
 BR2_GCC_VERSION_10_X=y

+ 1 - 1
linux

@@ -1 +1 @@
-Subproject commit 3da8d33cc93b434f1cc356c391095d458ca82a04
+Subproject commit 53ba58c39b2cc2f236a174971053e53b8a12de90

+ 1 - 1
opensbi

@@ -1 +1 @@
-Subproject commit 5d025eb2353550eadbd2fa9b8083a92fe9b07bd9
+Subproject commit ce4c0188d96b2c20c2e08d24646a5e517fe15a4b