Ignore:
Timestamp:
Jan 11, 2008, 3:28:40 PM (16 years ago)
Author:
Bruno Cornec
Message:

remove fdisk error messages on ia64 that end up on screen during restore - such as GPT not supported ...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi/aux-tools/sbin/calc-disk-size

    r911 r1857  
    66CalcDiskSize() {
    77    local res cylinders sectorsize disksize i curr stub out
    8     res=`parted2fdisk -l $1 2> /dev/null | grep -i "cylinders of"`
     8    res=`parted2fdisk -l $1 2>/dev/null | grep -i "cylinders of"`
    99    cylinders=`echo "$res" | cut -d' ' -f5`
    1010    sectorsize=`echo "$res" | cut -d' ' -f7`
    11     cylindermod=`parted2fdisk -l $1 2> /dev/null | grep -i $1:`; # note colon at end to make sure it's not the /dev/sda# partition info
     11    cylindermod=`parted2fdisk -l $1 2>/dev/null | grep -i $1:`; # note colon at end to make sure it's not the /dev/sda# partition info
    1212    cylnum=`echo "$cylindermod" | cut -d' ' -f7`
    1313    predisksize=$(($cylinders*$sectorsize/1024))
Note: See TracChangeset for help on using the changeset viewer.