slitaz-tools annotate installer/tazinst @ rev 655

tazinst: French locale added
author Dominique Corbex <domcox@slitaz.org>
date Wed Jul 20 15:29:22 2011 +0200 (2011-07-20)
parents 15546925dd96
children a339d3240495
rev   line source
domcox@599 1 #!/bin/sh
domcox@599 2 # slitaz-installer - SliTaz GNU/Linux installer.
domcox@599 3 #
domcox@599 4 # So this is the SliTaz installer. The script starts with a
domcox@599 5 # few main variables, then all the functions and then the
domcox@599 6 # full sequence of functions.
domcox@599 7 #
domcox@599 8 # (C) 2007-2011 SliTaz - GNU General Public License v3.
domcox@599 9 #
domcox@599 10 # Authors : Christophe Lincoln <pankso@slitaz.org>
domcox@612 11 # Dominique Corbex <domcox@slitaz.org>
domcox@654 12 #
domcox@654 13 # Exit codes
domcox@654 14 # 1: Parameters error
domcox@654 15 # 2: Configuration file error
domcox@654 16 # 3: Source error
domcox@654 17 # 4: Cancelled by user
domcox@654 18 # 5: Target partition error
domcox@654 19 # 6: No SliTaz system to upgrade found
domcox@654 20 # 8: Internal error
domcox@599 21
domcox@655 22 VERSION=3.01
domcox@655 23
domcox@655 24 # Internationalization
domcox@655 25 . /usr/bin/gettext.sh
domcox@655 26 TEXTDOMAIN='tazinst'
domcox@655 27 export TEXTDOMAIN
domcox@612 28
domcox@599 29 SOURCE_ROOT=/media/source
domcox@599 30 TARGET_ROOT=/mnt/target
domcox@599 31 LOG=/var/log/tazinst.log
domcox@599 32 BACKLIST="SliTaz GNU/Linux installer"
domcox@599 33
domcox@654 34 # DEBUG=1: Enable debug msgs
domcox@599 35 DEBUG=0
domcox@599 36
domcox@654 37 # Predefined urls
domcox@612 38 URL_STABLE="http://mirror.slitaz.org/iso/stable/slitaz-4.0.iso"
domcox@599 39 URL_COOKING="http://mirror.slitaz.org/iso/cooking/slitaz-cooking.iso"
domcox@599 40 URL_ROLLING="http://mirror.slitaz.org/iso/rolling/slitaz-core.iso"
domcox@599 41
domcox@599 42 # Print a short help
domcox@599 43 usage()
domcox@599 44 {
domcox@599 45 echo -e "\n`gettext \"Tazinst - SliTaz installer - Version\"`: $VERSION\n"
domcox@599 46 echo -e "\033[1m`gettext \"Usage\"`:"
domcox@655 47 echo -e "\033[0m `gettext \"tazinst [command] [config-file]\"`\n"
domcox@599 48 echo -e "\033[1m`gettext \"Commands\"`: \033[0m"
domcox@655 49 echo -e "usage `gettext \"Print this short usage.\"`"
domcox@655 50 echo -e "install `gettext \"Install SliTaz on HDD using a configuration file.\"`"
domcox@655 51 echo -e "upgrade `gettext \"Upgrade SliTaz on HDD using a configuration file.\"`"
domcox@655 52 echo -e "config `gettext \"Generate a configuration file.\"`"
domcox@655 53 echo -e "cli `gettext \"Install or upgrade using command line options:\"`"
domcox@599 54 echo -e " -i `gettext \"Full Install (not upgrading, all present data will be lost).\"`"
domcox@599 55 echo -e " -u `gettext \"Upgrade (Needs an active internet connection).\"`"
domcox@599 56 echo -e " -t <type> `gettext \"Install type (cdrom|usb|iso|web|weboot).\"`"
paul@618 57 echo -e " -s <source> `gettext \"Source media (ex: file.iso|usb partition|web url).\"`"
domcox@599 58 echo -e " -p <partition> `gettext \"Partition where SliTaz will be installed (ex:/dev/hda3).\"`"
paul@608 59 echo -e " -f <fs> `gettext \"Partition to be formatted (fs=ext2|ext3|ext4|etc..).\"`"
domcox@599 60 echo -e " -g `gettext \"Install Grub.\"`"
domcox@599 61 echo -e " -w `gettext \"Dual-boot a Windows partition (auto|hd<disk>,<part> ex:hd0,0).\"`"
domcox@599 62 echo -e " -d `gettext \"Debug mode.\"`"
domcox@599 63 exit 0
domcox@599 64 }
domcox@599 65
domcox@599 66 # Print an error msg & exit
domcox@599 67 # $1: exit code
domcox@599 68 # $@: err msg
domcox@599 69 abort()
domcox@599 70 {
domcox@599 71 # unmouting source & target
domcox@599 72 if mount | grep -q $SOURCE_ROOT; then
domcox@599 73 umount $SOURCE_ROOT 2>>$LOG
domcox@599 74 fi
domcox@599 75 if mount | grep -q $TARGET_ROOT; then
domcox@599 76 umount $TARGET_ROOT 2>>$LOG
domcox@599 77 fi
domcox@654 78 echo -e "`gettext \"Error\"` $@"
domcox@654 79 echo -e "`gettext \"Installation cancelled\"`"
paul@608 80 test $(id -u) = 0 && echo "Installation cancelled on error $@" >> $LOG
domcox@599 81 exit $1
domcox@599 82 }
domcox@599 83
domcox@599 84 # Print a warning msg
domcox@599 85 warning()
domcox@599 86 {
domcox@654 87 echo -e "`gettext \"Warning:\"` $@" | tee -a $LOG
domcox@599 88 }
domcox@599 89
domcox@599 90 # Print a debug msg
domcox@599 91 debug()
domcox@599 92 {
domcox@599 93 [ $DEBUG -gt 0 ] && echo -e "\033[1mDEBUG: \033[0m$1"
domcox@599 94 echo "DEBUG: $1" >>$LOG
domcox@599 95 }
domcox@599 96
domcox@599 97 # print a msg
domcox@599 98 msg()
domcox@599 99 {
domcox@599 100 STEP=$(($STEP+1))
domcox@599 101 echo "$STEP. $@" | tee -a $LOG
domcox@599 102 }
domcox@599 103
domcox@599 104 ########################
domcox@599 105 # Gen-config functions #
domcox@599 106 ########################
domcox@599 107
domcox@599 108 # Generate a config file
domcox@599 109 # $1: Configuration file
domcox@599 110 gen_config()
domcox@599 111 {
domcox@599 112 CONFILE=$1
domcox@654 113 touch $CONFILE || abort 2 `gettext "Unable to write to $CONFILE"`
domcox@599 114 if [ -r "$CONFILE" ]; then
domcox@599 115 cat > $CONFILE << _EOF_
domcox@599 116 # tazinst.conf: SliTaz Installer configuration file.
domcox@599 117 #
domcox@599 118
domcox@599 119 # Install type : [cdrom|usb|iso|web|weboot]
domcox@599 120 INST_TYPE="cdrom"
domcox@599 121
domcox@599 122 # Install source
domcox@599 123 # usb:/dev/xxx, ex: SRC_FILE=/dev/sdb1
domcox@599 124 # iso:file.iso, ex: SRC_FILE=~/slitaz.3.0.iso
domcox@599 125 # web: url, ex: SRC_FILE=http://mirror.slitaz.org/iso/cooking/slitaz-cooking.iso
paul@618 126 # web: predefined mirrors (stable|cooking|rolling), ex: SRC_FILE=cooking
domcox@599 127 SRC_FILE=""
domcox@599 128
domcox@599 129 # Install Target (Root Partition).
domcox@599 130 TGT_PARTITION="/dev/hda5"
domcox@599 131
domcox@599 132 # Target File system.
domcox@599 133 # SliTaz uses ext3 by default but another filesystem can be used if wanted,
domcox@599 134 # for this please adjust your /etc/fstab after installation. Valid options are:
domcox@599 135 # (btrfs|ext2|ext3|ext4|fat16|fat32|hfs|hfs+|jfs|ntfs|reiser4|reiserfs|ufs|xfs)
domcox@599 136 TGT_FS="ext3"
domcox@599 137
domcox@599 138 # Home partition.
domcox@599 139 # On most GNU/Linux systems users personal files are stored in the directory
paul@618 140 # /home. Home can be on another hard disk or on a separate partition.
domcox@599 141 TGT_HOME=""
domcox@599 142 # Home File system (if /home is on a separate partition)
domcox@599 143 TGT_HOME_FS=""
domcox@599 144
domcox@599 145 # Hostname
domcox@599 146 TGT_HOSTNAME="slitaz"
domcox@599 147
domcox@599 148 # root password
domcox@599 149 # The root administrator privilege lets you manage and configure the full
domcox@599 150 # system. A root user can damage your system so you should always setup a
domcox@599 151 # strong password with special characters and/or numbers.
domcox@599 152 TGT_ROOT_PWD="root"
domcox@599 153
domcox@599 154 # The default user for the system will have his personal files stored
domcox@599 155 # in /home/*user* (and will be automatically added to the audio group).
domcox@599 156 TGT_USER="tux"
domcox@599 157 TGT_USER_PWD=""
domcox@599 158
domcox@599 159 # Grub bootloader
domcox@599 160 # install grub [yes|no]
domcox@599 161 TGT_GRUB="no"
domcox@599 162
domcox@599 163 # Windows dual-boot
domcox@599 164 # Dual boot is disabled if WINBOOT is empty: TGT_WINBOOT=""
domcox@599 165 # You may let tazinst find your win partition, mode=auto: TGT_WINBOOT="auto"
paul@618 166 # or use manual setting: "hd[disk],[partition]" ex:TGT_WINBOOT=hd0,0
domcox@599 167 TGT_WINBOOT=""
domcox@599 168
domcox@599 169 _EOF_
domcox@599 170
domcox@599 171 else
domcox@654 172 abort 2 `gettext "Configuration file $CONFILE not found"`
domcox@599 173 fi
domcox@599 174 }
domcox@599 175
domcox@599 176 ######################
domcox@599 177 # Checking functions #
domcox@599 178 ######################
domcox@599 179
domcox@599 180 # def values and start log
domcox@599 181 # $@ :
domcox@599 182 init()
domcox@599 183 {
domcox@599 184 echo "=== Tazinst start at `date` ===" >$LOG
domcox@599 185 echo "Command: $0 $@" >>$LOG
domcox@599 186
domcox@599 187 # Default Type
domcox@599 188 INST_TYPE=cdrom
domcox@599 189 # Default Hostname.
domcox@599 190 TGT_HOSTNAME=slitaz
domcox@599 191 # Default root passwd
domcox@599 192 TGT_ROOT_PWD=root
domcox@599 193 # Default user
domcox@599 194 TGT_USER=tux
domcox@599 195 # Default Grub Install
domcox@599 196 TGT_GRUB=no
domcox@599 197 }
domcox@599 198
domcox@599 199 # Read Conf
domcox@599 200 # $1: conf file
domcox@599 201 read_configuration_file()
domcox@599 202 {
domcox@599 203 CONFILE=$1
domcox@599 204 if [ -n "$CONFILE" ]; then
domcox@599 205 if [ -r "$CONFILE" ]; then
domcox@599 206 debug "Using config-file=$CONFILE"
domcox@599 207 # source doesn't like file without a path
domcox@599 208 [ $(echo "$CONFILE" | grep -c "/") == "0" ] && CONFILE="./$CONFILE"
domcox@654 209 source $CONFILE || abort 2 `gettext "Unable to read $CONFILE"`
domcox@599 210 else
domcox@654 211 abort 2 `gettext "Configuration file not found"`
domcox@599 212 fi
domcox@599 213 else
domcox@654 214 abort 2 `gettext "No configuration file provided"`
domcox@599 215 fi
domcox@599 216 }
domcox@599 217
domcox@599 218 # Cli options
domcox@599 219 # $@: tazinst parms
domcox@599 220 check_cli_options()
domcox@599 221 {
domcox@599 222 shift
domcox@599 223 while getopts "c:df:ghip:s:t:uw:" opt ; do
domcox@599 224 case $opt in
domcox@599 225 d) DEBUG=1 ;;
domcox@599 226 f) TGT_FS=$OPTARG ;;
domcox@599 227 g) TGT_GRUB="yes" ;;
domcox@599 228 h) usage ;;
domcox@599 229 i) INSTALL="install" ;;
domcox@599 230 p) TGT_PARTITION=$OPTARG ;;
domcox@599 231 s) SRC_FILE=$OPTARG ;;
domcox@599 232 t) INST_TYPE=$OPTARG ;;
domcox@599 233 u) UPGRADE="upgrade" ;;
domcox@599 234 w) TGT_WINBOOT=$OPTARG ;;
domcox@599 235 [?]) abort 1 ;;
domcox@599 236 esac
domcox@599 237 done
domcox@599 238
domcox@599 239 # Duplicate install modes are forbidden
domcox@654 240 [ -n "$INSTALL" ] && [ -n "$UPGRADE" ] && abort 1 `gettext "Mismatched parameters"`
domcox@599 241 INST_ACTION="$INSTALL$UPGRADE"
domcox@599 242 # Don't allow formatting on upgrades
domcox@599 243 [ "$INST_ACTION" == "upgrade" ] && [ -n "$TGT_FS" ] && \
domcox@654 244 warning `gettext "Partition $TGT_PARTITION will not be formatted during upgrade"`
domcox@599 245 }
domcox@599 246
domcox@599 247 # check main vars
domcox@599 248 check_vars()
domcox@599 249 {
domcox@599 250 # error handling
domcox@599 251 local error=no
domcox@599 252 local found=no
domcox@599 253 local partition=""
domcox@599 254
domcox@599 255 debug "--- Tazinst main options ---"
domcox@599 256 debug "action=$INST_ACTION"
domcox@599 257 debug "type=$INST_TYPE"
domcox@599 258 debug "source=$SRC_FILE"
domcox@599 259 debug "/ partition=$TGT_PARTITION"
domcox@599 260 debug "/ filesystem=$TGT_FS"
domcox@599 261 debug "/home partition=$TGT_HOME"
domcox@599 262 debug "/home filesystem=$TGT_HOME_FS"
domcox@599 263 debug "hostname=$TGT_HOSTNAME"
domcox@599 264 debug "root-pwd=$TGT_ROOT_PWD"
domcox@599 265 debug "user=$TGT_USER"
domcox@599 266 debug "user-pwd=$TGT_USER_PWD"
domcox@599 267 debug "grub=$TGT_GRUB"
domcox@599 268 debug "winboot=$TGT_WINBOOT"
domcox@599 269 debug "--------------------------------------"
domcox@599 270
domcox@599 271 # Check Action
domcox@599 272 case $INST_ACTION in
domcox@599 273 install|upgrade) ;;
domcox@654 274 *) msg `gettext "INST_ACTION=$INST_ACTION: Invalid setting"`; error=yes ;;
domcox@599 275 esac
domcox@599 276
domcox@599 277 # Check Type
domcox@599 278 case $INST_TYPE in
domcox@599 279 cdrom|weboot) ;;
domcox@599 280 usb|iso|web)
domcox@599 281 # We need a valid source
domcox@599 282 if [ -z "$SRC_FILE" ]; then
domcox@654 283 msg `gettext "Type is $INST_TYPE, but INST_SOURCE is not set"`; error=yes
domcox@599 284 fi ;;
domcox@654 285 *) msg `gettext "INST_TYPE=$INST_TYPE: Invalid setting"`; error=yes ;;
domcox@599 286 esac
domcox@599 287
domcox@599 288 # Check Source file
domcox@599 289 # 1. assign predefs
domcox@599 290 if [ "$INST_TYPE" == "web" ]; then
domcox@599 291 [ "$SRC_FILE" == "stable" ] && SRC_FILE=$URL_STABLE
domcox@599 292 [ "$SRC_FILE" == "cooking" ] && SRC_FILE=$URL_COOKING
domcox@599 293 [ "$SRC_FILE" == "rolling" ] && SRC_FILE=$URL_ROLLING
domcox@599 294 fi
domcox@599 295 # 2. check avail.
domcox@599 296 case $INST_TYPE in
domcox@599 297 iso)
domcox@599 298 if [ ! -r "$SRC_FILE" ]; then
domcox@654 299 msg `gettext "SRC_FILE=$SRC_FILE: file not found"`; error=yes
domcox@599 300 fi ;;
domcox@599 301 web)
domcox@599 302 if [ $(wget -sq "$SRC_FILE") ]; then
domcox@654 303 msg `gettext "SRC_FILE=$SRC_FILE: file not found on the web"`; error=yes
domcox@599 304 fi ;;
domcox@599 305 esac
domcox@599 306
domcox@599 307 # Check Target Partition
domcox@599 308 found=no
domcox@599 309 LIST_PARTITION=$(fdisk -l | awk '/^\/dev/{printf "%s ",$1}')
domcox@599 310 for partition in $LIST_PARTITION; do
domcox@599 311 [ "$partition" == "$TGT_PARTITION" ] && found="yes"
domcox@599 312 done
domcox@599 313 if [ "$found" != "yes" ]; then
domcox@654 314 msg `gettext "TGT_PARTITION=$TGT_PARTITION Partition not found"`; error=yes
domcox@599 315 fi
domcox@599 316
domcox@599 317 # Check Filesystem
domcox@599 318 case $TGT_FS in
domcox@599 319 "") ;;
domcox@599 320 btrfs|ext2|ext3|ext4|fat16|fat32|hfs|hfs+|jfs|ntfs|reiser4|reiserfs|ufs|xfs)
domcox@599 321 found=no
domcox@599 322 for xdir in /sbin /usr/sbin /usr/bin; do
domcox@599 323 [ -x "$xdir/mkfs.$TGT_FS" ] && found=yes
domcox@599 324 done
domcox@599 325 if [ "$found" == "no" ]; then
domcox@654 326 msg `gettext "$TGT_FS: mkfs.$TGT_FS is not installed."`; error=yes
domcox@599 327 fi ;;
domcox@654 328 *) msg `gettext "TGT_FS=$TGT_FS: Unknown filesystem"`; error=yes ;;
domcox@599 329 esac
domcox@599 330
domcox@599 331 # Check Home partition
domcox@599 332 if [ -n "$TGT_HOME" ]; then
domcox@599 333 found=no
domcox@599 334 for partition in $LIST_PARTITION; do
domcox@599 335 [ "$partition" == "$TGT_HOME" ] && found=yes
domcox@599 336 done
domcox@599 337 if [ "$found" != "yes" ]; then
domcox@654 338 msg `gettext "TGT_HOME=$TGT_HOME: Partition not found"`; error=yes
domcox@599 339 fi
domcox@599 340 fi
domcox@599 341
domcox@599 342 # Check Home Filesystem
domcox@599 343 case $TGT_HOME_FS in
domcox@599 344 "") ;;
domcox@599 345 btrfs|ext2|ext3|ext4|fat16|fat32|hfs|hfs+|jfs|ntfs|reiser4|reiserfs|ufs|xfs)
domcox@599 346 found=no
domcox@599 347 for xdir in /sbin /usr/sbin /usr/bin; do
domcox@599 348 [ -x "$xdir/mkfs.$TGT_FS" ] && found=yes
domcox@599 349 done
domcox@599 350 if [ "$found" == "no" ]; then
domcox@654 351 msg `gettext "$TGT_FS: mkfs.$TGT_FS is not installed."`; error=yes
domcox@599 352 fi ;;
domcox@654 353 *) msg `gettext "TGT_HOME_FS=$TGT_HOME_FS: unknown filesystem"`; error=yes ;;
domcox@599 354 esac
domcox@599 355
domcox@599 356 # Check Grub
domcox@599 357 case $TGT_GRUB in
domcox@599 358 yes|no) ;;
domcox@654 359 *) msg `gettext "TGT_GRUB=$TGT_GRUB: Invalid setting"`; error=yes ;;
domcox@599 360 esac
domcox@599 361
domcox@599 362 # Check Winboot
domcox@599 363 case $TGT_WINBOOT in
domcox@599 364 "") ;;
domcox@599 365 auto) ;;
domcox@599 366 hd[[:digit:]],[[:digit:]]) ;;
domcox@654 367 *) msg `gettext "TGT_WINBOOT=$TGT_WINBOOT: Invalid format"`; error=yes ;;
domcox@599 368 esac
domcox@599 369
domcox@599 370 # Stop on error
domcox@599 371 [ "$error" == "yes" ] && abort 1
domcox@599 372 }
domcox@599 373
domcox@599 374 # Exit install if user is not root.
domcox@599 375 check_root()
domcox@599 376 {
domcox@599 377 if test $(id -u) != 0 ; then
domcox@654 378 echo -e "`gettext \"You must be the root user (system administrator) to install SliTaz, \
domcox@654 379 please use 'su' to get a root SHell and restart installation.\"`"
domcox@599 380 exit 0
domcox@599 381 fi
domcox@599 382 }
domcox@599 383
domcox@599 384 # Mount cdrom
domcox@599 385 check_cdrom()
domcox@599 386 {
domcox@599 387 # Set device name
domcox@599 388 DRIVE_NAME=`cat /proc/sys/dev/cdrom/info | grep "drive name" | cut -f 3` [ -n "$DRIVE_NAME" ] || DRIVE_NAME=cdrom
domcox@599 389 CDROM=/dev/$DRIVE_NAME
domcox@599 390 # Try to mount a cdrom
domcox@599 391 if mount -t iso9660 $CDROM $SOURCE_ROOT 2>>$LOG; then
domcox@599 392 debug "Using files from cdrom ($CDROM)..."
domcox@599 393 sleep 2
domcox@599 394 else
domcox@654 395 warning `gettext "Failed to mount $CDROM"`
domcox@599 396 fi
domcox@599 397 }
domcox@599 398
domcox@599 399 # Link LiveUSB
domcox@599 400 check_usb()
domcox@599 401 {
domcox@599 402 # /home is on USB dev
domcox@599 403 if [ -d /home/boot ]; then
domcox@599 404 debug "Using files from USB device..."
domcox@599 405 ln -s /home/boot $SOURCE_ROOT/boot
domcox@599 406 SOURCE_STATUS="link"
domcox@599 407 sleep 2
domcox@599 408 else
domcox@599 409 # Try to mount LiveUSB
domcox@599 410 if mount $SRC_FILE $SOURCE_ROOT 2>>$LOG; then
domcox@599 411 debug "Using files from USB device ($SRC_FILE)..."
domcox@599 412 SOURCE_STATUS="mount"
domcox@599 413 else
domcox@654 414 warning `gettext "Failed to mount USB device $SRC_FILE"`
domcox@599 415 fi
domcox@599 416 fi
domcox@599 417 }
domcox@599 418
domcox@599 419 # Mount ISO file
domcox@599 420 check_iso()
domcox@599 421 {
domcox@599 422 local src_md5
domcox@599 423 # Integrity check
domcox@599 424 src_md5=$(echo $SRC_FILE | sed 's/.iso$/.md5/')
domcox@599 425 if [ -r "$src_md5" ]; then
domcox@599 426 [ $(md5sum $SRC_FILE | cut -d' ' -f1) == $(cat "$src_md5" | cut -d' ' -f1) ] || \
domcox@654 427 abort 3 `gettext "$SRC-FILE corrupted"`
domcox@599 428 else
domcox@654 429 warning `gettext "$src_md5 not found, unable to check integrity of $SRC_FILE"`
domcox@599 430 fi
domcox@599 431 # Try to mount ISO
domcox@599 432 if mount -o loop -t iso9660 $SRC_FILE $SOURCE_ROOT 2>>$LOG; then
domcox@599 433 debug "Using files from ISO ($SRC_FILE)..."
domcox@599 434 sleep 2
domcox@599 435 else
domcox@654 436 warning `gettext "Failed to mount ISO '$SRC_FILE'"`
domcox@599 437 fi
domcox@599 438 }
domcox@599 439
domcox@599 440 # Source is on the web
domcox@599 441 check_web()
domcox@599 442 {
domcox@599 443 local src_md5
domcox@599 444 debug "Downloading $SRC_FILE"
domcox@599 445 if wget $SRC_FILE -P /tmp; then
domcox@599 446 debug "Download completed."
domcox@599 447 else
domcox@654 448 warning `gettext "Failed to download '$SRC_FILE'"`
domcox@599 449 fi
domcox@599 450 src_md5=$(echo $SRC_FILE | sed 's/.iso$/.md5/')
domcox@599 451 debug "Downloading $src_md5"
domcox@654 452 wget $src_md5 -P /tmp || warning `gettext "Failed to download '$src_md5'"`
domcox@599 453 tmpfile=$(echo $SRC_FILE | awk 'BEGIN{RS="/"}{out=$1}END{printf"%s",out}')
domcox@599 454 SRC_FILE="/tmp/$tmpfile"
domcox@599 455 check_iso
domcox@599 456 }
domcox@599 457
domcox@599 458 # We may be in Tiny Web boot mode
domcox@599 459 check_weboot()
domcox@599 460 {
domcox@599 461 if [ -d $SRC_FILE/boot ]; then
domcox@599 462 debug "Using files from HTTP device..."
domcox@599 463 ln -s $SRC_FILE/boot $SOURCE_ROOT/boot
domcox@599 464 sleep 2
domcox@599 465 else
domcox@654 466 abort 3 `gettext "Web boot files not found"`
domcox@599 467 fi
domcox@599 468 }
domcox@599 469
domcox@599 470 # set up source and check Slitaz' content
domcox@599 471 check_source()
domcox@599 472 {
domcox@599 473 debug "Creating mount point ($SOURCE_ROOT)..."
domcox@599 474 mkdir -p $SOURCE_ROOT
domcox@599 475 sleep 1
domcox@599 476 case $INST_TYPE in
domcox@599 477 cdrom)
domcox@599 478 check_cdrom ;;
domcox@599 479 usb)
domcox@599 480 check_usb ;;
domcox@599 481 iso)
domcox@599 482 check_iso ;;
domcox@599 483 web)
domcox@599 484 check_web ;;
domcox@599 485 weboot)
domcox@599 486 check_cdrom
domcox@599 487 check_web ;;
domcox@599 488 *)
domcox@654 489 abort 8 `gettext "Internal"` ;;
domcox@599 490 esac
domcox@599 491
domcox@599 492 # Exit with error msg if no rootfs.gz found.
domcox@599 493 debug "Checking installation media..."
domcox@599 494 if [ ! -f $SOURCE_ROOT/boot/rootfs.gz -a \
domcox@599 495 ! -f $SOURCE_ROOT/boot/rootfs1.gz ]; then
domcox@654 496 abort 3 `gettext "Invalid source"`
domcox@599 497 else
domcox@599 498 debug "Installation media checked ok"
domcox@599 499 fi
domcox@599 500 }
domcox@599 501
domcox@599 502 # Tiny summary
domcox@599 503 summary()
domcox@599 504 {
domcox@654 505 echo -e "`gettext \"Installation settings summary:\"`"
domcox@599 506 STEP=0
domcox@599 507
domcox@599 508 if [ "$INST_ACTION" == "install" ]; then
domcox@599 509 if [ -n "$TGT_FS" ]; then
domcox@654 510 msg `gettext "Format root partition '$TGT_PARTITION' ($TGT_FS)"`
domcox@599 511 fi
domcox@599 512 if [ -n "$TGT_HOME_FS" ]; then
domcox@654 513 msg `gettext "Format /home partition '$TGT_HOME' ($TGT_HOME_FS)"`
domcox@599 514 fi
domcox@654 515 msg `gettext "Install SliTaz on '$TGT_PARTITION' from $INST_TYPE"`
domcox@654 516 [ -n "$TGT_HOME" ] && msg `gettext "Set Home partition to '$TGT_HOME'"`
domcox@654 517 msg `gettext "Set Hostname as '$TGT_HOSTNAME'"`
domcox@654 518 msg `gettext "Set Default user as '$TGT_USER'"`
domcox@599 519 else
domcox@654 520 msg `gettext "Check '$TGT_PARTITION'"`
domcox@654 521 msg `gettext "Backup /etc, /home and the packages list"`
domcox@654 522 msg `gettext "Upgrade SliTaz on '$TGT_PARTITION' from $INST_TYPE"`
domcox@654 523 msg `gettext "Restore /etc, /home"`
domcox@654 524 msg `gettext "Upgrade additional packages."`
domcox@599 525 fi
domcox@599 526 if [ -n "$TGT_WINBOOT" ]; then
domcox@654 527 msg `gettext "Enable Windows dual-boot ($TGT_WINBOOT)"`
domcox@599 528 fi
domcox@599 529 if [ "$TGT_GRUB" == "yes" ]; then
domcox@654 530 msg `gettext "Install Grub"`
domcox@599 531 fi
domcox@599 532
domcox@654 533 echo -ne "`gettext \"Continue:(y/n)\"`"
domcox@599 534 read answer
domcox@599 535 case $answer in
domcox@655 536 [oOyY]) echo -e "`gettext \"Running $BACKLIST..\"`" ;;
domcox@654 537 *) abort 4 `gettext "Cancelled by user"` ;;
domcox@599 538 esac
domcox@599 539 STEP=0
domcox@599 540 }
domcox@599 541
domcox@599 542 #######################
domcox@599 543 # Installer functions #
domcox@599 544 #######################
domcox@599 545
domcox@599 546 # Mount and mkfs with progress.
domcox@599 547 prepare_install()
domcox@599 548 {
domcox@599 549 debug "Preparing target partition..."
domcox@612 550 # Target may be used
domcox@612 551 mount | grep -q $TGT_PARTITION && \
domcox@654 552 abort 5 `gettext $TGT_PARTITION": Partition in use"`
domcox@599 553 # Mount point can be already used.
domcox@599 554 if mount | grep -q $TARGET_ROOT; then
domcox@599 555 umount $TARGET_ROOT 2>>$LOG
domcox@599 556 fi
domcox@599 557 sleep 2
domcox@599 558
domcox@599 559 # Formatting root partition
domcox@599 560 case $TGT_FS in
domcox@599 561 "")
domcox@599 562 debug "The partition ($TGT_PARTITION) will be cleaned..."
domcox@599 563 # ROOT_FS=$(parted /dev/hda5 print -m | grep "^1:" | cut -d':' -f5) ;;
domcox@599 564 ROOT_FS=auto ;;
domcox@599 565 *)
domcox@654 566 msg `gettext "Formatting $TGT_PARTITION ($TGT_FS)"`
domcox@599 567 mkfs.$TGT_FS $TGT_PARTITION >>$LOG 2>>$LOG
domcox@599 568 ROOT_FS=$TGT_FS ;;
domcox@599 569 esac
domcox@599 570 sleep 2
domcox@599 571
domcox@599 572 # Formatting /home
domcox@599 573 if [ -n "$TGT_HOME" ]; then
domcox@599 574 case $TGT_HOME_FS in
domcox@599 575 "")
domcox@599 576 debug "The partition ($TGT_HOME) will be kept..." ;;
domcox@599 577 *)
domcox@654 578 msg `gettext "Formatting /home on $TGT_HOME ($TGT_HOME_FS)"`
domcox@599 579 mkfs.$TGT_HOME_FS -L "Home" $TGT_HOME >>$LOG 2>>$LOG ;;
domcox@599 580 esac
domcox@599 581 sleep 2
domcox@599 582 fi
domcox@599 583
domcox@599 584 # Mount target.
domcox@599 585 debug "Creating mount point: $TARGET_ROOT"
domcox@599 586 mkdir -p $TARGET_ROOT >>$LOG
domcox@599 587 sleep 2
domcox@599 588
domcox@599 589 mount -t $ROOT_FS $TGT_PARTITION $TARGET_ROOT >>$LOG 2>>$LOG
domcox@599 590 if [ $(mount | grep -c "mnt/target") == "0" ]; then
domcox@654 591 abort 5 `gettext "Can't mount $TGT_PARTITION"`
domcox@599 592 fi
domcox@599 593 }
domcox@599 594
domcox@599 595 # Get a clean target device (15%).
domcox@599 596 clean_target()
domcox@599 597 {
domcox@599 598 if [ -z "$TGT_FS" ]; then
domcox@599 599 # partition was not formatted
domcox@599 600 debug "Cleaning the root partition ($TGT_PARTITION)..."
domcox@599 601 # Keep /home in case of reinstall.
domcox@654 602 cd $TARGET_ROOT || abort 8 `gettext "Internal"`
domcox@599 603 for dir in *
domcox@599 604 do
domcox@599 605 case "$dir" in
domcox@599 606 home)
domcox@599 607 debug "keeping /home found on: $TGT_PARTITION"
domcox@599 608 mv home home.bak ;;
domcox@599 609 lost+found)
domcox@599 610 continue ;;
domcox@599 611 *)
domcox@599 612 debug "removing target: $dir"
domcox@599 613 rm -rf $dir 2>>$LOG ;;
domcox@599 614 esac
domcox@599 615 done
domcox@599 616 if [ -d mklost+found ]; then
domcox@599 617 mklost+found 2>>$LOG
domcox@599 618 fi
domcox@599 619 fi
domcox@599 620 sleep 2
domcox@599 621 }
domcox@599 622
domcox@599 623 # Kernel is renamed to standard vmlinuz-$VERSION.
domcox@599 624 install_kernel()
domcox@599 625 {
domcox@599 626 if [ -d /$TARGET_ROOT/lib/modules ]; then
domcox@599 627 KERNEL=$(ls /$TARGET_ROOT/lib/modules | tail -1)
domcox@599 628 KERNEL="vmlinuz-$KERNEL"
domcox@599 629 else
domcox@654 630 warning `gettext "Falling back to running kernel name.."`
domcox@599 631 KERNEL=vmlinuz-`uname -r`
domcox@599 632 fi
domcox@599 633 mkdir -p $TARGET_ROOT/boot
domcox@599 634 cp $SOURCE_ROOT/boot/bzImage $TARGET_ROOT/boot/$KERNEL
domcox@599 635 debug "install_kernel: $KERNEL"
domcox@599 636 sleep 2
domcox@599 637 }
domcox@599 638
domcox@599 639 # Copy isolinux r/w files (not syslinux, some files are read only).
domcox@599 640 copy_bootloaders()
domcox@599 641 {
domcox@599 642 if [ -d "$SOURCE/ROOT/boot/isolinux" ]; then
domcox@599 643 debug "Copy isolinux r/w files"
domcox@599 644 mkdir -p $TARGET_ROOT/boot/isolinux
domcox@599 645 cp -a $SOURCE_ROOT/boot/isolinux/*.cfg $TARGET_ROOT/boot/isolinux
domcox@599 646 cp -a $SOURCE_ROOT/boot/isolinux/*.kbd $TARGET_ROOT/boot/isolinux
domcox@599 647 cp -a $SOURCE_ROOT/boot/isolinux/*.txt $TARGET_ROOT/boot/isolinux
domcox@599 648 cp -a $SOURCE_ROOT/boot/isolinux/*.bin $TARGET_ROOT/boot/isolinux
domcox@599 649 cp -a $SOURCE_ROOT/boot/isolinux/*.msg $TARGET_ROOT/boot/isolinux
domcox@599 650 cp -a $SOURCE_ROOT/boot/isolinux/*.lss $TARGET_ROOT/boot/isolinux
domcox@599 651 cp -a $SOURCE_ROOT/boot/isolinux/*.c32 $TARGET_ROOT/boot/isolinux
domcox@599 652 fi
domcox@599 653 }
domcox@599 654
domcox@599 655 need_package()
domcox@599 656 {
domcox@599 657 [ -d /var/lib/tazpkg/installed/$1 ] || tazpkg get-install $1
domcox@599 658 }
domcox@599 659
domcox@599 660 # extract packed rootfs: squashfs or cromfs
domcox@599 661 extract_loramfs()
domcox@599 662 {
domcox@599 663 local i
domcox@599 664 for i in $(cpio -idvum 2> /dev/null); do
domcox@599 665 case "$i" in
domcox@599 666 rootfs*)
domcox@599 667 need_package squashfs
domcox@599 668 if ! unsquashfs $i ; then
domcox@599 669 need_package cromfs
domcox@599 670 unmkcromfs $i squashfs-root
domcox@599 671 fi
domcox@599 672 mv -f squashfs-root/* .
domcox@599 673 rmdir squashfs-root
domcox@599 674 rm -f $i
domcox@599 675 esac
domcox@599 676 done
domcox@599 677 }
domcox@599 678
domcox@599 679 # This is a loram rootfs.gz, skip loram bootstrap and extract
domcox@599 680 extract_first_loramfs()
domcox@599 681 {
domcox@599 682 (zcat $1 || unlzma -c $1) | cpio -i extractfs.cpio 2> /dev/null &&
domcox@599 683 ( cd / ; cpio -id ) < extractfs.cpio && rm -f extractfs.cpio
domcox@599 684 ofs=$(awk '/07070100/ { o+=index($0,"07070100"); printf "%d\n",o/4 ; exit } { o+=1+length() }' < $1)
domcox@599 685 dd if=$1 skip=$(($ofs / 1024)) bs=4k count=1 2> /dev/null | \
domcox@599 686 ( dd skip=$(($ofs % 1024)) bs=4 2> /dev/null ; \
domcox@599 687 dd if=$1 skip=$((1 + ($ofs / 1024) )) bs=4k ) | extract_loramfs
domcox@599 688 }
domcox@599 689
domcox@599 690 # Extract lzma'ed or gziped rootfs.
domcox@599 691 extract_rootfs()
domcox@599 692 {
domcox@599 693 local isloramfs
domcox@599 694 isloramfs=
domcox@654 695 cd $TARGET_ROOT || abort 8 `gettext "Internal"`
domcox@599 696 if [ -d $1/../fs/etc ]; then
domcox@599 697 # This is a tazlitobox loram (cdrom)
domcox@599 698 cp -a $1/../fs/. .
domcox@599 699 else
domcox@599 700 for i in $(ls $1/rootfs* | sort -r); do
domcox@599 701 if [ ! -d etc ]; then
domcox@599 702 if [ $( (zcat $i 2>/dev/null || lzma d $i -so) | wc -c) \
domcox@599 703 -lt $(stat -c %s $i) ]; then
domcox@599 704 # This is a tazlitobox loram (ram)
domcox@599 705 isloramfs=$i
domcox@599 706 extract_first_loramfs $i
domcox@599 707 continue
domcox@599 708 fi
domcox@599 709 fi
domcox@599 710 if [ -n "$isloramfs" ]; then
domcox@599 711 extract_loramfs < $i
domcox@599 712 continue
domcox@599 713 fi
domcox@599 714 ( zcat $i 2>/dev/null || lzma d $i -so || \
domcox@599 715 cat $i ) 2>>$LOG | cpio -idu
domcox@599 716 done 2>>$LOG > /dev/null
domcox@599 717 fi
domcox@599 718 cp /etc/keymap.conf etc
domcox@599 719 # unpack /usr (double check...)
domcox@599 720 if ls etc/tazlito | grep -q ".extract"; then
domcox@599 721 for i in etc/tazlito/*.extract; do
domcox@599 722 [ -f "$i" ] && . $i /media/cdrom
domcox@599 723 done
domcox@599 724 fi
domcox@599 725 }
domcox@599 726
domcox@599 727 # Pre configure freshly installed system (60 - 80%).
domcox@599 728 pre_config_system()
domcox@599 729 {
domcox@654 730 cd $TARGET_ROOT || abort 8 `gettext "Internal"`
domcox@599 731 # Restore backup of existing /home if exists.
domcox@599 732 # (created by prepare_target_dev)
domcox@599 733 if [ -d home.bak ]; then
domcox@599 734 debug "Restoring directory: /home..."
domcox@599 735 rm -rf home
domcox@599 736 mv home.bak home
domcox@599 737 sleep 1
domcox@599 738 fi
domcox@599 739 # Add root device to CHECK_FS in rcS.conf to check filesystem
domcox@599 740 # on each boot.
domcox@599 741 debug "Adding $TGT_PARTITION and CHECK_FS to file /etc/rcS.conf..."
domcox@599 742 sed -i s#'CHECK_FS=\"\"'#"CHECK_FS=\"$TGT_PARTITION\""# etc/rcS.conf
domcox@599 743 sleep 2
domcox@599 744 # Set hostname.
domcox@654 745 msg `gettext "Configuring host name: $TGT_HOSTNAME"`
domcox@599 746 echo $TGT_HOSTNAME > etc/hostname
domcox@599 747 }
domcox@599 748
domcox@599 749 # Set root passwd and create user after rootfs extraction.
domcox@599 750 users_settings()
domcox@599 751 {
domcox@599 752 cat > $TARGET_ROOT/users.sh << _EOF_
domcox@599 753 #!/bin/sh
domcox@654 754 echo "root:$TGT_ROOT_PWD" | chpasswd > /etc/null
domcox@599 755 adduser -D -H $TGT_USER
domcox@599 756
domcox@599 757 for grp in audio cdrom floppy dialout disk kmem tape tty video; do
domcox@599 758 if ! grep \$grp /etc/group | grep -q $TGT_USER ; then
domcox@599 759 grep -q \$grp /etc/group && addgroup $TGT_USER \$grp
domcox@599 760 fi
domcox@599 761 done
domcox@599 762
domcox@654 763 echo "$TGT_USER:$TGT_USER_PWD" | chpasswd > /etc/null
domcox@599 764 if [ ! -d /home/$TGT_USER ]; then
domcox@599 765 cp -a /etc/skel /home/$TGT_USER
domcox@612 766 [ -e /root/.xinitrc ] && cp /root/.xinitrc /home/$TGT_USER
domcox@599 767 mkdir -p /home/$TGT_USER/.config/slitaz
domcox@599 768 cp -a /etc/slitaz/applications.conf /home/$TGT_USER/.config/slitaz
domcox@654 769 # chmod $TGT_USER:user doesn't work with most ISO
domcox@654 770 if grep -q ^users: /etc/group; then
domcox@654 771 chown -R $TGT_USER:users /home/$TGT_USER
domcox@654 772 else
domcox@654 773 chown -R $TGT_USER:$TGT_USER /home/$TGT_USER
domcox@654 774 fi
domcox@599 775 # Path for user desktop files.
domcox@599 776 for i in /home/$TGT_USER/.local/share/applications/*.desktop
domcox@599 777 do
domcox@599 778 [ -e "$i" ] && sed -i s/"user_name"/"$TGT_USER"/g \$i
domcox@599 779 done
domcox@599 780 fi
domcox@599 781 # Slim default user.
domcox@599 782 if [ -f /etc/slim.conf ]; then
domcox@599 783 sed -i s/"default_user .*"/"default_user $TGT_USER"/ \
domcox@599 784 /etc/slim.conf
domcox@599 785 fi
domcox@599 786 _EOF_
domcox@599 787 chmod +x $TARGET_ROOT/users.sh
domcox@599 788 chroot $TARGET_ROOT ./users.sh
domcox@599 789 rm $TARGET_ROOT/users.sh
domcox@599 790 sleep 2
domcox@599 791 }
domcox@599 792
paul@608 793 # /home can be on a separate partition. If default user exists in /home
paul@608 794 # we remove default file created by users_settings().
domcox@599 795 home_config()
domcox@599 796 {
domcox@599 797 debug "home_config: $TGT_HOME"
domcox@654 798 cd $TARGET_ROOT || abort 8 `gettext "Internal"`
domcox@599 799 mv home/$TGT_USER tmp
domcox@599 800 mount $TGT_HOME home
domcox@599 801 if [ -d $TARGET_ROOT/home/$TGTUSER ]; then
domcox@599 802 rm -rf tmp/$TGT_USER
domcox@599 803 else
domcox@599 804 mv tmp/$TGT_USER home
domcox@599 805 fi
domcox@599 806 echo "$TGT_HOME /home ext3 defaults 0 2" \
domcox@599 807 >> etc/fstab
domcox@599 808 umount home
domcox@599 809 }
domcox@599 810
domcox@599 811 # Search for a Windows partition
domcox@599 812 win_partition()
domcox@599 813 {
domcox@654 814 # msg `gettext "Searching for Windows"`
domcox@599 815 if [ "$TGT_WINBOOT" == "auto" ];then
domcox@599 816 WINBOOT=$(fdisk -l | awk '
domcox@599 817 BEGIN{disk=-1, found=-1, winboot=""}
domcox@599 818 {
domcox@599 819 # Counting disk
domcox@599 820 if ($1=="Disk"){disk++, part=-1}
domcox@599 821 # Counting partition
domcox@599 822 if (substr($1,1,4)=="/dev"){part++}
domcox@599 823 # Read partition Id
domcox@599 824 if ($2=="*"){Id=$6} else {Id=$5}
domcox@599 825 # Detect Windows type
domcox@599 826 if (Id=="7" || Id=="b"){
domcox@599 827 if (found){
domcox@599 828 # record 1st Windows partition found
domcox@599 829 winboot=sprintf("hd%d,%d",disk,part),found++}
domcox@599 830 }
domcox@599 831 }
domcox@599 832 END{printf "%s", winboot}')
domcox@599 833 if [ -z "$WINBOOT" ]; then
domcox@654 834 warning `gettext "No windows partition found. Dual-boot disabled"`
domcox@599 835 TGT_WINBOOT=""
domcox@599 836 fi
domcox@599 837 fi
domcox@599 838 }
domcox@599 839
domcox@599 840 # Determine GRUB partition number and GRUB disk number.
domcox@599 841 grub_partition()
domcox@599 842 {
domcox@599 843 DISK_LETTER=${TGT_PARTITION#/dev/[h-s]d}
domcox@599 844 DISK_LETTER=${DISK_LETTER%[0-9]}
domcox@599 845 GRUB_PARTITION=$((${TGT_PARTITION#/dev/[h-s]d[a-z]}-1))
domcox@599 846 for disk in a b c d e f g h
domcox@599 847 do
domcox@599 848 nb=$(($nb+1))
domcox@599 849 if [ "$disk" = "$DISK_LETTER" ]; then
domcox@599 850 GRUB_DISK=$(($nb-1))
domcox@599 851 break
domcox@599 852 fi
domcox@599 853 done
domcox@599 854 GRUB_ROOT="(hd${GRUB_DISK},${GRUB_PARTITION})"
domcox@599 855 }
domcox@599 856
domcox@599 857 # Create grub conf
domcox@599 858 grub_config()
domcox@599 859 {
domcox@599 860 grub_partition
domcox@612 861 if [ "$TGT_GRUB" == "yes" ]; then
domcox@612 862 win_partition
domcox@612 863 fi
domcox@599 864 # Create the target GRUB configuration.
domcox@599 865 mkdir -p $TARGET_ROOT/boot/grub
domcox@599 866 . /etc/locale.conf
domcox@599 867 cat > $TARGET_ROOT/boot/grub/menu.lst << _EOF_
domcox@599 868 # /boot/grub/menu.lst: GRUB boot loader configuration.
domcox@599 869 #
domcox@599 870
domcox@599 871 # By default, boot the first entry.
domcox@599 872 default 0
domcox@599 873
domcox@599 874 # Boot automatically after 8 secs.
domcox@599 875 timeout 8
domcox@599 876
domcox@599 877 # Graphical splash image.
domcox@599 878 splashimage=/boot/grub/splash.xpm.gz
domcox@599 879
domcox@599 880 # Change the colors.
domcox@599 881 #color yellow/brown light-green/black
domcox@599 882
domcox@599 883 # For booting SliTaz from : $TGT_PARTITION
domcox@599 884 #
domcox@599 885 title SliTaz GNU/Linux (cooking) (Kernel $KERNEL)
domcox@599 886 root $GRUB_ROOT
domcox@599 887 kernel /boot/$KERNEL root=$TGT_PARTITION lang=$LANG
domcox@599 888
domcox@599 889 _EOF_
domcox@599 890 if [ -n "$TGT_WINBOOT" ]; then
domcox@654 891 msg `gettext "Enabling Windows dual-boot"`
domcox@612 892 cat >> $TARGET_ROOT/boot/grub/menu.lst << _EOF_
domcox@599 893 # For booting Windows :
domcox@599 894 #
domcox@599 895 title Microsoft Windows
domcox@599 896 rootnoverify ($WINBOOT)
domcox@599 897 chainloader +1
domcox@599 898
domcox@599 899 _EOF_
domcox@599 900 fi
domcox@599 901 # log
domcox@599 902 debug "grub_config: $TARGET_ROOT/boot/grub/menu.lst"
domcox@599 903 echo "--- menu.lst -------------" >>$LOG
domcox@599 904 cat $TARGET_ROOT/boot/grub/menu.lst >>$LOG
domcox@599 905 echo "--- menu.lst -------------" >>$LOG
domcox@599 906 sleep 2
domcox@599 907 }
domcox@599 908
domcox@599 909 # Files install, calling for functions or with cmds.
domcox@599 910 install_files()
domcox@599 911 {
domcox@654 912 msg `gettext "Installing SliTaz on $TGT_PARTITION"`
domcox@599 913 # saving pwd
domcox@599 914 local save_pwd=$(pwd)
domcox@599 915
domcox@599 916 debug "Cleaning the root partition if necessary..."
domcox@599 917 clean_target
domcox@599 918
domcox@599 919 debug "Extracting the root system..."
domcox@599 920 extract_rootfs $SOURCE_ROOT/boot
domcox@599 921
domcox@599 922 debug "Installing the kernel..."
domcox@599 923 install_kernel
domcox@599 924
domcox@599 925 debug "Copying the bootloader syslinux/isolinux..."
domcox@599 926 copy_bootloaders
domcox@599 927
domcox@599 928 debug "Preconfiguring the system..."
domcox@599 929 pre_config_system
domcox@599 930
domcox@654 931 msg `gettext "Configuring root and default $TGT_USER account..."`
domcox@599 932 users_settings
domcox@599 933
domcox@599 934 if [ "$TGT_HOME" != "" ]; then
domcox@654 935 msg `gettext "Configuring $TGT_HOME to be used as /home..."`
domcox@599 936 home_config
domcox@599 937 sleep 2
domcox@599 938 fi
domcox@599 939
domcox@599 940 debug "Creating configuration file for GRUB (menu.lst)..."
domcox@599 941 grub_config
domcox@599 942
domcox@599 943 debug "Files installation completed"
domcox@599 944 sleep 2
domcox@599 945 # restoring pwd
domcox@599 946 cd $save_pwd
domcox@599 947 }
domcox@599 948
domcox@599 949 # GRUB info with disk name used for grub-install.
domcox@599 950 grub_install()
domcox@599 951 {
domcox@599 952 if [ "$TGT_GRUB" == "yes" ]; then
domcox@599 953 TARGET_DISK=`echo $TGT_PARTITION | sed s/"[0-9]"/''/`
domcox@654 954 msg `gettext "Running grub-install on : $TARGET_DISK"`
domcox@599 955 grub-install --no-floppy \
domcox@599 956 --root-directory=$TARGET_ROOT $TARGET_DISK 2>>$LOG
domcox@599 957 debug "Grub installation done..."
domcox@599 958 else
domcox@599 959 debug "Grub not installed"
domcox@599 960 fi
domcox@599 961 }
domcox@599 962
domcox@599 963 # Copy log file, umount target and eject cdrom.
domcox@599 964 umount_devices()
domcox@599 965 {
domcox@599 966 # Umount target
domcox@599 967 if mount | grep -q $TARGET_ROOT; then
domcox@654 968 echo -e "`gettext \"Unmounting target ($TGT_PARTITION)...\"`"
domcox@599 969 umount $TARGET_ROOT 2>>$LOG
domcox@599 970 fi
domcox@599 971
domcox@599 972 # Umount source
domcox@599 973 if mount | grep -q $SOURCE_ROOT; then
domcox@654 974 echo -e "`gettext \"Unmounting $SOURCE_ROOT\"`"
domcox@599 975 umount $SOURCE_ROOT
domcox@599 976 fi
domcox@599 977
domcox@599 978 # Eject cd
domcox@599 979 if [ "$INST_TYPE" == "cdrom" ]; then
domcox@654 980 echo -e "`gettext \"Ejecting cdrom...\"`"
domcox@599 981 eject
domcox@599 982 fi
domcox@599 983 sleep 2
domcox@599 984 }
domcox@599 985
domcox@599 986 # End of installation.
domcox@599 987 end_of_install()
domcox@599 988 {
domcox@654 989 echo -e "`gettext \"Installation complete. You can now restart (reboot) \"`"
domcox@654 990 echo -e "`gettext \"from your SliTaz GNU/Linux system.\"`"
domcox@599 991 echo "=== Tazinst end at `date` ===" >>$LOG
domcox@612 992 # Log files
domcox@654 993 echo -e "`gettext \"Copying log files ($LOG)...\"`"
domcox@612 994 cp -a $LOG $TARGET_ROOT/var/log
domcox@612 995 sleep 2
domcox@612 996 # umount
domcox@599 997 umount_devices
domcox@599 998 }
domcox@599 999
domcox@599 1000 #####################
domcox@599 1001 # Upgrade functions #
domcox@599 1002 #####################
domcox@599 1003
domcox@599 1004 # Mount.
domcox@599 1005 prepare_upgrade()
domcox@599 1006 {
domcox@599 1007 debug "Preparing the target partition..."
domcox@612 1008 # Target may be used
domcox@612 1009 mount | grep -q $TGT_PARTITION && \
domcox@654 1010 abort 5 `gettext "$TGT_PARTITION": Partition in use"`
domcox@599 1011 # Mount point can be already used.
domcox@599 1012 if mount | grep -q $TARGET_ROOT; then
domcox@599 1013 umount $TARGET_ROOT 2>>$LOG
domcox@599 1014 fi
domcox@599 1015 mkdir -p $TARGET_ROOT && sleep 2
domcox@599 1016 # Mount target.
domcox@599 1017 mount $TGT_PARTITION $TARGET_ROOT >>$LOG 2>>$LOG
domcox@599 1018 if [ $(mount | grep -c "mnt/target") == "0" ]; then
domcox@654 1019 abort 5 `gettext "Can't mount $TGT_PARTITION"`
domcox@599 1020 fi
domcox@599 1021 }
domcox@599 1022
domcox@599 1023 # Check for a valid SliTaz
domcox@599 1024 check_release()
domcox@599 1025 {
domcox@599 1026 if [ -f $TARGET_ROOT/etc/slitaz-release ]; then
domcox@599 1027 release=`cat $TARGET_ROOT/etc/slitaz-release`
domcox@654 1028 msg `gettext "Preparing upgrade of SliTaz release: $release"`
domcox@599 1029 else
domcox@654 1030 abort 6 `gettext "The partition '$TGT_PARTITION' doesn't appear to contain \
domcox@654 1031 a SliTaz system, the file: /etc/slitaz-release doesn't exist."`
domcox@599 1032 fi && sleep 2
domcox@599 1033 }
domcox@599 1034
domcox@599 1035 # Backup target packages list.
domcox@599 1036 backup_files()
domcox@599 1037 {
domcox@654 1038 cd $TARGET_ROOT || abort 8 `gettext "Internal"`
domcox@599 1039 ls -1 var/lib/tazpkg/installed > home/packages-selection.list
domcox@599 1040 for dir in *
domcox@599 1041 do
domcox@599 1042 case "$dir" in
domcox@599 1043 boot)
domcox@599 1044 rm -rf boot/vmlinuz-* ;;
domcox@599 1045 home)
domcox@599 1046 mv home home.bak
domcox@599 1047 debug "keeping /home found on: $TGT_PARTITION" ;;
domcox@599 1048 etc)
domcox@599 1049 tar czf etc.tar.gz etc
domcox@599 1050 mv etc etc.bak
domcox@599 1051 debug "keeping /etc found on: $TGT_PARTITION" ;;
domcox@599 1052 var)
domcox@599 1053 if [ -d var/www ]; then
domcox@599 1054 mv var/www www.bak
domcox@599 1055 debug "keeping /var/www found on: $TGT_PARTITION"
domcox@599 1056 fi
domcox@599 1057 rm -rf var 2>>$LOG ;;
domcox@599 1058 lost+found)
domcox@599 1059 continue ;;
domcox@599 1060 *)
domcox@599 1061 debug "removing target: $dir"
domcox@599 1062 rm -rf $dir 2>>$LOG ;;
domcox@599 1063 esac
domcox@599 1064 done
domcox@599 1065 if [ -d mklost+found ]; then
domcox@599 1066 mklost+found 2>>$LOG
domcox@599 1067 fi
domcox@599 1068 sleep 2
domcox@599 1069 }
domcox@599 1070
domcox@599 1071 # Restore backups.
domcox@599 1072 restore_files()
domcox@599 1073 {
domcox@599 1074 rm -rf $TARGET_ROOT/home
domcox@599 1075 mv $TARGET_ROOT/home.bak $TARGET_ROOT/home
domcox@599 1076 rm -rf $TARGET_ROOT/etc
domcox@599 1077 mv $TARGET_ROOT/etc.bak $TARGET_ROOT/etc
domcox@599 1078 if [ -d $TARGET_ROOT/www.bak ]; then
domcox@599 1079 rm -rf $TARGET_ROOT/var/www
domcox@599 1080 mv $TARGET_ROOT/www.bak $TARGET_ROOT/var/www
domcox@599 1081 fi
domcox@599 1082 debug "backups restored: `date`"
domcox@599 1083
domcox@599 1084 # /var/lib/slitaz-installer
domcox@599 1085 mkdir -p $TARGET_ROOT/var/lib/tazinst
domcox@599 1086 mv $TARGET_ROOT/etc.tar.gz $TARGET_ROOT/var/lib/tazinst
domcox@599 1087 mv $TARGET_ROOT/home/packages-selection.list $TARGET_ROOT/var/lib/tazinst
domcox@599 1088 }
domcox@599 1089
domcox@599 1090 # Added pkgs
domcox@599 1091 install_pkgs()
domcox@599 1092 {
domcox@599 1093 # Check if the pkg is on the mirror.
domcox@599 1094 debug "Checking the availability of packages..."
domcox@599 1095 touch packages-to-install.list
domcox@599 1096 packages=0
domcox@599 1097 diff=`cat packages-selection.diff | sort`
domcox@599 1098 for pkg in $diff
domcox@599 1099 do
domcox@599 1100 if grep -q ^$pkg-[0-9] /var/lib/tazpkg/packages.list; then
domcox@599 1101 packages=$(($packages+1))
domcox@599 1102 echo "$pkg" >> packages-to-install.list
domcox@599 1103 fi
domcox@599 1104 done
domcox@599 1105
domcox@599 1106 # Calculate the percent for one package and install.
domcox@599 1107 debug "Installing any packages..."
domcox@599 1108 sleep 2
domcox@599 1109 if [ "$packages" == "0" ]; then
domcox@599 1110 debug "packages to install: 0"
domcox@599 1111 else
domcox@599 1112 onepkg=$((48/$packages))
domcox@599 1113 pct=50
domcox@599 1114 # Get-install all missing pkgs.
domcox@599 1115 for pkg in `cat packages-to-install.list`
domcox@599 1116 do
domcox@599 1117 pct=$(($pct+$onepkg))
domcox@599 1118 echo $pct
domcox@599 1119 debug "Installing: $pkg..."
domcox@599 1120 # Get install package and answer yes in case of dependencies.
domcox@599 1121 pkgname=`grep ^$pkg /var/lib/tazpkg/packages.list`
domcox@599 1122 tazpkg get $pkg >/dev/null 2>/dev/null
domcox@599 1123 yes "" | tazpkg install $pkgname.tazpkg --root=$TARGET_ROOT >/dev/null 2>/dev/null
domcox@599 1124 rm -f $pkgname.tazpkg
domcox@599 1125 done
domcox@599 1126 fi
domcox@599 1127 echo 100
domcox@599 1128 debug "Installation of packages complete..."
domcox@599 1129 sleep 2
domcox@599 1130 }
domcox@599 1131
domcox@599 1132 # Search for added pkgs
domcox@599 1133 update_pkgs()
domcox@599 1134 {
domcox@654 1135 cd $TARGET_ROOT/var/lib/tazinst || abort 8 `gettext "Internal"`
domcox@599 1136 # LiveCD packages list.
domcox@599 1137 debug "Creating package lists..."
domcox@599 1138 ls -1 $TARGET_ROOT/var/lib/tazpkg/installed > packages-source.list || exit 1
domcox@599 1139 debug "packages-source.list: done"
domcox@599 1140 # Diff
domcox@599 1141 diff packages-source.list packages-selection.list | \
domcox@599 1142 grep ^+[a-z] | sed s/^+// > packages-selection.diff
domcox@599 1143 debug "packages-selection.diff: done"
domcox@599 1144 # Get mirror list.
domcox@599 1145 tazpkg recharge >>$LOG 2>>$LOG
domcox@599 1146 if [ -f /var/lib/tazpkg/packages.list ]; then
domcox@599 1147 install_pkgs
domcox@599 1148 else
domcox@599 1149 touch packages-to-install.list
domcox@654 1150 warning `gettext "The list of available packages on the mirror could not be \
domcox@599 1151 downloaded. No missing packages will be reinstalled now, but \
domcox@599 1152 you can do so later by looking at the following list: \
domcox@654 1153 /var/lib/tazinst/packages-selection.diff"`
domcox@599 1154 fi
domcox@599 1155 sleep 2
domcox@599 1156 }
domcox@599 1157
domcox@599 1158 # Update grub conf
domcox@599 1159 grub_update()
domcox@599 1160 {
domcox@599 1161 # Backup and create a new grub menu.lst.
domcox@599 1162 if [ "$TGT_GRUB" == "yes" ]; then
domcox@654 1163 msg `gettext "Grub update"`
domcox@599 1164 mv $TARGET_ROOT/boot/grub/menu.lst \
domcox@599 1165 $TARGET_ROOT/boot/grub/menu.lst.bak 2>/dev/null
domcox@599 1166 grub_config
domcox@599 1167 fi
domcox@599 1168 }
domcox@599 1169
domcox@599 1170 # Prepare the partition to upgrade, backup, install, restore configs
domcox@599 1171 # and reinstall pkgs.
domcox@599 1172 upgrade_files()
domcox@599 1173 {
domcox@599 1174 # saving pwd
domcox@599 1175 local save_pwd=$(pwd)
domcox@654 1176 cd $TARGET_ROOT || abort 8 `gettext "Internal"`
domcox@599 1177
domcox@599 1178 debug "Searching for /etc/slitaz-release"
domcox@599 1179 check_release
domcox@599 1180
domcox@654 1181 msg `gettext "Backup /etc, /home and the packages list..."`
domcox@599 1182 backup_files
domcox@599 1183
domcox@654 1184 msg `gettext "Upgrading SliTaz on $TGT_PARTITION"`
domcox@599 1185
domcox@599 1186 debug "Copying the bootloader syslinux/isolinux..."
domcox@599 1187 copy_bootloaders
domcox@599 1188
domcox@599 1189 debug "Extracting the root system..."
domcox@599 1190 extract_rootfs $SOURCE_ROOT/boot
domcox@599 1191
domcox@654 1192 msg `gettext "Restoring configuration files..."`
domcox@599 1193 restore_files
domcox@599 1194
domcox@599 1195 debug "Installing the kernel..."
domcox@599 1196 install_kernel
domcox@599 1197
domcox@654 1198 msg `gettext "Upgrading added packages..."`
domcox@599 1199 update_pkgs
domcox@599 1200
domcox@599 1201 # restoring pwd
domcox@599 1202 cd $save_pwd
domcox@599 1203 }
domcox@599 1204
domcox@599 1205 # End of system upgrade.
domcox@599 1206 end_of_upgrade()
domcox@599 1207 {
domcox@599 1208 pkgscd=`cat $TARGET_ROOT/var/lib/tazinst/packages-source.list | wc -l`
domcox@599 1209 pkginst=`cat $TARGET_ROOT/var/lib/tazinst/packages-to-install.list | wc -l`
domcox@654 1210 echo -e "`gettext \"Upgrade finished. You can now restart (reboot) from your SliTaz GNU/Linux system.\"`"
domcox@654 1211 echo -e "`gettext \"Packages on the cdrom :\"`" $pkgscd
domcox@654 1212 echo -e "`gettext \"Packages installed from the mirror :\"`" $pkginst
domcox@599 1213 echo "=== Tazinst end at `date` ===" >>$LOG
domcox@599 1214 umount_devices
domcox@599 1215 }
domcox@599 1216
domcox@599 1217 ######################
domcox@599 1218 # Installer sequence #
domcox@599 1219 ######################
domcox@599 1220
domcox@599 1221 case $1 in
domcox@599 1222 install)
domcox@599 1223 INST_ACTION=install
domcox@599 1224 check_root
domcox@599 1225 init $@
domcox@599 1226 read_configuration_file $2
domcox@599 1227 check_vars
domcox@599 1228 check_source
domcox@599 1229 prepare_install
domcox@599 1230 install_files
domcox@599 1231 grub_install
domcox@599 1232 end_of_install ;;
domcox@599 1233 upgrade)
domcox@599 1234 INST_ACTION=upgrade
domcox@599 1235 check_root
domcox@599 1236 init $@
domcox@599 1237 read_configuration_file $2
domcox@599 1238 check_vars
domcox@599 1239 check_source
domcox@599 1240 prepare_upgrade
domcox@599 1241 upgrade_files
domcox@599 1242 grub_update
domcox@599 1243 end_of_upgrade ;;
domcox@599 1244 config)
domcox@599 1245 gen_config $2 ;;
domcox@599 1246 cli)
domcox@599 1247 check_root
domcox@599 1248 init $@
domcox@599 1249 check_cli_options $@
domcox@599 1250 check_vars
domcox@599 1251 check_source
domcox@599 1252 summary
domcox@599 1253 case $INST_ACTION in
domcox@599 1254 upgrade)
domcox@599 1255 prepare_upgrade
domcox@599 1256 upgrade_files
domcox@599 1257 grub_update
domcox@599 1258 end_of_upgrade ;;
domcox@599 1259 install)
domcox@599 1260 prepare_install
domcox@599 1261 install_files
domcox@599 1262 grub_install
domcox@599 1263 end_of_install ;;
domcox@599 1264 esac ;;
domcox@599 1265 usage|*)
domcox@599 1266 usage ;;
domcox@599 1267 esac
domcox@599 1268
domcox@599 1269 exit 0