Statistics
| Branch: | Revision:

root / import @ 6f0a1fef

History | View | Annotate | Download (2 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
if [ "${IMAGE_DEBUG}" = "1" ] ; then
25
    set -x
26
fi
27

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

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

    
48
mkfs_disk0 $boot_dev $root_dev $swap_dev
49

    
50
TARGET=`mktemp -d` || exit 1
51
CLEANUP+=("rmdir $TARGET")
52

    
53
mount_disk0 $TARGET $root_dev $boot_dev
54

    
55
( cd $TARGET; restore -r -y -f - )
56
rm -f $TARGET/etc/udev/rules.d/z*_persistent-net.rules
57

    
58
if [ -n "$CUSTOMIZE_DIR" -a -d "$CUSTOMIZE_DIR" -a -x "$CUSTOMIZE_DIR/grub" ] ; then
59
    TARGET=$TARGET
60
    BLOCKDEV=$blockdev
61
    ROOT_DEV=$root_dev
62
    BOOT_DEV=$boot_dev
63
    export TARGET SUITE BLOCKDEV ROOT_DEV BOOT_DEV
64
    # Install grub since we're not deploying via qemu-img
65
    ${CUSTOMIZE_DIR}/grub
66
fi
67

    
68
# execute cleanups
69
cleanup
70
trap - EXIT
71

    
72
exit 0