Intel® Edge Software Hub
Get answers from community peers to your questions about building Edge Software Hub solutions for edge compute node.
Announcements
Welcome to the Intel Community! If you like the answer to your question, please mark it as 'Accepted Solution' to help others.

The Edge Software Vision Package for Red Hat Enterprise Linux is now available here.

Learn more about developing on Intel® Hardware and Software here.
400 Discussions

Cannot build Edge Controls for Industrial image

FabianB
Beginner
662 Views

Hi,

I want to build the base-poky image for using ECI with the provided documentation. First of all I had an issue with the setup.sh script. It says that the following dependencies are missing:

sudo apt-get update && sudo apt-get install -y Löschen/Halten installiert/Trigger

But these aren't packages. It is a part of the log message the command dpkg -l throws.

So I installed each dependency I found by hand and commented it out.

Afterwars it seems to work quite well, but in the end on build dependency cannot get downloaded in the on_fetch-phase. Not from the git repo nor from mirrors as tar.gz-archive. It is called "Intel XED mbuild". It seems that the git repository has not the right revision available and the mirrors seems to be broken.

 

I tried the process on two different devices on behind a corporate proxy and on without any proxy at home. Both lead to the same result. So the proxy configuration seems to be not the problem.

 

My devices are:

HP ZBook17 G4 - Ubuntu 20.04.2

HP Z4 - Ubuntu 20.04.2

 

Can someone please help me with this dependency?


Best regards,
Fabian

 

 

 

Labels (1)
0 Kudos
1 Solution
Youngsik_Y_Intel
Employee
634 Views

Hi,

I had the same issue. it seems the upstream repo for that package recently changed its "master" branch name to "main". 

so please modify its recipe file like below and try again.

1. open <eci-release>/targets/resources/meta-benchmarking-rt/recipes-benchmarking/intelxed/xed_11.2.0.bb

2. modify SRC_URI to point to main branch

SRC_URI = "git://github.com/intelxed/mbuild.git;protocol=https;branch=main;name=mbuild;destsuffix=mbuild \

           git://github.com/intelxed/xed.git;protocol=https;branch=main;name=xed \

          "

3. bitbake -c cleanall xed

4. bitbake xed

5. build ECI image again

 

Thanks,

Yoon

 

View solution in original post

0 Kudos
1 Reply
Youngsik_Y_Intel
Employee
635 Views

Hi,

I had the same issue. it seems the upstream repo for that package recently changed its "master" branch name to "main". 

so please modify its recipe file like below and try again.

1. open <eci-release>/targets/resources/meta-benchmarking-rt/recipes-benchmarking/intelxed/xed_11.2.0.bb

2. modify SRC_URI to point to main branch

SRC_URI = "git://github.com/intelxed/mbuild.git;protocol=https;branch=main;name=mbuild;destsuffix=mbuild \

           git://github.com/intelxed/xed.git;protocol=https;branch=main;name=xed \

          "

3. bitbake -c cleanall xed

4. bitbake xed

5. build ECI image again

 

Thanks,

Yoon

 

0 Kudos
Reply