LSDK 21.08 repo fetch has issues...

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

LSDK 21.08 repo fetch has issues...

跳至解决方案
961 次查看
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 项奖励
回复
1 解答
916 次查看
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 项奖励
回复
1 回复
917 次查看
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 项奖励
回复