blob: cd381ae35d0be0bc9137c08e7dc56d64f47eda4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
cat << EOF
In order to use this package, it is necessary to compile a kernel with non-default `CONFIG_X86_MCELOG_LEGACY=Y`!
EOF
}
post_upgrade() {
post_install
}
|