3 # Copyright (C) 2009 Red Hat Inc.
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.
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.
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.
19 # This is called from the Makefile to build the initramfs.
45 # Decide on names for the final output. These have to match Makefile.am.
46 output=initramfs.@REPO@.@host_cpu@.img
47 koutput=vmlinuz.@REPO@.@host_cpu@
51 # Create the basic initramfs.
52 @FEBOOTSTRAP@ $modules -u @UPDATES@ @REPO@ initramfs @MIRROR@
54 # /sysroot is where the guest root filesystem will be mounted.
55 mkdir initramfs/sysroot
56 @FEBOOTSTRAP_RUN@ initramfs -- chmod 0777 /sysroot
58 # Create /tmp if it is missing.
59 mkdir -p initramfs/tmp
60 @FEBOOTSTRAP_RUN@ initramfs -- chmod 0777 /tmp
62 # Make a safe 'install_file' function to install files into the
63 # filesystem. XXX We need a 'febootstrap-install' utility.
64 # Usage: install_file <local-file> <target-pathname> mode owner[.group]
67 cp "$1" initramfs/"$2"
68 # Get the inode of the new file and remove it from fakeroot.log.
69 ino=$(ls -i initramfs/"$2" | awk '{print $1}')
70 cp initramfs/fakeroot.log fakeroot.log.old
71 grep -v "ino=$ino," fakeroot.log.old > initramfs/fakeroot.log
73 # Set mode, owner and group as desired.
74 @FEBOOTSTRAP_RUN@ initramfs -- chmod "$3" "$2"
75 @FEBOOTSTRAP_RUN@ initramfs -- chown "$4" "$2"
78 # Nuke some stuff. The kernel pulls mkinitrd and plymouth which pulls in
79 # all of Python. Sheez.
80 find initramfs -name '*plymouth*' -print0 | xargs -0 rm -rf
81 find initramfs -name '*python*' -print0 | xargs -0 rm -rf
83 # Modules take up nearly half of the image. It's a rough guess that
84 # we don't need many drivers (which take up most of the space).
85 find initramfs/lib/modules/*/kernel \
87 -a ! -name 'virtio.ko' \
88 -a ! -name 'virtio_net.ko' \
89 -a ! -name 'virtio_pci.ko' \
90 -a ! -name 'virtio_ring.ko' \
91 -a ! -name 'ext2.ko' \
92 -a ! -name 'ext4.ko' \
93 -a ! -name 'crc16.ko' \
94 -a ! -name 'jbd2.ko' \
95 -a ! -name 'fuse.ko' \
96 -a ! -name 'vfat.ko' \
99 -a ! -name 'crc_itu_t.ko' \
100 -a ! -name 'nls_utf8.ko' \
101 -a ! -name 'dm-*.ko' \
104 # Pull the kernel out into the current directory. We don't want it in
105 # the initramfs image.
106 mv initramfs/boot/vmlinuz* $koutput
107 rm -rf initramfs/boot
109 # Minimize the image.
110 @FEBOOTSTRAP_MINIMIZE@ initramfs
112 # Add some missing configuration files.
113 if [ ! -f initramfs/etc/hosts ]; then
114 cat > hosts.new <<'__EOF__'
115 127.0.0.1 guestfs localhost.localdomain localhost
116 ::1 localhost6.localdomain6 localhost6
118 install_file hosts.new /etc/hosts 0644 root.root
122 if [ ! -f initramfs/etc/fstab ]; then
123 @FEBOOTSTRAP_RUN@ initramfs -- touch /etc/fstab
126 echo nameserver 10.0.2.3 > resolv.conf.new
127 install_file resolv.conf.new /etc/resolv.conf 0644 root.root
130 # Create the init script.
131 cat > init.new <<'__EOF__'
133 PATH=/sbin:/usr/sbin:$PATH
134 MAKEDEV mem null port zero core full ram tty console fd \
135 hda hdb hdc hdd sda sdb sdc sdd loop sd
136 mount -t proc /proc /proc
137 mount -t sysfs /sys /sys
138 mount -t devpts -o gid=5,mode=620 /dev/pts /dev/pts
142 /sbin/ifconfig lo 127.0.0.1
143 /sbin/ifconfig eth0 10.0.2.10
144 /sbin/route add default gw 10.0.2.2
145 lvm vgscan --ignorelockingfailure
146 lvm vgchange -ay --ignorelockingfailure
150 install_file init.new /init 0755 root.root
153 # Copy the daemon into the filesystem.
154 install_file @abs_builddir@/daemon/guestfsd /sbin/guestfsd 0755 root.root
156 # Generate final image.
157 @FEBOOTSTRAP_TO_INITRAMFS@ initramfs > $output-t