14 lines
244 B
SYSTEMD
14 lines
244 B
SYSTEMD
|
[Unit]
|
||
|
Description=Enable AMD boost
|
||
|
Before=basic.target
|
||
|
After=local-fs.target sysinit.target
|
||
|
DefaultDependencies=no
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
ExecStart=/bin/sh -c "echo 1 > /sys/devices/system/cpu/cpufreq/boost"
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=basic.target
|
||
|
|