mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
rootfs.py: Drop FAKEROOT support in exec function
The _exec_shell_cmd function is used by a couple of other functions that are ultimatelly called from the create_rootfs function. The latter is used in image bbclass' do_rootfs which is running using the fakeroot support in bitbake. This makes the fakeroot support in _exec_shell_cmd redundant and never actually used. (From OE-Core rev: d1439c41049e3cf201939bbc2b1fee58a46137a1) Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
603e1af68f
commit
48e773cbb9
@@ -173,14 +173,8 @@ class Rootfs(object, metaclass=ABCMeta):
|
||||
bb.utils.rename(self.image_rootfs + '-orig', self.image_rootfs)
|
||||
|
||||
def _exec_shell_cmd(self, cmd):
|
||||
fakerootcmd = self.d.getVar('FAKEROOT')
|
||||
if fakerootcmd is not None:
|
||||
exec_cmd = [fakerootcmd, cmd]
|
||||
else:
|
||||
exec_cmd = cmd
|
||||
|
||||
try:
|
||||
subprocess.check_output(exec_cmd, stderr=subprocess.STDOUT)
|
||||
subprocess.check_output(cmd, stderr=subprocess.STDOUT)
|
||||
except subprocess.CalledProcessError as e:
|
||||
return("Command '%s' returned %d:\n%s" % (e.cmd, e.returncode, e.output))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user