Magellan Linux

Diff of /trunk/initscripts/busybox/rc/rc

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

revision 1357 by niro, Sat Jun 4 21:05:40 2011 UTC revision 1774 by niro, Sat Mar 3 16:00:17 2012 UTC
# Line 8  source ${rc_functions} Line 8  source ${rc_functions}
8  [ -f /etc/conf.d/kernel ] && source /etc/conf.d/kernel  [ -f /etc/conf.d/kernel ] && source /etc/conf.d/kernel
9    
10  # get mage version  # get mage version
11  MAGEVER="$(< /etc/mageversion)"  if [[ -f /etc/os-release ]]
12    then
13     MAGEVER="$(read_os_release version_id)"
14    elif [ -f /etc/mageversion ]
15    then
16     MAGEVER="$(< /etc/mageversion)"
17    else
18     MAGEVER="unkown"
19    fi
20    
21  # source kernel config if exists  # source kernel config if exists
22  [ -f /etc/conf.d/kernel ] && source /etc/conf.d/kernel  [ -f /etc/conf.d/kernel ] && source /etc/conf.d/kernel
# Line 31  if [[ $runlevel = sysinit ]] Line 39  if [[ $runlevel = sysinit ]]
39  then  then
40   rc_echo   rc_echo
41   rc_echo -e "${COLGREEN}Starting ${COLBLUE}MAGELLAN (v${MAGEVER}) ${COLGREEN}Linux${COLDEFAULT}"   rc_echo -e "${COLGREEN}Starting ${COLBLUE}MAGELLAN (v${MAGEVER}) ${COLGREEN}Linux${COLDEFAULT}"
42   rc_echo "Copyright 2001-2011 Niels Rogalla; http://magellan-linux.net"   rc_echo "Copyright 2001-2012 Niels Rogalla; http://magellan-linux.net"
43   rc_echo   rc_echo
44    
45   # mount proc filesystem, needed for bootsplash;   # mount proc filesystem, needed for bootsplash;

Legend:
Removed from v.1357  
changed lines
  Added in v.1774