How to build a tizen source?

I downloaded all tizen OS sources from my website. It consists of 1040 projects. Now I want to build all the projects. They mentioned on their website that we must use gbs (git build system) to create sources. As they said, I installed the configuration file and tried to build. But I do not know how to build, and I receive such messages.

"fatal: ref HEAD is not a symbolic ref"

and I was getting errors when I tried to create all x86 packages. I have not modified the tizen code, and yet I am getting these errors.

+4
source share
2 answers

You need to download the whole set of packages using a repo, and then build the correct branch (i.e.: tizen) using gbs along the repo profile ...

Or consider creating with yocto if profile is supported

0
source

This is because the name of your working branch (nobranch), please check the correctness / existing branch in your repo.

Check your thread using

 git branch 

He will show you without a branch

Check the correct branch you want to create using

 git checkout branchname 

And you cannot build x86 pkgs with gbs, but you can build i586 or armv7l pkgs with gbs.

0
source

All Articles