mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 21:17:15 +08:00
25 lines
674 B
Plaintext
Executable File
25 lines
674 B
Plaintext
Executable File
post_install() {
|
|
KERNEL_VERSION='2.6.35-CHAKRA-LTS'
|
|
depmod $KERNEL_VERSION > /dev/null 2>&1
|
|
echo ""
|
|
echo "[+] modprobe acpi_call"
|
|
echo ">>> run /usr/bin/test_off.sh to test/view different acpi_call functions to see if it disables your secondary/hybrid video card"
|
|
}
|
|
|
|
post_upgrade() {
|
|
KERNEL_VERSION='2.6.35-CHAKRA-LTS'
|
|
depmod $KERNEL_VERSION > /dev/null 2>&1
|
|
echo ""
|
|
echo "[+] modprobe acpi_call"
|
|
echo ">>> run /usr/bin/test_off.sh to test/view different acpi_call functions to see if it disables your secondary/hybrid video card"
|
|
}
|
|
|
|
post_remove() {
|
|
KERNEL_VERSION='2.6.35-CHAKRA-LTS'
|
|
depmod $KERNEL_VERSION > /dev/null 2>&1
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|