blob: 49ac015916786bca2c5486d6fe3abb61c96980b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.2 2001/07/29 05:35:48 tron Exp $
case $2 in
PRE-INSTALL)
;;
POST-INSTALL)
/bin/cat << EOF
===========================================================================
Add the following line to /etc/lkm.conf:
${PREFIX}/lkm/xf86.o - - ${PREFIX}/lkm/xf86_mod_install - AFTERMOUNT
and set:
lkm=YES
in /etc/rc.conf. Then, reboot your system.
===========================================================================
EOF
;;
*)
echo "Unexpected argument: $2"
exit 1
;;
esac
exit 0
|