LSDK 21.08 repo fetch has issues...

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

LSDK 21.08 repo fetch has issues...

Jump to solution
686 Views
williawh
Contributor III

In the file: ~/flexbuild_lsdk2108_github/docs$ vi lsdk_build_install.md

It states:

Step 1: Download the latest flexbuild tarball and extract it against the existing flexbuild work directory
$ source setup.env
$ flex-builder -i repo-fetch (fetch repos of LSDK components)

It pulls from repositories listed in: ~/flexbuild_lsdk2108_github/configs/sdk.yml

In this file, sdk.yml:

wayland:
url: https://github.com/wayland-project/wayland.git
tag: 1.18.0

Does not exist. I found that I can access from https://gitlab.freedesktop.org/wayland/wayland.git

but is this the one NXP has used and tested? I am not sure it is.

Now:

xserver:
url: https://github.com/freedesktop/xorg-xserver.git
tag: xorg-server-1.20.9

Is asking for username:

I setup an account at https://gitlab.freedesktop.org but now they want a token per project.

What do we do here? Where do we go to access these projects now?

Should I not attempt to access what I believe to be the latest and greatest from NXP?

I want to be able to stay abreast of the the latest updates from NXP when developing...

Thanks,

William

0 Kudos
1 Solution
641 Views
kenli
NXP Employee
NXP Employee

The sdk.yml of the latest flex-builder github version does have 2 typos, which will be updated on the official website later.

A workarround is the following steps:
1 Replace the git link of xserver
   url: https://github.com/freedesktop/xorg-xserver.git -> url: https://gitlab.freedesktop.org/xorg/xserver.git
2 Replace the git link of xwayland
   url: https://github.com/wayland-project/wayland.git   -> url: https://gitlab.freedesktop.org/wayland/wayland.git

rm the tmp file 

rm -rf $(find ./ -name wayland);rm -rf $(find ./ -name xserver)

then refetch the file

bld -i  repo-fetch

Best regards

View solution in original post

0 Kudos
1 Reply
642 Views
kenli
NXP Employee
NXP Employee

The sdk.yml of the latest flex-builder github version does have 2 typos, which will be updated on the official website later.

A workarround is the following steps:
1 Replace the git link of xserver
   url: https://github.com/freedesktop/xorg-xserver.git -> url: https://gitlab.freedesktop.org/xorg/xserver.git
2 Replace the git link of xwayland
   url: https://github.com/wayland-project/wayland.git   -> url: https://gitlab.freedesktop.org/wayland/wayland.git

rm the tmp file 

rm -rf $(find ./ -name wayland);rm -rf $(find ./ -name xserver)

then refetch the file

bld -i  repo-fetch

Best regards
0 Kudos