abs_top_builddir doesn't exist in old RHEL 5 automake, use top_builddir instead.
[libguestfs.git] / make-initramfs.sh.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 # This is called from the Makefile to build the initramfs.
20
21 set -e
22
23 unset CDPATH
24
25 modules="
26 -i augeas-libs
27 -i bash
28 -i binutils
29 -i coreutils
30 -i dosfstools
31 -i file
32 -i grub
33 -i iputils
34 -i kernel
35 -i lvm2
36 -i MAKEDEV
37 -i module-init-tools
38 -i net-tools
39 -i ntfs-3g
40 -i ntfsprogs
41 -i procps
42 -i strace
43 -i util-linux-ng
44 -i zerofree
45 "
46
47 # Decide on names for the final output.  These have to match Makefile.am.
48 output=initramfs.@REPO@.@host_cpu@.img
49 koutput=vmlinuz.@REPO@.@host_cpu@
50 rm -f $output
51 rm -f $koutput
52
53 # Create the basic initramfs.
54 @FEBOOTSTRAP@ $modules -u @UPDATES@ @REPO@ initramfs @MIRROR@
55
56 # /sysroot is where the guest root filesystem will be mounted.
57 @FEBOOTSTRAP_RUN@ initramfs -- mkdir -p --mode=0777 /sysroot
58
59 # Create /tmp if it is missing.
60 @FEBOOTSTRAP_RUN@ initramfs -- mkdir -p --mode=0777 /tmp
61
62 # Nuke some stuff.  The kernel pulls mkinitrd and plymouth which pulls in
63 # all of Python.  Sheez.
64 (cd initramfs && find -name '*plymouth*' -print0) |
65   xargs -0 @FEBOOTSTRAP_RUN@ initramfs -- rm -rf
66 (cd initramfs && find -name '*python*' -print0) |
67   xargs -0 @FEBOOTSTRAP_RUN@ initramfs -- rm -rf
68
69 # In Fedora >= 11, it pulls in all of Perl from somewhere.  Nuke from orbit.
70 @FEBOOTSTRAP_RUN@ initramfs -- rm -rf /usr/lib/perl5 /usr/lib64/perl5
71
72 # Anaconda?  JPEG images?
73 @FEBOOTSTRAP_RUN@ initramfs -- rm -rf /usr/lib/anaconda-runtime
74
75 # Modules take up nearly half of the image.  It's a rough guess that
76 # we don't need many drivers (which take up most of the space).
77 (cd initramfs && find lib/modules/*/kernel \
78   -name '*.ko' \
79   -a ! -name 'virtio.ko' \
80   -a ! -name 'virtio_net.ko' \
81   -a ! -name 'virtio_pci.ko' \
82   -a ! -name 'virtio_ring.ko' \
83   -a ! -name 'ext2.ko' \
84   -a ! -name 'ext3.ko' \
85   -a ! -name 'ext4*.ko' \
86   -a ! -name 'crc16.ko' \
87   -a ! -name 'jbd.ko' \
88   -a ! -name 'jbd2.ko' \
89   -a ! -name 'fuse.ko' \
90   -a ! -name 'vfat.ko' \
91   -a ! -name 'fat.ko' \
92   -a ! -name 'udf.ko' \
93   -a ! -name 'crc_itu_t.ko' \
94   -a ! -name 'nls_utf8.ko' \
95   -a ! -name 'dm-*.ko' \
96   -a -print0 ) |
97   xargs -0 @FEBOOTSTRAP_RUN@ initramfs -- rm
98
99 # Pull the kernel out into the current directory.  We don't want it in
100 # the initramfs image.
101 cp initramfs/boot/vmlinuz* $koutput
102 @FEBOOTSTRAP_RUN@ initramfs -- rm -rf boot
103
104 # Minimize the image.
105 @FEBOOTSTRAP_MINIMIZE@ initramfs
106
107 # Add some missing configuration files.
108 if [ ! -f initramfs/etc/hosts ]; then
109     cat > hosts.new <<'__EOF__'
110 127.0.0.1 guestfs localhost.localdomain localhost
111 ::1       localhost6.localdomain6 localhost6
112 __EOF__
113     @FEBOOTSTRAP_INSTALL@ initramfs hosts.new /etc/hosts 0644 root.root
114     rm hosts.new
115 fi
116
117 if [ ! -f initramfs/etc/fstab ]; then
118     @FEBOOTSTRAP_RUN@ initramfs -- touch /etc/fstab
119 fi
120
121 echo nameserver 10.0.2.3 > resolv.conf.new
122 @FEBOOTSTRAP_INSTALL@ initramfs resolv.conf.new /etc/resolv.conf 0644 root.root
123 rm resolv.conf.new
124
125 # Create the init script.
126 cat > init.new <<'__EOF__'
127 #!/bin/sh
128 echo Starting /init script ...
129 PATH=/sbin:/usr/sbin:$PATH
130 MAKEDEV mem null port zero core full ram tty console fd \
131   hda hdb hdc hdd sda sdb sdc sdd loop sd
132 mount -t proc /proc /proc
133 mount -t sysfs /sys /sys
134 mount -t devpts -o gid=5,mode=620 /dev/pts /dev/pts
135 modprobe virtio_pci
136 modprobe virtio_net
137 modprobe dm_mod ||:
138 /sbin/ifconfig lo 127.0.0.1
139 /sbin/ifconfig eth0 10.0.2.10
140 /sbin/route add default gw 10.0.2.2
141 lvm vgscan --ignorelockingfailure
142 lvm vgchange -ay --ignorelockingfailure
143 exec guestfsd -f
144 __EOF__
145
146 @FEBOOTSTRAP_INSTALL@ initramfs init.new /init 0755 root.root
147 rm init.new
148
149 # Just in case the kernel isn't looking for /init, make /sbin/init
150 # be our script, not the real init.
151 #@FEBOOTSTRAP_RUN@ initramfs -- ln -f /init /sbin/init
152
153 # Copy the daemon into the filesystem.
154 @FEBOOTSTRAP_INSTALL@ initramfs @abs_builddir@/daemon/guestfsd /sbin/guestfsd 0755 root.root
155
156 # Generate final image.
157 @FEBOOTSTRAP_TO_INITRAMFS@ initramfs > $output-t
158 mv $output-t $output
159 ls -lh $output
160 ls -lh $koutput