Menu

#2 iso9660 module is now renamed isofs

open
nobody
None
5
2004-01-26
2004-01-26
Anonymous
No

Around line 321, this fixes some issues:

# XXX -PN
if ! grep iso9660 /proc/filesystems >
/dev/null; then
MOD=$(find /lib/modules/$(uname -r)
-name iso9660.o | wc -l)
if [ "x$MOD" != "x0" ] && [ $MOD -gt 0
] ; then
report_no_autoload iso9660 &&
insmod iso9660
fi
fi
# XXX -PN
if ! grep isofs /proc/filesystems > /dev/null; then
MOD=$(find /lib/modules/$(uname -r)
-name isofs.o | wc -l)
if [ "x$MOD" != "x0" ] && [ $MOD -gt 0
] ; then
report_no_autoload isofs &&
insmod isofs
fi
fi

Discussion


Log in to post a comment.