summarylogtreecommitdiffstats
path: root/nvidia-bl.install
blob: 5c4c3676a5069814e2edb6377f8f1fd5df521cae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
post_install() {
  echo "Updating module dependencies. Please wait ..."
  depmod $(uname -r)
  echo "If your backlight is very dim, please check /etc/modprobe.d/nvidia_bl.conf"
  echo ""
}

post_upgrade() {
  echo "Updating module dependencies. Please wait ..."
  depmod $(uname -r)
  echo "If your backlight is very dim, please check /etc/modprobe.d/nvidia_bl.conf"
  echo ""
}


post_remove() {
  echo "Updating module dependencies. Please wait ..."
  depmod $(uname -r)
  echo ""
}