Of course I forgot the most important.
In the package initrd.lrp, in the file /var/lib/lrpkg/root.dev.mk few lines 
taken from dachstein-CD must be added, to create /dev/cdrom, they are:
# Locate an IDE or SSCI CD-ROM drive

unset CDDEV

for file in /proc/ide/hd?/media /proc/scsi/scsi; do
        [ -r $file ] || continue
        while read line ; do
                case $line in
                *CD-ROM*|*cdrom*)
                        CDDEV=${file#/proc/*/}
                        CDDEV=${CDDEV%/media}
                        [ "$CDDEV" = "scsi" ] && CDDEV=scd0
                        break 2
                        ;;
                esac
        done <$file
done

[ -n "$CDDEV" ] && ln -sf /dev/$CDDEV /dev/cdrom


_______________________________________________
Leaf-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user

Reply via email to