summarylogtreecommitdiffstats
path: root/mach64drm.install
blob: b39964ad28a7d43e3943793449bf144950f3af6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
post_install() {
  echo ""
  echo "Updating modules dependencies..."
  depmod -a `uname -r`
  echo "Done."
  echo ""
  echo "Please read https://wiki.archlinux.org/index.php/Mach64"
  echo "for the configuration of direct rendering inside Xorg."
  echo ""
}

post_upgrade() {
  post_install
}

post_remove() {
  echo ""
  echo "Updating modules dependencies..."
  depmod -a `uname -r`
  echo "Done."
  echo ""
}