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