supermin: Fix code which gets list of kernels.
[febootstrap.git] / febootstrap-supermin-helper.sh
1 #!/bin/bash -
2 # febootstrap-supermin-helper
3 # (C) Copyright 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 # Written by Richard W.M. Jones <rjones@redhat.com>
20
21 unset CDPATH
22
23 TEMP=`getopt \
24         -o '' \
25         --long help,kmods: \
26         -n febootstrap-supermin-helper -- "$@"`
27 if [ $? != 0 ]; then
28     echo "febootstrap-supermin-helper: problem parsing the command line arguments"
29     exit 1
30 fi
31 eval set -- "$TEMP"
32
33 usage ()
34 {
35     echo "Usage: febootstrap-supermin-helper supermin.img hostfiles.txt kernel initrd"
36     echo "Please read febootstrap-supermin-helper(8) man page for more information."
37 }
38
39 kmods=""
40
41 while true; do
42     case "$1" in
43         --help)
44             usage
45             exit 0;;
46         --kmods)
47             kmods=$2
48             shift 2;;
49         --)
50             shift
51             break;;
52         *)
53             echo "Internal error!"
54             exit 1;;
55     esac
56 done
57
58 if [ $# -ne 4 ]; then
59     usage
60     exit 1
61 fi
62
63 set -e
64
65 # Input files.
66 supermin="$1"
67 hostfiles="$2"
68
69 # Output files.
70 kernel="$3"
71 initrd="$4"
72
73 rm -f "$kernel" "$initrd"
74
75 # Kernel:
76 # Look for the most recent kernel named vmlinuz-*.<arch>* which has a
77 # corresponding directory in /lib/modules/. If the architecture is x86, look
78 # for any x86 kernel.
79 #
80 # RHEL 5 didn't append the arch to the kernel name, so look for kernels
81 # without arch second.
82
83 arch=$(echo "@host_cpu@" | sed 's/^i.86$/i?86/')
84 kernels=$(
85     ls -1dvr /boot/vmlinuz-*.$arch* 2>/dev/null | grep -v xen ||: ;
86     ls -1dvr /boot/vmlinuz-* 2>/dev/null | grep -v xen
87 )
88
89 if [ -z "$kernels" ]; then
90     echo "$0: failed to find a suitable kernel in /boot directory" >&2
91     exit 1
92 fi
93
94 for f in $kernels; do
95     b=$(basename "$f")
96     b=$(echo "$b" | sed 's,vmlinuz-,,')
97     modpath="/lib/modules/$b"
98     if [ -d "$modpath" ]; then
99         ln -sf "$f" "$kernel"
100         break
101     fi
102     modpath=
103 done
104
105 if [ -z "$modpath" ]; then
106     echo "$0: failed to find a suitable kernel" >&2
107     exit 1
108 fi
109
110 # The initrd consists of these components:
111 # (1) The base skeleton appliance that we constructed at build time.
112 #     format = plain cpio (could be compressed cpio)
113 # (2) The modules from modpath which are on the module whitelist.
114 #     format = plain cpio
115 # (3) The host files which match wildcards in hostfiles.
116 #     format = plain cpio
117
118 cp "$supermin" "$initrd" ;# (1)
119
120 # Kernel modules (2).
121
122 if [ -n "$kmods" ]; then
123     exec 5<"$kmods"
124     whitelist=
125     while read kmod 0<&5; do
126         whitelist="$whitelist -o -name $kmod"
127     done
128     exec 5<&-
129 else
130     whitelist="-o -name *.ko"
131 fi
132
133 find "$modpath" \( -not -name '*.ko' $whitelist \) -a -print0 |
134   cpio --quiet -o -0 -H newc >> "$initrd"
135
136 # Host files (3).
137
138 hostfiles=$(readlink -f "$hostfiles")
139 (cd / &&
140     ls -1df $(cat "$hostfiles") 2>/dev/null |
141     cpio -C 65536 --quiet -o -H newc ) >> "$initrd"