put -t auto back to -t iso9660 for mounting a cdrom. this is for bug 162962

git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@576 67a159dc-881f-0410-a524-ba9dfbe2cb84
cleanup-cruft
Andrew Gaffney 17 years ago
parent a8c95a49f7
commit 9710e24c34

@ -2,6 +2,9 @@
# Copyright 2006-2007 Gentoo Foundation; Distributed under the GPL v2 # Copyright 2006-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: $ # $Header: $
28 Dec 2007; Andrew Gaffney <agaffney@gentoo.org> generic/initrd.scripts:
put -t auto back to -t iso9660 for mounting a cdrom. this is for bug 162962
27 Dec 2007; Andrew Gaffney <agaffney@gentoo.org> genkernel.8: 27 Dec 2007; Andrew Gaffney <agaffney@gentoo.org> genkernel.8:
fix description of --kernel-config for bug 194752 fix description of --kernel-config for bug 194752

@ -94,10 +94,10 @@ findmediamount() {
then then
good_msg "Attempting to mount media:- ${x}" ${CRYPT_SILENT} good_msg "Attempting to mount media:- ${x}" ${CRYPT_SILENT}
if [ -n "${CDROOT_DEV}" -a \( ${media}="cdrom" \) ]; then if [ "${media}" = "cdrom" ]; then
mount -r -t auto ${x} ${NEW_ROOT}/mnt/cdrom >/dev/null 2>&1 mount -r -t iso9660 ${x} ${mntdir} &>/dev/null
else else
mount -r -t auto ${x} ${mntdir} >/dev/null 2>&1 mount -r -t auto ${x} ${mntdir} &>/dev/null
fi fi
if [ "$?" = '0' ] if [ "$?" = '0' ]
then then

Loading…
Cancel
Save