mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:47:14 +08:00
22 lines
607 B
Plaintext
Executable File
22 lines
607 B
Plaintext
Executable File
post_install() {
|
|
EXTRAMODULES='extramodules-4.13-CHAKRA'
|
|
depmod $(cat /lib/modules/$EXTRAMODULES/version)
|
|
echo ""
|
|
echo "[+] modprobe acpi_call"
|
|
echo ">>> run /usr/bin/turn_off_gpu.sh to test/view different acpi_call functions to see if it disables your secondary/hybrid video card"
|
|
echo ">>> There are a few scripts to use in /usr/share/acpi_call/examples - some for specific laptops => asus1215n.sh, dellL702X.sh, m11xr2.sh"
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
EXTRAMODULES='extramodules-4.13-CHAKRA'
|
|
depmod $(cat /lib/modules/$EXTRAMODULES/version)
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|