Ignore:
Timestamp:
07/30/09 08:35:04 (3 years ago)
Author:
tschmitt
Message:
  • Paket: registry-tools wieder aus Build-Depends entfernt.
  • Kernel: Aktuelle Version 2.6.30.
  • Linbofs:
    • kleiner Fix in patch_regeistry.
    • Busybox: Deaktualisiert zu Version 1.13.4 (mit 1.14.2 war die Algebra-Unterstützung in linbo_cmd fehlerhaft).
    • linbo_cmd: Dateisystemermittlung in restore() repariert (automatische Formatierung funktionierte nicht).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/linuxmuster-linbo/branches/testing/linbo/linbo_cmd.sh

    r510 r513  
    969969 local disk="${2%%[1-9]*}" 
    970970 local force="$3" 
     971 local fstype="$(fstype_startconf "$2")" 
    971972 echo -n "Entpacke: $1 -> $2 " 
    972973 case "$1" in 
     
    975976    check_status "$2" "$1" || force="force" 
    976977   fi 
    977    if [ "$(fstype "$2")" = "ntfs" -a "$force" = "force" ]; then 
     978   if [ "$fstype" = "ntfs" -a "$force" = "force" ]; then 
    978979    echo "[Komplette Partition]..." 
    979980    cp_cloop "$1" "$2" ; RC="$?" 
    980981    # set flag for complete cloop restore 
    981982    touch /tmp/.cloop 
    982    elif [ "$type" = "vfat" -a "$force" = "force" ]; then 
     983   elif [ "$fstype" = "vfat" -a "$force" = "force" ]; then 
    983984    echo "[Komplette Partition]..." 
    984985    cp_cloop "$1" "$2" ; RC="$?" 
     
    986987    echo "[Datei-Sync]..." 
    987988    if [ "$force" = "force" ]; then 
    988       format "$2" "$type" || return 1 
     989      format "$2" "$fstype" || return 1 
    989990    fi 
    990991    sync_cloop "$1" "$2" ; RC="$?" 
Note: See TracChangeset for help on using the changeset viewer.