Magellan Linux

Diff of /trunk/installer/ncurses-gui/install.sh

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

revision 1033 by niro, Sun May 30 17:51:27 2010 UTC revision 1034 by niro, Sun May 30 18:29:43 2010 UTC
# Line 2  Line 2 
2    
3  system_setup()  system_setup()
4  {  {
5   include/prepare_auth.sh &> /dev/null   ${INSTALLER_DIR}/include/prepare_auth.sh &> /dev/null
6   echo 25   echo 25
7    
8   include/prepare_networking.sh &> /dev/null   ${INSTALLER_DIR}/include/prepare_networking.sh &> /dev/null
9   echo 50   echo 50
10    
11   include/prepare_fstab.sh &> /dev/null   ${INSTALLER_DIR}/include/prepare_fstab.sh &> /dev/null
12   echo 75   echo 75
13    
14   include/prepare_initrd.sh &> /dev/null   ${INSTALLER_DIR}/include/prepare_initrd.sh &> /dev/null
15   echo 100   echo 100
16  }  }
17    
# Line 35  system_setup() Line 35  system_setup()
35    
36  main_install()  main_install()
37  {  {
38   include/prepare_disks.sh --format | gauge "Installing" "Formating disks..." 10 70   ${INSTALLER_DIR}/include/prepare_disks.sh --format | gauge "Installing" "Formating disks..." 10 70
39   include/prepare_disks.sh --mount   ${INSTALLER_DIR}/include/prepare_disks.sh --mount
40    
41   include/bootstrap-wrapper.sh --ncurses | gauge "Installing" "Installing system..." 10 70   ${INSTALLER_DIR}/include/bootstrap-wrapper.sh --ncurses | gauge "Installing" "Installing system..." 10 70
42    
43   system_setup | gauge "Installing" "Setup system settings..." 10 70   system_setup | gauge "Installing" "Setup system settings..." 10 70
44   include/prepare_bootloader.sh | gauge "Installing" "Installing Bootloader..." 10 70   ${INSTALLER_DIR}/include/prepare_bootloader.sh | gauge "Installing" "Installing Bootloader..." 10 70
45    
46   include/prepare_disks.sh --umount   ${INSTALLER_DIR}/include/prepare_disks.sh --umount
47  }  }
48    
49  # main_install()  # main_install()

Legend:
Removed from v.1033  
changed lines
  Added in v.1034