slitaz-tools annotate installer/tazinst @ rev 762

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