diff options
author | Pawel Zalewski <pzalewski@thegoodpenguin.co.uk> | 2022-12-22 10:38:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-01-26 22:22:53 +0000 |
commit | 3061fd5cef9b0ff5e42e41f48078e1098863b3d0 (patch) | |
tree | 25cd7013fa6a7ba86730a767d980fc12019eb2ef /meta/classes-recipe | |
parent | 23737c8ac75191b3a463cfd64cb7266e0cbac273 (diff) | |
download | poky-3061fd5cef9b0ff5e42e41f48078e1098863b3d0.tar.gz |
classes/fs-uuid: Fix command output decoding issue
The default return value from subprocess.check_output is an encoded byte.
The applied fix will decode the value to a string.
(From OE-Core rev: 046769fa952a511865c416b80d10af6287147fb7)
Signed-off-by: Pawel Zalewski <pzalewski@thegoodpenguin.co.uk>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r-- | meta/classes-recipe/fs-uuid.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/fs-uuid.bbclass b/meta/classes-recipe/fs-uuid.bbclass index a9e7eb8c67..e215f06c80 100644 --- a/meta/classes-recipe/fs-uuid.bbclass +++ b/meta/classes-recipe/fs-uuid.bbclass | |||
@@ -10,7 +10,7 @@ | |||
10 | def get_rootfs_uuid(d): | 10 | def get_rootfs_uuid(d): |
11 | import subprocess | 11 | import subprocess |
12 | rootfs = d.getVar('ROOTFS') | 12 | rootfs = d.getVar('ROOTFS') |
13 | output = subprocess.check_output(['tune2fs', '-l', rootfs]) | 13 | output = subprocess.check_output(['tune2fs', '-l', rootfs], text=True) |
14 | for line in output.split('\n'): | 14 | for line in output.split('\n'): |
15 | if line.startswith('Filesystem UUID:'): | 15 | if line.startswith('Filesystem UUID:'): |
16 | uuid = line.split()[-1] | 16 | uuid = line.split()[-1] |