Hide Forgot
--- /etc/rc.d/rc.sysinit.old Mon May 24 11:05:53 1999 +++ /etc/rc.d/rc.sysinit Mon May 24 11:06:19 1999 @@ -174,9 +174,9 @@ mver=`uname -r` else ktag="`cat /proc/version`" - mtag=grep -l "$ktag" /lib/modules/*/.rhkmvtag 2> /dev/null + mtag=`grep -l "$ktag" /lib/modules/*/.rhkmvtag 2> /dev/null` if [ -n "$mtag" ]; then - mver=echo $mtag | sed -e 's,/lib/modules/,,' -e 's,/.rhkmvtag,,' -e 's,[ ].*$,,' + mver=`echo $mtag | sed -e 's,/lib/modules/,,' -e 's,/.rhkmvtag,,' -e 's,[ ].*$,,'` fi if [ -n "$mver" ]; then ln -sf /lib/modules/$mver /lib/modules/default
This patch makes the /lib/modules/default and /lib/modules/preferred stuff actually work.
already fixed in the latest initscripts...