Magellan Linux

Diff of /trunk/installer-simple/bin/installer.sh.in

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

revision 2411 by niro, Tue Jan 7 13:31:50 2014 UTC revision 2412 by niro, Tue Jan 7 13:33:46 2014 UTC
# Line 124  dialog_setup_hdd_info_auto() Line 124  dialog_setup_hdd_info_auto()
124    
125  dialog_setup_system_menu()  dialog_setup_system_menu()
126  {  {
127   local i   local mode
128     local retval
129    
130   i=$(dialog \   mode=$(dialog \
131   --backtitle "${TITLE}" \   --backtitle "${TITLE}" \
132   --title "[ Festplatten Partitionierung ]" \   --title "[ Festplatten Partitionierung ]" \
133   --cancel-label "Abbrechen" \   --cancel-label "Abbrechen" \
# Line 138  dialog_setup_system_menu() Line 139  dialog_setup_system_menu()
139   "" "" \   "" "" \
140   "" "\Z1Experten Modi:\Zn" \   "" "\Z1Experten Modi:\Zn" \
141   "2" "Normale IDE-Disk (Manuell)" \   "2" "Normale IDE-Disk (Manuell)" \
142   RES=$?   retval=$?
143   [[ ${RES} -eq 1 ]] && return 1   [[ ${retval} -eq 1 ]] && return 1
144   if [[ ${RES} -eq 0 ]]   if [[ ${retval} -eq 0 ]]
145   then   then
146   case "${i}" in   case "${i}" in
147   "1") run_install_auto ;;   "1") run_install_auto ;;

Legend:
Removed from v.2411  
changed lines
  Added in v.2412