blob: 3021e0083f7e5bf7b5220a7e35996726e9f3be2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
printf '\n'
printf '%s\n' 'You can enter the desired voltage IDs in /etc/default/phc-intel.'
printf '%s\n' 'The `phc-intel` command should apply them.'
printf '%s\n' 'Booting with the `nophc` kernel parameter skips setting of VIDs by that script; use it in case of failure.'
printf '\n'
}
post_upgrade() {
post_install "$@"
}
|