10 lines
240 B
Text
10 lines
240 B
Text
|
#!/bin/sh
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
# Copyright (C) 2022-present Fewtarius
|
||
|
# Copyright (C) 2022-present Brooksytech
|
||
|
|
||
|
cat <<EOF >/storage/.config/profile.d/040-affinity
|
||
|
SLOW_CORES="taskset -c 0-3"
|
||
|
FAST_CORES="taskset -c 4-5"
|
||
|
EOF
|