Magellan Linux

Diff of /trunk/busybox-initscripts/rc/loadkeys

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

revision 1233 by niro, Wed Dec 15 17:44:36 2010 UTC revision 1234 by niro, Thu Mar 10 20:22:14 2011 UTC
# Line 14  source /etc/conf.d/rc Line 14  source /etc/conf.d/rc
14  source ${rc_functions}  source ${rc_functions}
15  source /etc/conf.d/keymap  source /etc/conf.d/keymap
16    
17  rc_print "Loading keymap... [ ${KEYMAP} ]"  case "$1" in
18  loadkmap < /usr/share/busybox/keymaps/${KEYMAP}.kmap   start)
19  evaluate_retval   rc_print "Loading keymap... [ ${KEYMAP} ]"
20     loadkmap < /usr/share/busybox/keymaps/${KEYMAP}.kmap
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.1233  
changed lines
  Added in v.1234