Moved .cvsignore -> .gitignore.
[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 in plymouth crapola 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 # Older versions of febootstrap-minimize didn't remove this, so:
59 rm -rf initramfs/usr/share/gnome/help
60
61 # Minimize the image.
62 @FEBOOTSTRAP_MINIMIZE@ initramfs
63
64 # Add some missing configuration files.
65 if [ ! -f initramfs/etc/hosts ]; then
66     cat > initramfs/etc/hosts <<'__EOF__'
67 127.0.0.1 guestfs localhost.localdomain localhost
68 ::1       localhost6.localdomain6 localhost6
69 __EOF__
70 fi
71
72 if [ ! -f initramfs/etc/fstab ]; then
73     touch initramfs/etc/fstab
74 fi
75
76 # Copy the daemon into the filesystem.
77 #cp daemon/guestfsd initramfs/sbin
78
79 # Create the init script.
80 cat > initramfs/init <<'__EOF__'
81 #!/bin/sh
82 PATH=/sbin:/usr/sbin:$PATH
83 MAKEDEV mem null port zero core full ram tty console fd \
84   hda hdb hdc hdd sda sdb sdc sdd loop sd
85 mount -t proc /proc /proc
86 mount -t sysfs /sys /sys
87 mount -t devpts -o gid=5,mode=620 /dev/pts /dev/pts
88 modprobe nfsd
89 /sbin/ifconfig lo 127.0.0.1
90 lvm vgscan --ignorelockingfailure
91 lvm vgchange -ay --ignorelockingfailure
92 rpcbind
93 rpc.statd
94 rpc.nfsd 4
95 rpc.mountd
96 __EOF__
97
98 if [ "x$debug" != "xyes" ]; then
99     echo exec guestfsd -f >> initramfs/init
100 else
101     echo guestfsd >> initramfs/init
102     echo exec bash -i >> initramfs/init
103 fi
104
105 chmod +x initramfs/init
106
107 # Generate final image.
108 @FEBOOTSTRAP_TO_INITRAMFS@ initramfs > $output-t
109 mv $output-t $output
110 ls -lh $output