Magellan Linux

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

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

revision 2323 by niro, Fri Jan 3 13:19:11 2014 UTC revision 2482 by niro, Wed Jan 8 10:32:55 2014 UTC
# Line 7  Line 7 
7  # Niels Rogalla <niro@magellan-linux.de>  # Niels Rogalla <niro@magellan-linux.de>
8  #  #
9    
10  #images: (get ${CDIMAGENAME})  # setup locales
11  source /mnt/cdrom/system/images.conf  TEXTDOMAIN=installer
12    LC_MESSAGES=C
13    
14  #Includes  # include dir
15  source /usr/lib/installer/functions/findhdd.sh > /dev/null  INSTALLER_LIBDIR="%LIBDIR%"
 ### bugfix ###############################  
 cdromdev="$(echo ${cdromdev} | sed 's/ //')"  
 ########################################  
16    
17  ### System/Config Version  # TOTALLINES=linecount of ${CDIMAGENAME}-tarball -1 !
18  VERSION="%VERSIONTAG%"  # -> now in images.conf
 TITLE="Installer - ${VERSION}"  
   
 CDPATH="/mnt/cdrom"  
 INSTALLPATH="/mnt/magellan"  
   
 ### WICHTIG: anzahl lines in der autosta_lx.tar.gz -1  
19  CURRENTLINE=0  CURRENTLINE=0
 #TOTALLINES=11072 # -> now in images.conf  
   
 # standard kernel opts  
 KERNELOPTS="quiet video=1024x768"  
   
 # grub options  
 GRUBLEGACYOPTS=""  
 GRUB2OPTS=""  
   
 # fdisk options  
 FDISKPARTIONBELOW256MB=0  
   
 # default specialdevices  
 SPECIALDEVICE=""  
 FORMFACTOR="desktop"  
   
 # target filesystem  
 FORMAT_FILESYSTEM="ext4"  
   
 #################################################  
 #  DIALOG BOXEN #  
 #################################################  
20    
21  die()  die()
22  {  {
23   ERROR=$1   echo "Error: $@"
  RETVAL=$?  
  dialog_install_failure  
24   exit 1   exit 1
25  }  }
26    
27  dialog_warning()  # load common includes
28  {  for inc in %SYSCONFDIR%/installer.conf \
29   dialog \   ${INSTALLER_LIBDIR}/functions/common.sh \
30   --backtitle "${TITLE}" \   ${INSTALLER_LIBDIR}/functions/common-dialogs.sh \
31   --colors \   ${INSTALLER_LIBDIR}/functions/hwdetection.sh \
32   --defaultno \   ${INSTALLER_LIBDIR}/functions/bootloader.sh \
33   --yesno "\Z1 !!! Achtung !!! \Zn\n\n\   ${INSTALLER_LIBDIR}/functions/initrd-tools.sh \
34   Diese Festplatte wird unwiederruflich geloescht werden.\n\n\   ${INSTALLER_LIBDIR}/functions/installer-dialogs.sh
35   Soll ich wirklich fortfahren ?" 10 70  do
36   RES=$?   if [ -e ${inc} ]
  if [[ ${RES} -eq 1 ]]  
  then  
  clear  
  echo "Der Vorgang wurde abgebrochen."  
  exit 1  
  fi  
 }  
   
 dialog_setup_hdd_info()  
 {  
  local SHDD="$(echo ${HDD} | sed 's/\/dev\///')"  
   
  dialog \  
  --colors \  
  --title "[ Festplatten Partitionierung ]" \  
  --backtitle "${TITLE}" \  
  --ok-label "Weiter" \  
  --msgbox "\nBitte legen Sie 3 Partitionen an.\n\n\  
  [ \Z3${SHDD}1\Zn ] Typ: \Z3Linux\Zn mit ca. 50MB\n\  
  [ \Z3${SHDD}2\Zn ] Typ: \Z3Linux Swap\Zn mit ca. 256MB\n\  
  [ \Z3${SHDD}3\Zn ] Typ: \Z3Linux \Zn mit dem Rest (min. 256MB)\n\n\  
  Bitte ${SHDD}1 als \Z3bootable\Zn markieren." 12 81  
 }  
   
 dialog_setup_hdd_info_flash()  
 {  
  local SHDD="$(echo $HDD | sed 's/\/dev\///')"  
   
  dialog \  
  --colors \  
  --title "[ Festplatten Partitionierung ]" \  
  --backtitle "${TITLE}" \  
  --ok-label "Weiter" \  
  --msgbox "\nBitte legen Sie 1 Partition an.\n\n\  
  [ \Z3${SHDD}1\Zn ] Typ: \Z3Linux\Zn mit dem gesamten Speicher\n\  
  Bitte ${SHDD}1 als \Z3bootable\Zn markieren." 12 81  
 }  
   
 dialog_setup_hdd_info_auto()  
 {  
  local SHDD="$(echo $HDD | sed 's/\/dev\///')"  
   
  dialog \  
  --colors \  
  --title "[ Festplatten Partitionierung ]" \  
  --backtitle "${TITLE}" \  
  --ok-label "Weiter" \  
  --msgbox "\nAchtung!\n\  
  Alle Daten werden von der Disk [ \Z3${HDD}\Zn ] gelöscht!" 12 81  
 }  
   
 dialog_setup_system_menu()  
 {  
  local i  
   
  i=$(dialog \  
  --backtitle "${TITLE}" \  
  --title "[ Festplatten Partitionierung ]" \  
  --cancel-label "Abbrechen" \  
  --ok-label "Weiter" \  
  --stdout \  
  --colors \  
  --menu "\nWaehlen Sie die Installations-Methode" 14 70 5 \  
  "1" "Automatisches Setup (Empfohlen)" \  
  "" "" \  
  "" "\Z1Experten Modi:\Zn" \  
  "2" "Normale IDE-Disk (Manuell)" \  
  "3" "Flash-Speicher (Manuell)")  
  RES=$?  
  [[ ${RES} -eq 1 ]] && return 1  
  if [[ ${RES} -eq 0 ]]  
  then  
  case "${i}" in  
  "1") run_install_auto ;;  
          "2") run_install_normal ;;  
  "3") run_install_flash ;;  
  "") dialog_setup_system_menu;;  
  esac  
  fi  
 }  
   
 dialog_hardware_detection()  
 {  
  local i  
  local hwtmp  
   
  if [ -x $(which mktemp &> /dev/null) ]  
  then  
  hwtmp="$(mktemp)"  
  else  
  hwtmp="/tmp/hwtmp.sh"  
  fi  
   
  [[ ! -z ${installdevs} ]] && installdevs=""  
   
  echo "dialog \\"  > ${hwtmp}  
  echo "--backtitle \"${TITLE}\" \\" >> ${hwtmp}  
  echo "--ok-label \"Weiter\" \\" >> ${hwtmp}  
  echo "--stdout \\" >> ${hwtmp}  
  echo "--colors \\" >> ${hwtmp}  
  echo "--msgbox \"Gefundene Hardware:\n\n \\" >> ${hwtmp}  
  echo " Festplatten:\n \\" >> ${hwtmp}  
   
  if [[ ! -z ${scsidisks} ]]  
  then  
  for i in ${scsidisks}  
  do  
  if [[ ${i} != ${cdromdev} ]]  
  then  
  echo " \\Z7SCSI: \\Z3${i}\\Zn\n \\" >> ${hwtmp}  
  installdevs="${installdevs} ${i}"  
  fi  
  done  
  fi  
   
  if [[ ! -z ${idedisks} ]]  
  then  
  for i in ${idedisks}  
  do  
  if [[ ${i} != ${cdromdev} ]]  
  then  
  echo " \\Z7IDE:  \\Z3${i}\\Zn\n \\" >> ${hwtmp}  
  installdevs="${installdevs} ${i}"  
  fi  
  done  
  fi  
   
  if [[ ! -z ${cdromdev} ]]  
  then  
  echo " \n \\" >> ${hwtmp}  
  echo " \\Z7andere Laufwerke:\n \\" >> ${hwtmp}  
  echo " CDROM: \\Z3${cdromdev}\\Zn\n \\" >> ${hwtmp}  
  fi  
   
  # other devices  
  run_hardware_detection  
  case "${SPECIALDEVICE}" in  
  zotac*) echo " \n\n\n \\Z2Zotac Device erkannt.\\Zn \\" >> ${hwtmp} ;;  
  rangee) echo " \n\n\n \\Z2Rangee Device erkannt.\\Zn \\" >> ${hwtmp} ;;  
  maxdata) echo " \n\n\n \\Z2Maxdata Device erkannt.\\Zn \\" >> ${hwtmp} ;;  
  *) echo " \n\n\n \\ZnStandard Device erkannt.\\Zn \\" >> ${hwtmp} ;;  
  esac  
  if [[ ${FORMFACTOR} = laptop ]]  
  then  
  echo " \n \\ZnFormfactor Laptop, Powersave Modus 'ondemand' wird aktiviert.\\Zn \\" >> ${hwtmp}  
  fi  
   
  echo " \" 14 70" >> ${hwtmp}  
  chmod a+x ${hwtmp}  
  ${hwtmp}  
   
  # remove tmp file  
  if [[ -f ${hwtmp} ]]  
  then  
  rm ${hwtmp}  
  fi  
 }  
   
 dialog_setup_hdd_partitions_manuell()  
 {  
  local i  
   
  if [[ -z ${installdevs} ]]  
37   then   then
38   dialog \   source "${inc}"
  --backtitle "${TITLE}" \  
  --ok-label "Beenden" \  
  --msgbox "Kein geeignetes Laufwerk gefunden.\nDie Installation ist fehlgeschlagen." 6 70  
  exit 1  
39   else   else
40     die "'${inc}' not found"
  echo "dialog \\" > /tmp/hddtmp.sh  
  echo "--backtitle \"${TITLE}\" \\" >> /tmp/hddtmp.sh  
  echo "--ok-label \"Weiter\" \\" >> /tmp/hddtmp.sh  
  echo "--cancel-label \"Beenden\" \\" >> /tmp/hddtmp.sh  
  echo "--stdout \\" >> /tmp/hddtmp.sh  
  echo "--menu \"Installations Laufwerk auswaehlen:\" 10 70 3 \\" >> /tmp/hddtmp.sh  
   
  for i in ${installdevs}  
  do  
  echo "\"${i}\" \"\" \\" >> /tmp/hddtmp.sh  
  done  
  echo -e "\n" >> /tmp/hddtmp.sh  
   
  chmod a+x /tmp/hddtmp.sh  
  HDD="$(/tmp/hddtmp.sh)"  
  RES=$?  
  [[ ${RES} -eq 1 ]] && return 1  
  if [[ ${RES} -eq 0 ]]  
  then  
  dialog_setup_hdd_info  
  setup_hdd_partitions_manuell  
  fi  
41   fi   fi
42  }  done
   
 dialog_setup_hdd_partitions_manuell_flash()  
 {  
  local i  
43    
44   if [[ -z ${installdevs} ]]  # TOTALLINES=linecount of ${CDIMAGENAME}-tarball -1 !
45   then  # -> now in images.conf
46   dialog \  CDIMAGENAME=""
47   --backtitle "${TITLE}" \  TOTALLINES=""
48   --ok-label "Beenden" \  CURRENTLINE=0
49   --msgbox "Kein geeignetes Laufwerk gefunden.\nDie Installation ist fehlgeschlagen." 6 70  if [ -e /mnt/cdrom/system/images.conf ]
50   exit 1  then
51   else   source /mnt/cdrom/system/images.conf
52     # check if all required variables are set
53   echo "dialog \\" > /tmp/hddtmp.sh   [[ -z ${CDIMAGENAME} ]] && die "CDIMAGENAME is empty in /mnt/cdrom/system/images.conf"
54   echo "--backtitle \"${TITLE}\" \\" >> /tmp/hddtmp.sh   [[ -z ${TOTALLINES} ]] && die "TOTALLINES is empty in /mnt/cdrom/system/images.conf"
55   echo "--ok-label \"Weiter\" \\" >> /tmp/hddtmp.sh  else
56   echo "--cancel-label \"Beenden\" \\" >> /tmp/hddtmp.sh   die "/mnt/cdrom/system/images.conf not found"
57   echo "--stdout \\" >> /tmp/hddtmp.sh  fi
  echo "--menu \"Installations Laufwerk auswaehlen:\" 10 70 3 \\" >> /tmp/hddtmp.sh  
   
  for i in ${installdevs}  
  do  
  echo "\"${i}\" \"\" \\" >> /tmp/hddtmp.sh  
  done  
  echo -e "\n" >> /tmp/hddtmp.sh  
   
  chmod a+x /tmp/hddtmp.sh  
  HDD="$(/tmp/hddtmp.sh)"  
  RES=$?  
  [[ ${RES} -eq 1 ]] && return 1  
  if [[ ${RES} -eq 0 ]]  
  then  
  dialog_setup_hdd_info_flash  
  setup_hdd_partitions_manuell_flash  
  fi  
  fi  
 }  
   
 dialog_setup_hdd_partitions_auto()  
 {  
  local i  
   
  if [[ -z ${installdevs} ]]  
  then  
  dialog \  
  --backtitle "${TITLE}" \  
  --ok-label "Beenden" \  
  --msgbox "Kein geeignetes Laufwerk gefunden.\nDie Installation ist fehlgeschlagen." 6 70  
  exit 1  
  else  
   
  echo "dialog \\" > /tmp/hddtmp.sh  
  echo "--backtitle \"${TITLE}\" \\" >> /tmp/hddtmp.sh  
  echo "--ok-label \"Weiter\" \\" >> /tmp/hddtmp.sh  
  echo "--cancel-label \"Beenden\" \\" >> /tmp/hddtmp.sh  
  echo "--stdout \\" >> /tmp/hddtmp.sh  
  echo "--menu \"Installations Laufwerk auswaehlen:\" 10 70 3 \\" >> /tmp/hddtmp.sh  
58    
59   for i in ${installdevs}  ### System/Config Version
60   do  VERSION="%VERSIONTAG%"
61   echo "\"${i}\" \"\" \\" >> /tmp/hddtmp.sh  TITLE="${DEFAULT_TITLE} - ${VERSION}"
  done  
  echo -e "\n" >> /tmp/hddtmp.sh  
62    
63   chmod a+x /tmp/hddtmp.sh  # some sane defaults
64   HDD="$(/tmp/hddtmp.sh)"  CDROOT="${DEFAULT_CDROOT}"
65   RES=$?  INSTALLROOT="${DEFAULT_INSTALLROOT}"
66   [[ ${RES} -eq 1 ]] && return 1  KERNELPKG="${DEFAULT_KERNELPKG}"
67   if [[ ${RES} -eq 0 ]]  KERNELOPTS="${DEFAULT_KERNELOPTS}"
68   then  GRUBLEGACYOPTS=""
69   dialog_setup_hdd_info_auto  GRUB2OPTS=""
70   dialog_setup_hdd_create_partitions  FDISKPARTIONBELOW256MB=0
71   setup_hdd_partitions_auto  SPECIALDEVICE=""
72   fi  FORMFACTOR="${DEFAULT_FORMFACTOR}"
73   fi  FORMAT_FILESYSTEM="${DEFAULT_FILESYSTEM}"
 }  
74    
 dialog_setup_hdd_create_partitions()  
 {  
  dialog \  
  --backtitle "${TITLE}" \  
  --infobox "Erstelle Disk Partitionen ..." 3 70  
 }  
75    
76  dialog_setup_hdd_format()  ### helper scripts ###
 {  
  dialog \  
  --backtitle "${TITLE}" \  
  --infobox "Erstelle Datei-Systeme ..." 3 70  
 }  
77    
78  dialog_install_settings()  trap_exit()
79  {  {
80   dialog \   is_mounted --location "${INSTALLROOT}/dev" && umount ${INSTALLROOT}/dev
81   --backtitle "${TITLE}" \   is_mounted --location "${INSTALLROOT}/proc" && umount ${INSTALLROOT}/proc
82   --infobox "Speichere System-Einstellungen ..." 3 70   is_mounted --location "${INSTALLROOT}/sys" && umount ${INSTALLROOT}/sys
83  }   is_mounted --location "${INSTALLROOT}/boot" && umount ${INSTALLROOT}/boot
84     is_mounted --location "${INSTALLROOT}" && umount ${INSTALLROOT}
85    
86  dialog_install_system_image()   echo $"Installation aborted."
87  {   exit 1
  dialog \  
  --backtitle "${TITLE}" \  
  --gauge "Kopiere System-Image ..." 6 80  
88  }  }
89    
90  dialog_install_meter()  install_meter()
91  {  {
92   while [[ ${CURRENTLINE} != ${TOTALLINES} ]]   while [[ ${CURRENTLINE} != ${TOTALLINES} ]]
93   do   do
# Line 381  dialog_install_meter() Line 101  dialog_install_meter()
101  }  }
102    
103    
 dialog_install_bootsector()  
 {  
  dialog \  
  --backtitle "${TITLE}" \  
  --infobox "Schreibe den Bootsektor ..." 3 70  
 }  
   
 dialog_install_successful()  
 {  
  dialog \  
  --backtitle "${TITLE}" \  
  --colors \  
  --msgbox "Die Installation war \Z2erfolgreich\Zn." 5 81  
 }  
   
 dialog_install_failure()  
 {  
  dialog \  
  --backtitle "${TITLE}" \  
  --colors \  
  --msgbox "Die Installation ist \Z1Fehlgeschlagen\Zn.\n\n\  
  Fehler bei ${ERROR}, RetVal: ${RETVAL} \  
  " 10 81  
 }  
   
 dialog_main()  
 {  
  METHOD=0  
   
  while [[ ${METHOD} -le 2 ]]  
  do  
  METHOD=$(dialog \  
  --backtitle "${TITLE}" \  
  --no-cancel \  
  --ok-label "Weiter" \  
  --stdout \  
  --menu "Konfiguration" 14 70 5 \  
  "1" "AutoSta_LX installieren" \  
  "2" "Uebersicht gefundener Laufwerke" \  
  "3" "Beenden und neustarten" \  
  "4" "Beenden und eine Shell starten")  
  RES=$?  
  [[ ${RES} -eq 1 ]] && exit 1  
  if [[ ${RES} -eq 0 ]]  
  then  
  case ${METHOD} in  
          "1") dialog_setup_system_menu ;;  
  "2") dialog_hardware_detection ;;  
  "3") install_do_reboot ;;  
  "4") /bin/bash --login -i ;;  
  esac  
  fi  
  done  
 }  
   
 #################################################  
 # Install Komandos #  
 #################################################  
104  run_hardware_detection()  run_hardware_detection()
105  {  {
106   local hwinfo   local hwinfo
107    
108   hwinfo="$(hwinfo --bios --storage --pci --gfxcard --sys)"   hwinfo="$(hwinfo --bios --storage --pci --gfxcard --sys)"
109    
110   # check for special devices/clients:   ## check for special devices/clients:
111   # if zotac a zotac and the disk is a removeable device, then add rootdelay to kernelcmd   ## if zotac a zotac and the disk is a removeable device, then add rootdelay to kernelcmd
112   local removable=0   #local removable=0
113   if [[ ! -z $(echo "${hwinfo}" | grep -i zotac) ]]   #if [[ ! -z $(echo "${hwinfo}" | grep -i zotac) ]]
114   then   #then
115   for i in /sys/block/[hs]d*/removable   #for i in /sys/block/[hs]d*/removable
116   do   #do
117   if [[ $(< ${i}) = 1 ]]   #if [[ $(< ${i}) = 1 ]]
118   then   #then
119   removable=1   #removable=1
120   fi   #fi
121   done   #done
122     ## smartcard = udevadm info -n /dev/sda -a | grep -i 'configuration.*card'
123   # only add this for grub legacy, grub2 detect these settings on its own  
124   export GRUBLEGACYOPTS="rootdelay=8"   ## only add this for grub legacy, grub2 detect these settings on its own
125   # there are to zotac types in the wild, nvidia based gfx and intel   #export GRUBLEGACYOPTS="rootdelay=8"
126   if [[ ! -z $(echo "${hwinfo}" | grep -i nouveau) ]]   ## there are to zotac types in the wild, nvidia based gfx and intel
127   then   #if [[ ! -z $(echo "${hwinfo}" | grep -i nouveau) ]]
128   export SPECIALDEVICE="zotac_nvidia"   #then
129   else   #export SPECIALDEVICE="zotac_nvidia"
130   export SPECIALDEVICE="zotac_intel"   #else
131   fi   #export SPECIALDEVICE="zotac_intel"
132   fi   #fi
133     #fi
134    
135   # check for special devices/clients:   # check for special devices/clients:
136   # if a rangee and disk ist smaller then 256mb move partion one block further ahead   # if a rangee and disk ist smaller then 256mb move partion one block further ahead
# Line 496  run_hardware_detection() Line 159  run_hardware_detection()
159   fi   fi
160  }  }
161    
162  hdd_size_below_256mb()  run_hardware_detection_disks()
163  {  {
164   local hdd="$1"   local bootdev
  local size  
  local retval  
  [[ -z ${hdd} ]] && die "Error: get_hdd_size() no \$hdd given!"  
165    
166   size=$(fdisk -l ${hdd} | grep "Disk.*${hdd}" | sed 's:.*,\ \(.*\)\ byte.*:\1:')   # all disks but exclude ramdisks
167   if [[ ${size} -le 257000000 ]]   export ALL_DISKS=$(get_hwinfo disk | sed '/\/dev\/ram[0-9].*/d')
168     # remove the boot device from ALL_DISKS if it was an usbstick
169     if [[ $(grep '[[:space:]]/mnt/cdrom[[:space:]]' /proc/mounts | cut -d' ' -f3) != iso9660 ]]
170   then   then
171   retval="0"   bootdev="$(grep '[[:space:]]/mnt/cdrom[[:space:]]' /proc/mounts | cut -d' ' -f1 | sed 's:[0-9]::g')"
172   else   export ALL_DISKS=$(echo "${ALL_DISKS}" | grep -v "${bootdev}")
  retval="1"  
173   fi   fi
174     export ALL_CDROMS="$(get_hwinfo cdrom)"
  return "${retval}"  
175  }  }
176    
177  setup_hdd_partitions_auto()  setup_hdd_partitions_auto()
178  {  {
179   ROOTHDD="${HDD}1"   ROOTHDD="${HDD}1"
180    
181     # sanity check - should not happen
182     if is_mounted --device "${ROOTHDD}"
183     then
184     echo "partition: device ${ROOTHDD} is already mounted, umount it" >&2
185     umount "${ROOTHDD}"
186     fi
187    
188   # run this only if FDISKPARTITIONBELOW256MB is not already 1   # run this only if FDISKPARTITIONBELOW256MB is not already 1
189   if [[ ${FDISKPARTIONBELOW256MB} != 1 ]]   if [[ ${FDISKPARTIONBELOW256MB} != 1 ]]
190   then   then
# Line 530  setup_hdd_partitions_auto() Line 197  setup_hdd_partitions_auto()
197   fi   fi
198    
199   ## delete disk   ## delete disk
200   dd if=/dev/zero of=${HDD} count=1 &> /dev/null || die   dd if=/dev/zero of=${HDD} count=1 &> /dev/null || dialog_die
201    
202   if [[ ${FDISKPARTIONBELOW256MB} = 1 ]]   if [[ ${FDISKPARTIONBELOW256MB} = 1 ]]
203   then   then
# Line 576  EOF Line 243  EOF
243   fi   fi
244  }  }
245    
246  setup_hdd_partitions_manuell()  setup_hdd_partitions_manual()
 {  
  BOOTHDD="${HDD}1"  
  SWAPHDD="${HDD}2"  
  ROOTHDD="${HDD}3"  
   
  ## hdds partitionieren manuell  
  cfdisk ${HDD} || die  
 }  
   
 setup_hdd_partitions_manuell_flash()  
247  {  {
248   ROOTHDD="${HDD}1"   ROOTHDD="${HDD}1"
249     SWAPHDD=""
250   ## hdds partitionieren manuell   BOOTHDD=""
251   cfdisk ${HDD} || die   cfdisk ${HDD} || dialog_die
252  }  }
253    
254  setup_hdd_format()  setup_hdd_format()
255  {  {
256   mkswap ${SWAPHDD} || die   # sanity check - should not happen
257   mke2fs -j -q ${BOOTHDD} || die   if is_mounted --device "${ROOTHDD}"
258   mke2fs -j -q ${ROOTHDD} || die   then
259  }   echo "format: device ${ROOTHDD} is already mounted, umount it" >&2
260     umount "${ROOTHDD}"
261     fi
262    
263  setup_hdd_format_flash()   mkfs."${FORMAT_FILESYSTEM}" -q "${ROOTHDD}" || dialog_die
 {  
  mke2fs -j -q ${ROOTHDD} || die  
264  }  }
265    
266  install_mount_rootfs()  install_mount_rootfs()
267  {  {
268   swapon ${SWAPHDD} || die   is_mounted --location "${INSTALLROOT}" || mount "${ROOTHDD}" "${INSTALLROOT}"
269   mount ${ROOTHDD} ${INSTALLPATH} || die   install -d ${INSTALLROOT}/boot || dialog_die
  install -d ${INSTALLPATH}/boot || die  
  mount ${BOOTHDD} ${INSTALLPATH}/boot || die  
  cd ${INSTALLPATH} || die  
 }  
   
 install_mount_rootfs_flash()  
 {  
  mount ${ROOTHDD} ${INSTALLPATH} || die  
  install -d ${INSTALLPATH}/boot || die  
  cd ${INSTALLPATH} || die  
270  }  }
271    
272  install_system_image()  install_system_image()
273  {  {
274   tar xvjpf ${CDPATH}/system/${CDIMAGENAME} -C ${INSTALLPATH}   pushd ${INSTALLROOT} > /dev/null
275     tar xvjpf ${CDROOT}/system/${CDIMAGENAME} -C ${INSTALLROOT}
276     popd > /dev/null
277  }  }
278    
279  install_bootsector_chroot()  install_system_settings()
280  {  {
281   local my_roothdd   local CONFIG
  local grubconf=${INSTALLPATH}/boot/grub/grub.conf  
  local grub2conf=/boot/grub/grub.cfg  
   
  # check for grub2  
  if [[ -f ${INSTALLPATH}/sbin/grub-mkconfig ]]  
  then  
  # needed by grub-mkconfig on the first run  
  if [[ ! -f ${INSTALLPATH}/boot/grub/video.lst ]]  
  then  
  install -m0644 ${INSTALLPATH}/lib/grub/*/video.lst ${INSTALLPATH}/boot/grub/video.lst || die  
  fi  
282    
283   # set kernelopts   # write fstab
284   if [[ -f ${INSTALLPATH}/etc/conf.d/grub ]]   CONFIG="${INSTALLROOT}/etc/fstab"
285   then   clearconfig
286   sed -i "s:^\(export GRUB_CMDLINE_LINUX_DEFAULT=\).*:\1\"${KERNELOPTS}\":" ${INSTALLPATH}/etc/conf.d/grub || die   addconfig -e "UUID=$(get_uuid ${ROOTHDD})\t/\t${FORMAT_FILESYSTEM}\tnoatime,noauto\t1 1"
287   else   addconfig -e "proc\t/proc\tproc\tdefaults\t0 0"
288   echo "export GRUB_CMDLINE_LINUX_DEFAULT=\"${KERNELOPTS}\"" >  ${INSTALLPATH}/etc/conf.d/grub || die   addconfig -e "shm\t/dev/shm\ttmpfs\tdefaults\t0 0"
  fi  
  echo 'grub-mkdevicemap' > ${INSTALLPATH}/root/.installrc || die  
  echo "LC_ALL=C grub-mkconfig -o ${grub2conf}  &> /dev/null" >> ${INSTALLPATH}/root/.installrc || die  
  echo "grub-install --no-floppy ${HDD} &> /dev/null" >> ${INSTALLPATH}/root/.installrc || die  
  echo "exit 0" >> ${INSTALLPATH}/root/.installrc || die  
289    
290   # grub-legacy   # install network config skeleton
291   else   CONFIG="${INSTALLROOT}/etc/conf.d/net.eth0"
292   ### grubconf schreiben   clearconfig
293   source ${INSTALLPATH}/boot/kernelversion   addconfig 'ONBOOT="yes"'
294     addconfig 'NETWORKING="dhcp"'
295    
296   #for alx only   # intel framebuffer quirk
297   if [ -e ${INSTALLPATH}/etc/alx_version ]   if [ -e ${INSTALLROOT}/etc/splash/splash.conf ]
298     then
299     if [ -e /proc/fb ]
300   then   then
301   OLD_ALXVER="${ALXVER}"   if [[ ! -z $(grep 'inteldrmfb' /proc/fb) ]]
302   source ${INSTALLPATH}/etc/alx_version   then
303   KRNVER="ALX-${ALXVER}"   fbdev=$(grep 'inteldrmfb' /proc/fb | sed 's:\([0-9]\).*:\1:')
304   ALXVER="${OLD_ALXVER}"   if [[ ${fbdev} != 0 ]]
305     then
306     sed -i "s:^\(SPLASH_DEV=\).*:\1\"/dev/fb${fbdev}\":" ${INSTALLROOT}/etc/splash/splash.conf || dialog_die
307     fi
308     fi
309   fi   fi
310     fi
311    }
312    
313   [[ -z ${KRNVER} ]] && KRNVER="AutoSta_LX"  install_umount_rootfs()
314   [[ -z ${KRNINITRD} ]] && KRNINITRD="initrd"  {
315   [[ -z ${KRNIMG} ]] && KRNIMG="vmlinuz"   is_mounted --location ${INSTALLROOT}/boot && umount ${INSTALLROOT}/boot
316     is_mounted --location ${INSTALLROOT} && umount ${INSTALLROOT}
317   # uuid support  }
  if is_uuid_supported  
  then  
  my_roothdd="UUID=$(get_uuid ${ROOTHDD})"  
  else  
  my_roothdd="${ROOTHDD}"  
  fi  
318    
319   : > ${grubconf} || die  install_do_reboot()
320   echo "default 0" >> ${grubconf} || die  {
321   echo "timeout 3" >> ${grubconf} || die   reboot
322   # using current root password  }
  echo "password --md5 $(cat ${INSTALLPATH}/etc/shadow | grep root | cut -d: -f2)"  >> ${grubconf} || die  
   
  echo  >> ${grubconf} || die  
  echo "# normal boot" >> ${grubconf} || die  
  echo "title ${KRNVER}" >> ${grubconf} || die  
  echo "root (hd0,0)" >> ${grubconf} || die  
  echo "kernel /boot/${KRNIMG} root=${my_roothdd} ${KERNELOPTS} ${GRUBLEGACYOPTS}" >> ${grubconf} || die  
  if is_initrd_supported  
  then  
  echo "initrd /boot/${KRNINITRD}" >> ${grubconf} || die  
  fi  
323    
  echo >> ${grubconf} || die  
  echo "# admin boot" >> ${grubconf} || die  
  echo "title ${KRNVER} - Re-run hardware-detection" >> ${grubconf} || die  
  echo "lock"  >> ${grubconf} || die  
  echo "root (hd0,0)" >> ${grubconf} || die  
  echo "kernel /boot/${KRNIMG} root=${my_roothdd} ${KERNELOPTS} ${GRUBLEGACYOPTS} hardware-auto-detection" >> ${grubconf} || die  
  if is_initrd_supported  
  then  
  echo "initrd /boot/${KRNINITRD}" >> ${grubconf} || die  
  fi  
324    
325   echo >> ${grubconf} || die  ### installer dialogs ###
  echo "title ${KRNVER} - Reset *all* local settings" >> ${grubconf} || die  
  echo "lock"  >> ${grubconf} || die  
  echo "root (hd0,0)" >> ${grubconf} || die  
  echo "kernel /boot/${KRNIMG} root=${my_roothdd} ${KERNELOPTS} ${GRUBLEGACYOPTS} alx-reset-settings" >> ${grubconf} || die  
  if is_initrd_supported  
  then  
  echo "initrd /boot/${KRNINITRD}" >> ${grubconf} || die  
  fi  
326    
327   # bootsector schreiben chrooted schreiben (lfs/magellan)  dialog_die()
328   cat > ${INSTALLPATH}/root/.installrc << CHROOTEOF  {
329  /usr/sbin/grub --no-floppy --batch << "EOF" 1> /dev/null 2> /dev/null   ERROR="$1"
330  root (hd0,0)   RETVAL="$?"
331  setup (hd0)   dialog_install_failure
332  quit   exit 1
333  EOF  }
 exit 0  
 CHROOTEOF  
  fi  
334    
335   ## enters chroot  dialog_warning()
336   mount -t proc proc ${INSTALLPATH}/proc  {
337   mount -t sysfs sysfs ${INSTALLPATH}/sys   local retval
  mount -o bind /dev ${INSTALLPATH}/dev  
  chroot ${INSTALLPATH} /bin/bash --rcfile /root/.installrc -i  
  umount ${INSTALLPATH}/proc  
  umount ${INSTALLPATH}/sys  
  umount ${INSTALLPATH}/dev  
  rm ${INSTALLPATH}/root/.installrc  
 }  
   
 is_initrd_supported()  
 {  
  # only generate initrds if the cmd exists  
  [[ -x ${INSTALLPATH}/sbin/mkinitrd ]] && return 0  
  return 1  
 }  
   
 install_initrd_chroot()  
 {  
  # only generate initrds if the cmd exists  
  is_initrd_supported || return 0  
   
  DISKMODS="sd_mod"  
  OLDPATAMODS="amd74xx piix sis5513 via82cxxx"  
  PATAMODS="ata_piix pata_amd pata_mpiix pata_oldpiix pata_sis pata_via"  
  SATAMODS="sata_via sata_sis sata_nv"  
  DRMMODS="i915 mga nouveau r128 radeon savage sis tdfx ttm via"  
  OTHERMODS=""  
  case ${SPECIALDEVICE} in  
  zotac_intel) FBMODS=""; DRMMODS="i915" ;;  
  zotac_nvidia) FBMODS=""; DRMMODS="nouveau" ;;  
  rangee) FBMODS="" ;; ## fallback to vesafb, viafb does not run on all CLE266 boards  
  # not working with kms enabled drivers -> segfaults  
  #maxdata) FBMODS="i810fb" ;; ## check for maxdata / i810/ i815 Chipsets and disable KMS and use i810fb frambuffer  
  maxdata) FBMODS="" ;;  
  *) FBMODS="uvesafb" ;;  
  esac  
338    
339   if [[ ${FORMFACTOR} = laptop ]]   yesnobox $"\Z1 !!! Warning !!! \Zn\n\n\This harddrive will be irreversibly erased.\n\n\Do you want to continue ?"
340     retval=$?
341     if [[ ${retval} -eq 1 ]]
342   then   then
343   OTHERMODS="acpi-cpufreq cpufreq_ondemand cpufreq_conservative cpufreq_powersave"   clear
344     echo $"The process was aborted."
345     exit 1
346   fi   fi
347    }
348    
  # install an appropriate uvesafb.conf  
  install -d ${INSTALLPATH}/etc/modprobe.d || die  
  echo "options uvesafb mode_option=1024x768-32@60 scroll=ywrap" > ${INSTALLPATH}/etc/modprobe.d/uvesafb.conf || die  
   
  # install an appropriate viafb.conf  
  echo "options viafb viafb_mode=1024x768 viafb_refresh=60" > ${INSTALLPATH}/etc/modprobe.d/viafb.conf || die  
   
  # install an appropriate i810fb.conf  
  echo "options i810fb xres=1024 yres=768 bpp=16 mtrr=1 hsync1=30 hsync2=62 vsync1=30 vsync2=60"  > ${INSTALLPATH}/etc/modprobe.d/i810fb.conf || die  
349    
350   cat > ${INSTALLPATH}/root/.installrc << CHROOTEOF  ### installer tasks ###
 echo "MODULES=\"${FORMAT_FILESYSTEM} ${DISKMODS} ${OLDATAMODS} ${PATAMODS} ${SATAMODS} ${DRMMODS} ${FBMODS} ${OTHERMODS}\"" > /etc/conf.d/mkinitrd  
 mkinitrd -f /boot/$(readlink /boot/initrd) $(readlink /boot/vmlinuz | sed "s:kernel-::g") > /dev/null  
 exit 0  
 CHROOTEOF  
351    
352   ## enters chroot  task_setup_system_menu()
  mount -t proc proc ${INSTALLPATH}/proc  
  mount -t sysfs sysfs ${INSTALLPATH}/sys  
  mount -o bind /dev ${INSTALLPATH}/dev  
  chroot ${INSTALLPATH} /bin/bash --rcfile /root/.installrc -i  
  umount ${INSTALLPATH}/proc  
  umount ${INSTALLPATH}/sys  
  umount ${INSTALLPATH}/dev  
  rm ${INSTALLPATH}/root/.installrc  
 }  
   
 is_uuid_supported()  
353  {  {
354   if [[ -x $(which busybox.mkinitrd &> /dev/null) ]]   local mode
355     local retval
356    
357     mode="$(dialog_setup_system_menu)"
358     retval=$?
359     [[ ${retval} -eq 1 ]] && return 1
360     if [[ ${retval} -eq 0 ]]
361   then   then
362   # only detect uuids if supported   case "${mode}" in
363   if [[ ! -z $(busybox.mkinitrd | grep blkid) ]]   "1") run_install_auto ;;
364   then   "2") run_install_normal ;;
365   return 0   "") task_setup_system_menu;;
366   fi   esac
367   fi   fi
   
  return 1  
368  }  }
369    
370  get_uuid()  task_hardware_detection()
371  {  {
372   local UUID   local message
  local SEC_TYPE  
  local TYPE  
373    
374   local dev="$1"   run_hardware_detection_disks
  [[ -z ${dev} ]] && die "no dev given"  
375    
376   # check if given device is already an UUID   message+=$"Harddrives:\n"
377   if [[ ${dev/UUID=/}x != ${dev}x ]]  
378     if [[ ! -z ${ALL_DISKS} ]]
379   then   then
380   eval "${dev}"   for i in ${ALL_DISKS}
381   else   do
382   eval $(busybox.mkinitrd blkid ${dev} | grep "${dev}:" | sed 's/.*:\ //')   message+="\Z3${i}\Zn "
383     done
384     message+="\n"
385   fi   fi
  echo "${UUID}"  
 }  
386    
387  install_system_settings()   if [[ ! -z ${ALL_CDROMS} ]]
 {  
  # schreibe fstab  
  if is_uuid_supported  
388   then   then
389   echo -e "UUID=$(get_uuid ${BOOTHDD})\t/boot\t${FORMAT_FILESYSTEM}\tnoatime,noauto\t1 1" > ${INSTALLPATH}/etc/fstab || die   message+="\n"
390   echo -e "UUID=$(get_uuid ${ROOTHDD})\t/\t${FORMAT_FILESYSTEM}\tnoatime\t0 0" >> ${INSTALLPATH}/etc/fstab || die   message+=$"Optical disk drives:\n"
391   else   for i in ${ALL_CDROMS}
392   echo -e "${BOOTHDD}\t/boot\t${FORMAT_FILESYSTEM}\tnoatime,noauto\t1 1" > ${INSTALLPATH}/etc/fstab || die   do
393   echo -e "${ROOTHDD}\t/\t${FORMAT_FILESYSTEM}\tnoatime\t0 0" >> ${INSTALLPATH}/etc/fstab || die   message+="\Z3${i}\Zn"
394     done
395     message+="\n"
396   fi   fi
  # not needed busybox loads all with swapon -a, even if not mentioned in fstab  
  #echo -e "UUID='$(get_uuid ${SWAPHDD})'\tswap\tswap\tpri=1\t0 0" >> ${INSTALLPATH}/etc/fstab || die  
  echo -e "proc\t/proc\tproc\tdefaults\t0 0" >> ${INSTALLPATH}/etc/fstab || die  
  echo -e "shm\t/dev/shm\ttmpfs\tdefaults\t0 0" >> ${INSTALLPATH}/etc/fstab || die  
397    
398   # install network config skeleton   # other devices
399   install -m0644 ${INSTALLPATH}/etc/alxconfig-ng/skel/net/net.eth0 ${INSTALLPATH}/etc/conf.d/ || die   run_hardware_detection
400     case "${SPECIALDEVICE}" in
401   # intel framebufer quirk   zotac*) message+=$"\n\Z2Zotac device detected.\Zn" ;;
402   if [[ -e /proc/fb ]]   rangee) message+=$"\n\Z2Rangee device detected.\Zn" ;;
403     maxdata) message+=$"\n\Z2Maxdata device detected.\Zn" ;;
404     *) message+=$"\n\ZnCommon device detected.\Zn" ;;
405     esac
406     if [[ ${FORMFACTOR} = laptop ]]
407   then   then
408   if [[ ! -z $(grep 'inteldrmfb' /proc/fb) ]]   message+=$"\n\ZnFormfactor Laptop, activating 'ondemand' powersaving mode.\Zn"
  then  
  fbdev=$(grep 'inteldrmfb' /proc/fb | sed 's:\([0-9]\).*:\1:')  
  if [[ ${fbdev} != 0 ]]  
  then  
  sed -i "s:^\(SPLASH_DEV=\).*:\1\"/dev/fb${fbdev}\":" ${INSTALLPATH}/etc/splash/splash.conf || die  
  fi  
  fi  
409   fi   fi
410    
411     messagebox -y 12 -h $"Detected hardware:" "${message}"
412  }  }
413    
414  install_system_settings_flash()  task_setup_hdd_partitions_manual()
415  {  {
416   # schreibe fstab   local i
417   if is_uuid_supported   local retval
418    
419     if [[ -z ${ALL_DISKS} ]]
420   then   then
421   echo -e "UUID=$(get_uuid ${ROOTHDD})\t/\t${FORMAT_FILESYSTEM}\tnoatime\t0 0" > ${INSTALLPATH}/etc/fstab || die   dialog_no_harddrive_found
422     exit 1
423   else   else
424   echo -e "${ROOTHDD}\t/\t${FORMAT_FILESYSTEM}\tnoatime\t0 0" > ${INSTALLPATH}/etc/fstab || die   HDD=$(dialog_select_target_harddrive)
425     retval=$?
426     [[ ${retval} -eq 1 ]] && return 1
427     if [[ ${retval} -eq 0 ]]
428     then
429     dialog_setup_hdd_info
430     setup_hdd_partitions_manual
431     fi
432   fi   fi
  echo -e "proc\t/proc\tproc\tdefaults\t0 0" >> ${INSTALLPATH}/etc/fstab || die  
  echo -e "shm\t/dev/shm\ttmpfs\tdefaults\t0 0" >> ${INSTALLPATH}/etc/fstab || die  
433  }  }
434    
435  install_umount_rootfs()  task_setup_hdd_partitions_auto()
436  {  {
437   cd /   local i
438   umount ${INSTALLPATH}/boot || die   local retval
  umount ${INSTALLPATH} || die  
  swapoff ${SWAPHDD} || die  
 }  
439    
440  install_umount_rootfs_flash()   if [[ -z ${ALL_DISKS} ]]
441  {   then
442   cd /   dialog_no_harddrive_found
443   umount ${INSTALLPATH} || die   exit 1
444     else
445     HDD=$(dialog_select_target_harddrive)
446     retval=$?
447     [[ ${retval} -eq 1 ]] && return 1
448     if [[ ${retval} -eq 0 ]]
449     then
450     dialog_setup_hdd_info_auto
451     dialog_setup_hdd_create_partitions
452     setup_hdd_partitions_auto
453     fi
454     fi
455  }  }
456    
457  install_do_reboot()  task_main()
458  {  {
459   reboot   local method=0
460  }   local retval
461    
462  #################################################   while [[ ${method} -le 2 ]]
463  #     Install Ablauf Scripte #   do
464  #################################################   method=$(dialog_main)
465     retval=$?
466     [[ ${retval} -eq 1 ]] && exit 1
467     if [[ ${retval} -eq 0 ]]
468     then
469     case ${method} in
470     "1") task_setup_system_menu ;;
471     "2") task_hardware_detection ;;
472     "3") install_do_reboot ;;
473     "4") /bin/bash --login -i ;;
474     esac
475     fi
476     done
477    }
478    
479  run_install_normal()  run_install_normal()
480  {  {
481   dialog_hardware_detection   task_hardware_detection
482    
483   dialog_setup_hdd_partitions_manuell   task_setup_hdd_partitions_manual
484   dialog_setup_hdd_format   dialog_setup_hdd_format
485   setup_hdd_format > /dev/null   setup_hdd_format > /dev/null
486   install_mount_rootfs   install_mount_rootfs
487   (install_system_image > /tmp/install.log) 2> /tmp/install_errors.log | dialog_install_meter | dialog_install_system_image   (install_system_image > /tmp/install.log) 2> /tmp/install_errors.log | install_meter | dialog_install_system_image
488    
489   dialog_install_settings   dialog_install_settings
490   sleep 1   sleep 1
491   install_system_settings   install_system_settings
492   install_initrd_chroot   if is_initrd_supported
493     then
494     dialog_install_initrd
495     initrd_config
496     initrd_install
497     fi
498    
499   dialog_install_bootsector   dialog_install_bootsector
500   install_bootsector_chroot   bootloader_config
501     bootloader_install
502    
503   install_umount_rootfs   install_umount_rootfs
504   dialog_install_successful   dialog_install_successful
505  }  }
506    
 run_install_flash()  
 {  
  dialog_hardware_detection  
   
  dialog_setup_hdd_partitions_manuell_flash  
  dialog_setup_hdd_format  
  setup_hdd_format_flash > /dev/null  
  install_mount_rootfs_flash  
  (install_system_image > /tmp/install.log) 2> /tmp/install_errors.log | dialog_install_meter | dialog_install_system_image  
   
  dialog_install_settings  
  sleep 1  
  install_system_settings_flash  
  install_initrd_chroot  
   
  dialog_install_bootsector  
  install_bootsector_chroot  
   
  install_umount_rootfs_flash  
  dialog_install_successful  
 }  
   
507  run_install_auto()  run_install_auto()
508  {  {
509   dialog_hardware_detection   task_hardware_detection
510    
511   dialog_setup_hdd_partitions_auto   task_setup_hdd_partitions_auto
512   dialog_setup_hdd_format   dialog_setup_hdd_format
513   setup_hdd_format_flash > /dev/null   setup_hdd_format > /dev/null
514   install_mount_rootfs_flash   install_mount_rootfs
515   (install_system_image > /tmp/install.log) 2> /tmp/install_errors.log | dialog_install_meter | dialog_install_system_image   (install_system_image > /tmp/install.log) 2> /tmp/install_errors.log | install_meter | dialog_install_system_image
516    
517   dialog_install_settings   dialog_install_settings
518   sleep 1   sleep 1
519   install_system_settings_flash   install_system_settings
520   install_initrd_chroot   if is_initrd_supported
521     then
522     dialog_install_initrd
523     initrd_config
524     initrd_install
525     fi
526    
527   dialog_install_bootsector   dialog_install_bootsector
528   install_bootsector_chroot   bootloader_config
529     bootloader_install
530    
531   install_umount_rootfs_flash   install_umount_rootfs
532   dialog_install_successful   dialog_install_successful
533  }  }
534    
535  dialog_main  # set some proper traps
536    trap "trap_exit" SIGINT SIGQUIT
537    
538    task_main
539    
540  exit 0  exit 0

Legend:
Removed from v.2323  
changed lines
  Added in v.2482