fe3635d8fe3db3064b3b6a880662d1d23d701de3
[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 # If you want to do some extra debugging and diagnosis of the
24 # initramfs image, then uncomment this line.  This makes the image
25 # larger.
26 debug=yes
27
28 modules="-i kernel -i bash -i coreutils -i lvm2 -i ntfs-3g -i nfs-utils -i util-linux-ng -i MAKEDEV -i net-tools"
29
30 if [ "x$debug" = "xyes" ]; then
31     modules="$modules -i module-init-tools -i procps -i strace -i iputils"
32 fi
33
34 # Decide on names for the final output.  These have to match Makefile.am.
35 output=initramfs.@REPO@.@host_cpu@.img
36 koutput=vmlinuz.@REPO@.@host_cpu@
37 rm -f $output $koutput
38
39 # Create the basic initramfs.
40 @FEBOOTSTRAP@ $modules @REPO@ initramfs @MIRROR@
41
42 # Nuke some stuff.  The kernel pulls mkinitrd and plymouth which pulls in
43 # all of Python.  Sheez.
44 find initramfs -name '*plymouth*' -print0 | xargs -0 rm -rf
45 find initramfs -name '*python*' -print0 | xargs -0 rm -rf
46
47 # Modules take up nearly half of the image.  It's a rough guess that
48 # we don't need any drivers (which take up most of the space).
49 # (We need to keep kernel/net/sunrpc for NFS)
50 rm -rf initramfs/lib/modules/*/kernel/{drivers,sound}
51 rm -rf initramfs/lib/modules/*/kernel/arch/x86/kvm
52
53 # Pull the kernel out into the current directory.  We don't want it in
54 # the initramfs image.
55 mv initramfs/boot/vmlinuz* $koutput
56 rm -rf initramfs/boot
57
58 # Minimize the image.
59 @FEBOOTSTRAP_MINIMIZE@ initramfs
60
61 # Add some missing configuration files.
62 if [ ! -f initramfs/etc/hosts ]; then
63     cat > initramfs/etc/hosts <<'__EOF__'
64 127.0.0.1 guestfs localhost.localdomain localhost
65 ::1       localhost6.localdomain6 localhost6
66 __EOF__
67 fi
68
69 if [ ! -f initramfs/etc/fstab ]; then
70     touch initramfs/etc/fstab
71 fi
72
73 # Copy the daemon into the filesystem.
74 #cp daemon/guestfsd initramfs/sbin
75
76 # Create the init script.
77 cat > initramfs/init <<'__EOF__'
78 #!/bin/sh
79 PATH=/sbin:/usr/sbin:$PATH
80 MAKEDEV mem null port zero core full ram tty console fd \
81   hda hdb hdc hdd sda sdb sdc sdd loop sd
82 mount -t proc /proc /proc
83 mount -t sysfs /sys /sys
84 mount -t devpts -o gid=5,mode=620 /dev/pts /dev/pts
85 modprobe nfsd
86 /sbin/ifconfig lo 127.0.0.1
87 lvm vgscan --ignorelockingfailure
88 lvm vgchange -ay --ignorelockingfailure
89 rpcbind
90 rpc.statd
91 rpc.nfsd 4
92 rpc.mountd
93 __EOF__
94
95 if [ "x$debug" != "xyes" ]; then
96     echo exec guestfsd -f >> initramfs/init
97 else
98     echo guestfsd >> initramfs/init
99     echo exec bash -i >> initramfs/init
100 fi
101
102 chmod +x initramfs/init
103
104 # Generate final image.
105 @FEBOOTSTRAP_TO_INITRAMFS@ initramfs > $output-t
106 mv $output-t $output
107 ls -lh $output
108 ls -lh $koutput