Trying to set up the flex-builder for the LX2160 (flex-builder -m lx2160ardb_rev2) on Ubuntu 20.04 and had completed the following:
1 Replace the git link of xserver > url: https://gitlab.freedesktop.org/xorg/xserver.git
2 Replace the git link of xwayland > url: https://gitlab.freedesktop.org/wayland/wayland.git
But still getting unable to access the GitHub.
Ubuntu 20.04:
fetch firmware repositories
repo: atf
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/atf'...
fatal: unable to access 'https://github.com/nxp-qoriq/atf.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: rcw
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/rcw'...
fatal: unable to access 'https://github.com/nxp-qoriq/rcw.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: uboot
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/uboot'...
fatal: unable to access 'https://github.com/nxp-qoriq/u-boot.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: uefi_bin
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/uefi_bin'...
fatal: unable to access 'https://github.com/nxp-qoriq/qoriq-uefi-binary.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: mc_bin
tag: lf-5.10.35-2.0.0
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/mc_bin'...
fatal: unable to access 'https://github.com/nxp-qoriq/qoriq-mc-binary.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: mc_utils
tag: lf-5.10.35-2.0.0
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/mc_utils'...
fatal: unable to access 'https://github.com/nxp-qoriq/mc-utils.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: fm_ucode
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/fm_ucode'...
fatal: unable to access 'https://github.com/nxp-qoriq/qoriq-fm-ucode.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: qe_ucode
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/qe_ucode'...
fatal: unable to access 'https://github.com/nxp-qoriq/qoriq-qe-ucode.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: phy_cortina
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/phy_cortina'...
fatal: unable to access 'https://github.com/nxp-qoriq/qoriq-firmware-cortina.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: phy_inphi
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/phy_inphi'...
fatal: unable to access 'https://github.com/nxp-qoriq/qoriq-firmware-inphi.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: pfe_bin
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/pfe_bin'...
fatal: unable to access 'https://github.com/nxp-qoriq/qoriq-engine-pfe-bin.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: ddr_phy_bin
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/firmware/ddr_phy_bin'...
fatal: unable to access 'https://github.com/nxp-qoriq/ddr-phy-binary.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: dp_firmware_cadence
tag: LSDK-21.08
make: Leaving directory '/home/qwer/test/flexbuild_lsdk2108_github/packages/firmware'
make: Entering directory '/home/qwer/test/flexbuild_lsdk2108_github/packages/linux'
fetch linux repositories
repo: linux
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/linux/linux'...
fatal: unable to access 'https://github.com/nxp-qoriq/linux.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: cryptodev_linux
tag: cryptodev-linux-1.12
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/linux/cryptodev_linux'...
fatal: unable to access 'https://github.com/cryptodev-linux/cryptodev-linux.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: lttng_modules
tag: v2.13.0
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/linux/lttng_modules'...
fatal: unable to access 'https://git.lttng.org/lttng-modules.git/': server certificate verification failed. CAfile: none CRLfile: none
repo: mdio_proxy_module
tag: LSDK-21.08
Cloning into '/home/qwer/test/flexbuild_lsdk2108_github/components/linux/mdio_proxy_module'...
fatal: unable to access 'https://github.com/nxp-qoriq/mdio-proxy-module.git/': server certificate verification failed. CAfile: none CRLfile: none
make: *** [Makefile:29: repo_fetch] Error 128
make: Leaving directory '/home/qwer/test/flexbuild_lsdk2108_github/packages/linux'
Thank you for your help.
Hello,
you can set git configuration as below:
git config --global http.sslverify false
git config --global https.sslverify false
then manually test it:
git clone https://github.com/nxp-qoriq/atf.git/
It works on my side.