Statistics
| Branch: | Revision:

root / export @ 8d72e8d8

History | View | Annotate | Download (2.1 kB)

1
#!/bin/bash
2

    
3
# Copyright (C) 2010 Oregon State University
4
#
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
9
#
10
# This program is distributed in the hope that it will be useful, but
11
# WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
# General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18
# 02110-1301, USA.
19

    
20
set -e
21

    
22
. common.sh
23

    
24
debug set -x
25

    
26
# If the target device is not a real block device we'll first losetup it.
27
# This is needed for file disks.
28
if [ ! -b $blockdev ]; then
29
    ORIGINAL_BLOCKDEV=$blockdev
30
    blockdev=$($LOSETUP -sf $blockdev)
31
    CLEANUP+=("$LOSETUP -d $blockdev")
32
fi
33

    
34
filesystem_base_dev=$(map_disk0 $blockdev)
35
if [ "${SWAP}" = "yes" ] ; then
36
    boot_dev="${filesystem_base_dev}-1"
37
    swap_dev="${filesystem_base_dev}-2"
38
    root_dev="${filesystem_base_dev}-3"
39
else
40
    boot_dev="${filesystem_base_dev}-1"
41
    root_dev="${filesystem_base_dev}-2"
42
fi
43
CLEANUP+=("unmap_disk0 $blockdev")
44

    
45
vol_type_boot="$($VOL_TYPE $boot_dev)"
46
vol_type_root="$($VOL_TYPE $root_dev)"
47

    
48
for fs in boot root ; do
49
    # use indirect reference to make the variables dynamic
50
    dev="$(eval "echo \${$(echo ${fs}_dev)"})"
51
    vol_type="$(eval echo \$vol_type_${fs})"
52
    if [ -z "$vol_type" ] ; then
53
        log_error "Unable to find ${fs} filesystem type at ${dev}"
54
        exit 1
55
    fi
56
    if [ "$vol_type" = "ext3" -o "$vol_type" = "ext2" \
57
            -o "$vol_type" = "ext4" ] ; then
58
        $DUMP -0 -q -z9 -f ${TARGET}/${fs}.dump $dev
59
        CLEANUP+=("rm ${TARGET}/${fs}.dump")
60
    else
61
        log_error "${fs} is not a supported filesystem. Please use ext{2,3,4}"
62
        exit 1
63
    fi
64
done
65

    
66
( cd $TARGET ; tar -cf - . )
67

    
68
# execute cleanups
69
cleanup
70
trap - EXIT
71

    
72
exit 0