Subversion Repositories livecd

Rev

Rev 261 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 261 Rev 262
Line 64... Line 64...
64
 
64
 
65
 
65
 
66
### blacklist kernel modules
66
### blacklist kernel modules
67
if [ -n $BLACKLIST ]; then
67
if [ -n $BLACKLIST ]; then
68
    cp -a ${BLACKLIST_FILE} ${BLACKLIST_FILE}.ori
68
    cp -a ${BLACKLIST_FILE} ${BLACKLIST_FILE}.ori
-
 
69
    echo                                       >> ${BLACKLIST_FILE}
-
 
70
    echo "# Added by boot parameter of LiveCD" >> ${BLACKLIST_FILE}
69
    for module in `echo "$BLACKLIST" | tr ':' ' '`; do
71
    for module in `echo "$BLACKLIST" | tr ':' ' '`; do
70
	echo $module >> ${BLACKLIST_FILE}
72
	echo "blacklist $module"               >> ${BLACKLIST_FILE}
71
    done
73
    done
72
fi
74
fi
73
 
75
 
74
 
76
 
75
### disable udev hotplug - may make the system unusable
77
### disable udev hotplug - may make the system unusable