blob: 12af717a47534c8c0857d20f4f2ba8582fd0e3cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/sbin/sh
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# ident "%Z%%M% %I% %E% SMI"
#
BD=${BASEDIR:-/}
if grep "\<amr\>" $BD/etc/name_to_major > /dev/null 2>&1
then
rem_drv -b ${BD} amr
fi
exit 0
|