3 # This script is run if an optical drive lacks a rule for persistent naming.
5 # It adds symlinks for optical drives based on the device class determined
6 # by cdrom_id and used ID_PATH to identify the device.
8 # (C) 2006 Marco d'Itri <md@Linux.IT>
10 # This program is free software: you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation, either version 2 of the License, or
13 # (at your option) any later version.
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program. If not, see <http://www.gnu.org/licenses/>.
23 # debug, if UDEV_LOG=<debug>
24 if [ -n "$UDEV_LOG" ]; then
25 if [ "$UDEV_LOG" -ge 7 ]; then
30 RULES_FILE
="/etc/udev/rules.d/70-persistent-cd.rules"
32 .
/lib
/udev
/rule_generator.functions
34 find_next_available
() {
35 raw_find_next_available
"$(find_all_rules 'SYMLINK\+=' "$1")"
44 if [ "$PRINT_HEADER" ]; then
46 echo "# This file was automatically generated by the $0"
47 echo "# program, run by the cd-aliases-generator.rules rules file."
49 echo "# You can modify it, as long as you keep each rule on a single"
50 echo "# line, and set the \$GENERATED variable."
54 [ "$comment" ] && echo "# $comment"
55 echo "$match, SYMLINK+=\"$link\", ENV{GENERATED}=\"1\""
57 SYMLINKS
="$SYMLINKS $link"
60 if [ -z "$DEVPATH" ]; then
61 echo "Missing \$DEVPATH." >&2
64 if [ -z "$ID_CDROM" ]; then
65 echo "$DEVPATH is not a CD reader." >&2
77 if [ -z "$ID_PATH" ]; then
78 echo "$DEVPATH not supported by path_id. by-id may work." >&2
81 RULE
="ENV{ID_PATH}==\"$ID_PATH\""
85 if [ "$ID_SERIAL" ]; then
86 RULE
="ENV{ID_SERIAL}==\"$ID_SERIAL\""
87 elif [ "$ID_MODEL" -a "$ID_REVISION" ]; then
88 RULE
="ENV{ID_MODEL}==\"$ID_MODEL\", ENV{ID_REVISION}==\"$ID_REVISION\""
90 echo "$DEVPATH not supported by ata_id. by-path may work." >&2
96 echo "Invalid argument (must be either by-path or by-id)." >&2
101 # Prevent concurrent processes from modifying the file at the same time.
104 # Check if the rules file is writeable.
107 link_num
=$
(find_next_available
'cdrom[0-9]*')
109 match
="SUBSYSTEM==\"block\", ENV{ID_CDROM}==\"?*\", $RULE"
111 comment
="$ID_MODEL ($ID_PATH)"
113 write_rule
"$match" "cdrom$link_num" "$comment"
114 [ "$ID_CDROM_CD_R" -o "$ID_CDROM_CD_RW" ] && \
115 write_rule
"$match" "cdrw$link_num"
116 [ "$ID_CDROM_DVD" ] && \
117 write_rule
"$match" "dvd$link_num"
118 [ "$ID_CDROM_DVD_R" -o "$ID_CDROM_DVD_RW" -o "$ID_CDROM_DVD_RAM" ] && \
119 write_rule
"$match" "dvdrw$link_num"