Magellan Linux

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

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

revision 2322 by niro, Fri Jan 3 13:18:57 2014 UTC revision 2333 by niro, Fri Jan 3 14:00:30 2014 UTC
# Line 1  Line 1 
1  #!/bin/sh  #!/bin/bash
2  # $Id$  # $Id$
3  #  #
4  # Simple Installation Script  # Simple Installation Script
# Line 7  Line 7 
7  # Niels Rogalla <niro@magellan-linux.de>  # Niels Rogalla <niro@magellan-linux.de>
8  #  #
9    
10    INSTALLER_LIBDIR="%LIBDIR%"
11    
12    source %SYSCONFDIR%/installer.conf
13    
14  #images: (get ${CDIMAGENAME})  #images: (get ${CDIMAGENAME})
15  source /mnt/cdrom/system/images.conf  source /mnt/cdrom/system/images.conf
16    
17  #Includes  #Includes
18  source /usr/lib/installer/functions/findhdd.sh > /dev/null  source ${INSTALLER_LIBDIR}/functions/findhdd.sh > /dev/null
19  ### bugfix ###############################  ### bugfix ###############################
20  cdromdev="$(echo ${cdromdev} | sed 's/ //')"  cdromdev="$(echo ${cdromdev} | sed 's/ //')"
21  ########################################  ########################################
22    
23  ### System/Config Version  ### System/Config Version
24  VERSION="%VERSIONTAG%"  VERSION="%VERSIONTAG%"
25  TITLE="Installer - ${VERSION}"  TITLE="${DEFAULT_TITLE} - ${VERSION}"
26    
27  CDPATH="/mnt/cdrom"  CDPATH="${DEFAULT_CDPATH}"
28  INSTALLPATH="/mnt/magellan"  INSTALLPATH="${DEFAULT_INSTALLPATH}"
29    
30  ### WICHTIG: anzahl lines in der autosta_lx.tar.gz -1  ### WICHTIG: anzahl lines in der autosta_lx.tar.gz -1
31  CURRENTLINE=0  CURRENTLINE=0
# Line 42  SPECIALDEVICE="" Line 46  SPECIALDEVICE=""
46  FORMFACTOR="desktop"  FORMFACTOR="desktop"
47    
48  # target filesystem  # target filesystem
49  FORMAT_FILESYSTEM="ext4"  FORMAT_FILESYSTEM="${DEFAULT_FILESYSTEM}"
50    
51  #################################################  #################################################
52  #  DIALOG BOXEN #  #  DIALOG BOXEN #

Legend:
Removed from v.2322  
changed lines
  Added in v.2333