]> rtime.felk.cvut.cz Git - jailhouse.git/blob - tools/jailhouse-config-collect.tmpl
tools: config-create: Differentiate between optional and mandatory files during collect
[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 -z "$1"; then
28         echo "Usage: $0 mytarget.tar" 1>&2
29         exit 1
30 fi
31
32 filelist="${filelist}"
33 filelist_opt="${filelist_opt}"
34
35 tmpdir=/tmp/jailhouse-config-collect.$$
36
37 rm -rf $tmpdir
38 mkdir $tmpdir
39
40 copy_file()
41 {
42         dstdir=$tmpdir/$(dirname $1)
43         if [ ! -d $dstdir ]; then
44                 mkdir -p $dstdir
45         fi
46         cp -p $1 $tmpdir/$1
47 }
48
49 # copy all the files we need to a temporary directory first
50 for f in $filelist; do
51         copy_file $f
52 done
53 for f in $filelist_opt; do
54         if [ -f $f ]; then
55                 copy_file $f
56         fi
57 done
58
59 # now archive it and remove temporary copy
60 tar -C $tmpdir -cf $1 .
61 rm -rf $tmpdir
62
63 exit 0