mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
19 lines
535 B
Plaintext
19 lines
535 B
Plaintext
post_install() {
|
|
KERNEL_VERSION=`pacman -Qf kernel26 | cut -c10-15 | sed 's/kernel26 //g'`-CHAKRA
|
|
#KERNEL_VERSION=$(uname -r)
|
|
depmod $KERNEL_VERSION
|
|
|
|
echo ""
|
|
echo "==> NOTE:"
|
|
echo "==> If the modules do not load at boot, remember add in your rc.conf:"
|
|
echo "==> MODULES=(lib80211 wl !b43 !ssb ...)"
|
|
echo ""
|
|
echo "==> And if you have problems with interfaces swapped, read the wiki:"
|
|
echo "==> http://wiki.archlinux.org/index.php/Broadcom_BCM4312#Interfaces_swapped_every_time"
|
|
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|