Fix non-srcdir builds: Files generated by configure should be in the tarball.
[libguestfs.git] / appliance / libguestfs-supermin-helper.in
1 #!/bin/bash -
2 # @configure_input@
3 # Copyright (C) 2009 Red Hat Inc.
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,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU 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., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 # Helper script which constructs the supermin appliance at runtime.
20
21 unset CDPATH
22
23 set -e
24
25 # Source directory containing the supermin input files.
26 sourcedir=$(cd "$1" > /dev/null; pwd)
27
28 # Output files.
29 kernel="$2"
30 initrd="$3"
31
32 # Kernel:
33 # Look for the most recent kernel named vmlinuz-*.<arch>* which has a
34 # corresponding directory in /lib/modules/. If the architecture is x86, look
35 # for any x86 kernel.
36 #
37 # RHEL 5 didn't append the arch to the kernel name, so look for kernels
38 # without arch second.
39
40 arch=$(echo "@host_cpu@" | sed 's/^i.86$/i?86/')
41 kernels=$(ls -1vr /boot/vmlinuz-*.$arch* 2>/dev/null | grep -v xen; ls -1vr /boot/vmlinuz-* 2>/dev/null | grep -v xen)
42 for f in $kernels; do
43     b=$(basename "$f")
44     b=$(echo "$b" | sed 's,vmlinuz-,,')
45     modpath="/lib/modules/$b"
46     if [ -d "$modpath" ]; then
47         ln -sf "$f" "$kernel"
48         break
49     fi
50     modpath=
51 done
52
53 if [ -z "$modpath" ]; then
54     echo "$0: failed to find a suitable kernel" >&2
55     exit 1
56 fi
57
58 # The initrd consists of these components:
59 # (1) The base skeleton appliance that we constructed at build time.
60 #     name = initramfs.@REPO@.@host_cpu@.supermin.img
61 #     format = compressed cpio
62 # (2) The modules from modpath which are on the module whitelist.
63 #     format = plain cpio
64 # (3) The host files which match wildcards in *.supermin.hostfiles.
65 #     format = plain cpio
66
67 cp "$sourcedir"/initramfs.@REPO@.@host_cpu@.supermin.img "$initrd"
68
69 # Kernel modules (2).
70 exec 5<"$sourcedir"/kmod.whitelist
71 whitelist=
72 while read kmod 0<&5; do
73     whitelist="$whitelist -o -name $kmod"
74 done
75 exec 5<&-
76
77 find "$modpath" \( -not -name '*.ko' $whitelist \) -a -print0 |
78   cpio --quiet -o -0 -H newc >> "$initrd"
79
80 # Host files (3).
81
82 (cd / && \
83   ls -1df $(
84       cat "$sourcedir"/initramfs.@REPO@.@host_cpu@.supermin.hostfiles
85     ) 2>/dev/null |
86   cpio --quiet -o -H newc ) >> "$initrd"