Magellan Linux

Diff of /trunk/magellan-initscripts/etc/rc.d/init.d/loadkeys

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1244 by niro, Thu Nov 5 12:57:14 2009 UTC revision 1245 by niro, Fri Mar 11 17:17:01 2011 UTC
# Line 12  Line 12 
12    
13  source /etc/conf.d/rc  source /etc/conf.d/rc
14  source ${rc_functions}  source ${rc_functions}
15  source /etc/rc.config  source /etc/conf.d/keymap
16    
17  echo -e ${COLOREDSTAR}"Loading keymap... [ ${KEYMAP} ]"  case "$1" in
18  loadkeys -q ${KEYMAP}   start)
19  evaluate_retval   rc_print "Loading keymap... [ ${KEYMAP} ]"
20     loadkeys -q ${KEYMAP}
21     evaluate_retval
22    
23  update_svcstatus $1   update_svcstatus $1
24  splash svc_started "$(basename $0)" 0   splash svc_started "$(basename $0)" 0
25     ;;
26    
27     *)
28     rc_echo "Usage: $0 {start}"
29     exit 1
30     ;;
31    esac

Legend:
Removed from v.1244  
changed lines
  Added in v.1245