summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/utils.py')
-rw-r--r--bitbake/lib/bb/utils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index f687ee4127..9cb702dbb7 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -1497,6 +1497,8 @@ def ioprio_set(who, cls, value):
1497 NR_ioprio_set = 251 1497 NR_ioprio_set = 251
1498 elif _unamearch[0] == "i" and _unamearch[2:3] == "86": 1498 elif _unamearch[0] == "i" and _unamearch[2:3] == "86":
1499 NR_ioprio_set = 289 1499 NR_ioprio_set = 289
1500 elif _unamearch == "aarch64":
1501 NR_ioprio_set = 30
1500 1502
1501 if NR_ioprio_set: 1503 if NR_ioprio_set:
1502 ioprio = value | (cls << IOPRIO_CLASS_SHIFT) 1504 ioprio = value | (cls << IOPRIO_CLASS_SHIFT)