Remove NFS support - we will probably use FTP 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 # 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 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
38 rm -f $koutput
39
40 # Create the basic initramfs.
41 @FEBOOTSTRAP@ $modules @REPO@ initramfs @MIRROR@
42
43 # Make a safe 'install_file' function to install files into the
44 # filesystem.  XXX We need a 'febootstrap-install' utility.
45 # Usage: install_file <local-file> <target-pathname> mode owner[.group]
46 install_file ()
47 {
48     cp "$1" initramfs/"$2"
49     # Get the inode of the new file and remove it from fakeroot.log.
50     ino=$(ls -i initramfs/"$2" | awk '{print $1}')
51     cp initramfs/fakeroot.log fakeroot.log.old
52     grep -v "ino=$ino," fakeroot.log.old > initramfs/fakeroot.log
53     rm fakeroot.log.old
54     # Set mode, owner and group as desired.
55     @FEBOOTSTRAP_RUN@ initramfs -- chmod "$3" "$2"
56     @FEBOOTSTRAP_RUN@ initramfs -- chown "$4" "$2"
57 }
58
59 # Nuke some stuff.  The kernel pulls mkinitrd and plymouth which pulls in
60 # all of Python.  Sheez.
61 find initramfs -name '*plymouth*' -print0 | xargs -0 rm -rf
62 find initramfs -name '*python*' -print0 | xargs -0 rm -rf
63
64 # Modules take up nearly half of the image.  It's a rough guess that
65 # we don't need any drivers (which take up most of the space).
66 #rm -rf initramfs/lib/modules/*/kernel/{drivers,sound}
67 rm -rf initramfs/lib/modules/*/kernel/arch/x86/kvm
68
69 # Pull the kernel out into the current directory.  We don't want it in
70 # the initramfs image.
71 mv initramfs/boot/vmlinuz* $koutput
72 rm -rf initramfs/boot
73
74 # Minimize the image.
75 @FEBOOTSTRAP_MINIMIZE@ initramfs
76
77 # Add some missing configuration files.
78 if [ ! -f initramfs/etc/hosts ]; then
79     cat > hosts.new <<'__EOF__'
80 127.0.0.1 guestfs localhost.localdomain localhost
81 ::1       localhost6.localdomain6 localhost6
82 __EOF__
83     install_file hosts.new /etc/hosts 0644 root.root
84     rm hosts.new
85 fi
86
87 if [ ! -f initramfs/etc/fstab ]; then
88     @FEBOOTSTRAP_RUN@ initramfs -- touch /etc/fstab
89 fi
90
91 echo nameserver 10.0.2.3 > resolv.conf.new
92 install_file resolv.conf.new /etc/resolv.conf 0644 root.root
93 rm resolv.conf.new
94
95 # Create the init script.
96 cat > init.new <<'__EOF__'
97 #!/bin/sh
98 PATH=/sbin:/usr/sbin:$PATH
99 MAKEDEV mem null port zero core full ram tty console fd \
100   hda hdb hdc hdd sda sdb sdc sdd loop sd
101 mount -t proc /proc /proc
102 mount -t sysfs /sys /sys
103 mount -t devpts -o gid=5,mode=620 /dev/pts /dev/pts
104 modprobe 8139cp
105 /sbin/ifconfig lo 127.0.0.1
106 /sbin/ifconfig eth0 10.0.2.10
107 /sbin/route add default gw 10.0.2.2
108 lvm vgscan --ignorelockingfailure
109 lvm vgchange -ay --ignorelockingfailure
110 __EOF__
111
112 if [ "x$debug" != "xyes" ]; then
113     echo exec guestfsd -f >> init.new
114 else
115     echo guestfsd >> init.new
116     echo exec bash -i >> init.new
117 fi
118
119 install_file init.new /init 0755 root.root
120 rm init.new
121
122 # Copy the daemon into the filesystem.
123 install_file @abs_builddir@/daemon/guestfsd /sbin/guestfsd 0755 root.root
124
125 # Generate final image.
126 @FEBOOTSTRAP_TO_INITRAMFS@ initramfs > $output-t
127 mv $output-t $output
128 ls -lh $output
129 ls -lh $koutput