]> rtime.felk.cvut.cz Git - jailhouse.git/blob - tools/jailhouse-config-collect.tmpl
tools: config-create: Initial support for non-Intel boards
[jailhouse.git] / tools / jailhouse-config-collect.tmpl
1 #!/bin/sh
2 #
3 # Jailhouse, a Linux-based partitioning hypervisor
4 #
5 # Copyright (c) Siemens AG, 2014
6 #
7 # This work is licensed under the terms of the GNU GPL, version 2.  See
8 # the COPYING file in the top-level directory.
9 #
10 # This script will collect information needed to generate a Jailhouse
11 # configuration for hypervisor and root cell (Linux).
12 #
13 # Run it like that:
14 #  $ jailhouse-config-collect.sh mytarget.tar
15 #
16 # Copying files and directories from /sys and /proc is surprisingly hard
17 # it would be nice to use just one tool together with the list of files.
18 # The main problem is that stat does not report the correct file sizes. In
19 # procfs files seem to have a size of 0 while in sysfs they often appear
20 # bigger than they really are.
21 # Archivers like tar/cpio etc. can not be used for procfs and sysfs.
22 # This script first gets a temporary copy of all the files we want. After
23 # copying the files can be archived with tar.
24
25 set -e
26
27 if test "x$( id -u )" != "x0"; then
28         echo "Please run as root" 1>&2
29         exit 1
30 fi
31
32 if test -z "$1"; then
33         echo "Usage: $0 mytarget.tar" 1>&2
34         exit 1
35 fi
36
37 filelist="${filelist}"
38 filelist_opt="${filelist_opt}"
39
40 tmpdir=/tmp/jailhouse-config-collect.$$
41
42 rm -rf $tmpdir
43 mkdir $tmpdir
44
45 copy_file()
46 {
47         dstdir=$tmpdir/$(dirname $1)
48         if [ ! -d $dstdir ]; then
49                 mkdir -p $dstdir
50         fi
51         cp -p $1 $tmpdir/$1
52 }
53
54 # copy all the files we need to a temporary directory first
55 for f in $filelist; do
56         copy_file $f
57 done
58 for f in $filelist_opt; do
59         if [ -f $f ]; then
60                 copy_file $f
61         fi
62 done
63
64 # now archive it and remove temporary copy
65 tar -C $tmpdir -cf $1 .
66 rm -rf $tmpdir
67
68 exit 0