Currently it use the uid:gid of user in host os, sometimes tis uid:gid is same with the others in the /etc/passwd of buildroot.
so we need to make the uid:guid unique.
Change-Id: I44f5a9aa1619b7e7cc5c9f8f09af67d20414a832
Signed-off-by: biao716.wang <biao716.wang@samsung.com>
return -1;
}
push @args, "sudo /usr/bin/build";
- push @args, "--uid $zuid:$zgid" if ($zuid != 0 && $zgid != 0);
+ #Use the defalut uid:gid in /usr/bin/build
+ #push @args, "--uid $zuid:$zgid" if ($zuid != 0 && $zgid != 0);
my $nprocessors = 2;
if ($^O eq "linux") {
$nprocessors = int(int(sysconf(SC_NPROCESSORS_ONLN))/int($MAX_THREADS));