]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/xen-image
Merge branch 'master' into next
[people/pmueller/ipfire-2.x.git] / lfs / xen-image
CommitLineData
bada0832
AF
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
27VER = ipfire
28
29THISAPP = xen-image
30TARGET = $(DIR_INFO)/$(THISAPP)
31
32###############################################################################
33# Top-level Rules
34###############################################################################
35
36install : $(TARGET)
37
38check :
39
40download :
41
42md5 :
43
44###############################################################################
45# Installation Details
46###############################################################################
47IMGinst := /install/images/$(SNAME)-$(VERSION).xen.$(MACHINE)-$(ED)-core$(CORE).tar.bz2
48MNThdd := /install/harddisk
49
50IMGroot := /install/images/$(SNAME)/$(SNAME).img
51IMGswap := /install/images/$(SNAME)/swap.img
52SIZEroot := 1024
53SIZEswap := 512
54
55$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
56 rm -rf $(MNThdd) $(IMGinst) $(IMGroot) && mkdir -p $(MNThdd)
57 mkdir -p /install/images/$(SNAME)/boot
58
59 #Create swapimage
60 dd bs=1M if=/dev/zero of=$(IMGswap) count=$(SIZEswap)
61 mkswap $(IMGswap)
62
63 #Create rootimage
64 dd bs=1M if=/dev/zero of=$(IMGroot) count=$(SIZEroot)
65 mkfs.ext3 -F $(IMGroot)
66
9df6d70f
AF
67 # Mount Images
68 mount -o loop $(IMGroot) $(MNThdd)
bada0832
AF
69 mkdir $(MNThdd)/boot
70 mkdir $(MNThdd)/var
71 mkdir $(MNThdd)/var/log
72
73 # Install IPFire without kernel modules
74 tar -C $(MNThdd)/ -xvjf /install/cdrom/$(SNAME)-$(VERSION).tbz2 \
75 --exclude=lib/modules* --exclude=boot*
76
77 #Install Xen Kernel
78 tar -C $(MNThdd)/opt/pakfire/tmp -xvf /install/packages/linux-xen-$(KVER)-*.ipfire
79 chroot $(MNThdd) /opt/pakfire/tmp/install.sh
80 rm -rf $(MNThdd)/opt/pakfire/tmp/*
81
f98761dc
AF
82 #Create grub menuentry for pygrub
83 mkdir $(MNThdd)/boot/grub
84 echo "title IPFire (XEN-Kernel)" > $(MNThdd)/boot/grub/grub.conf
85 echo " root(hd0,0)" >> $(MNThdd)/boot/grub/grub.conf
f359a46e 86 echo " kernel /vmlinuz-$(KVER)-ipfire-xen root=/dev/xvda1 rootdelay=10 panic=10 ro" \
f98761dc
AF
87 >> $(MNThdd)/boot/grub/grub.conf
88 echo " initrd /ipfirerd-$(KVER)-xen.img" >> $(MNThdd)/boot/grub/grub.conf
89 echo " savedefault 1" >> $(MNThdd)/boot/grub/grub.conf
90 ln -s grub.conf $(MNThdd)/boot/grub/menu.lst
91
92 #Copy the meta-info of linux-xen package
93 cp -f /install/packages/meta-linux-xen $(MNThdd)/opt/pakfire/db/installed
94 cp -f /install/packages/meta-linux-xen $(MNThdd)/opt/pakfire/db/meta
95
bada0832
AF
96 #Set default configuration
97 echo "LANGUAGE=en" >> $(MNThdd)/var/ipfire/main/settings
98 echo "HOSTNAME=$(SNAME)" >> $(MNThdd)/var/ipfire/main/settings
99 echo "THEME=ipfire" >> $(MNThdd)/var/ipfire/main/settings
100 touch $(MNThdd)/lib/modules/$(KVER)-ipfire-xen/modules.dep
101 mv $(MNThdd)/bin/uname.bak $(MNThdd)/bin/uname
102 mkdir $(MNThdd)/proc
103 mount --bind /proc $(MNThdd)/proc
104 mount --bind /dev $(MNThdd)/dev
105 mount --bind /sys $(MNThdd)/sys
106 chroot $(MNThdd) /usr/bin/perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
107 sed -i -e "s|DEVICE1|#boot-disabled|g" $(MNThdd)/etc/fstab
108 sed -i -e "s|DEVICE2|/dev/xvdb1|g" $(MNThdd)/etc/fstab
109 sed -i -e "s|DEVICE3|/dev/xvda1|g" $(MNThdd)/etc/fstab
110 sed -i -e "s|DEVICE4|#var-disabled|g" $(MNThdd)/etc/fstab
111
112 sed -i -e "s|FSTYPE|ext3|g" $(MNThdd)/etc/fstab
113 cp -f $(MNThdd)/etc/mkinitcpio.conf $(MNThdd)/etc/mkinitcpio.conf.org
114 sed -i -e "s| autodetect | |g" $(MNThdd)/etc/mkinitcpio.conf
115
3c4d4ed0
AF
116 #Remove reiser4 because it is not work with xen-kernel
117 sed -i -e "s|reiser4 | |g" $(MNThdd)/etc/mkinitcpio.conf
bada0832
AF
118
119 chroot $(MNThdd) /sbin/mkinitcpio -g /boot/ipfirerd-$(KVER)-xen.img -k $(KVER)-ipfire-xen
120 cp -f $(MNThdd)/etc/mkinitcpio.conf.org $(MNThdd)/etc/mkinitcpio.conf
121
f98761dc 122
bada0832
AF
123 # Create a script for rebuild-initrd and setup
124 echo "#!/bin/bash" > $(MNThdd)/etc/rc.d/rcsysinit.d/S75firstsetup
125 echo "/usr/local/sbin/setup /dev/null INSTALL" >> $(MNThdd)/etc/rc.d/rcsysinit.d/S75firstsetup
126 echo "rm -f /etc/rc.d/rcsysinit.d/S75firstsetup \\" >> $(MNThdd)/etc/rc.d/rcsysinit.d/S75firstsetup
127 echo "&& /sbin/reboot" >> $(MNThdd)/etc/rc.d/rcsysinit.d/S75firstsetup
128 chmod +x $(MNThdd)/etc/rc.d/rcsysinit.d/S75firstsetup
129
130 #Remove root / fstab check
131 rm -rf $(MNThdd)/etc/rc.d/rcsysinit.d/S19checkfstab
132
9df6d70f
AF
133 #Add xvc0 to securetty
134 echo xvc0 >> $(MNThdd)/etc/securetty
135
136 #Disable some initskripts
137 echo "#!/bin/sh" > $(MNThdd)/etc/rc.d/init.d/setclock
138 echo "#!/bin/sh" > $(MNThdd)/etc/rc.d/init.d/keymap
139
5cb1128d 140 #Remove autoload of acpi modules
9df6d70f
AF
141 sed -i -e "s|^ac|#ac|g" $(MNThdd)/etc/sysconfig/modules
142 sed -i -e "s|^battery|#battery|g" $(MNThdd)/etc/sysconfig/modules
143 sed -i -e "s|^button|#button|g" $(MNThdd)/etc/sysconfig/modules
144 sed -i -e "s|^fan|#fan|g" $(MNThdd)/etc/sysconfig/modules
5cb1128d
AF
145 sed -i -e "s|^processor|#processor|g" $(MNThdd)/etc/sysconfig/modules
146 sed -i -e "s|^thermal|#thermal|g" $(MNThdd)/etc/sysconfig/modules
147 sed -i -e "s|^video|#video|g" $(MNThdd)/etc/sysconfig/modules
148
9df6d70f
AF
149 #Change pakfire trunk
150 sed -i -e "s|$(VERSION)|$(VERSION)-xen|g" \
151 $(MNThdd)/opt/pakfire/etc/pakfire.conf
152
bada0832
AF
153 #Copy initramdisk, kernel and config
154 cp -f $(MNThdd)/boot/ipfirerd-$(KVER)-xen.img \
155 /install/images/$(SNAME)/boot
156 cp -f $(MNThdd)/boot/vmlinuz-$(KVER)-ipfire-xen \
157 /install/images/$(SNAME)/boot
158 cp $(DIR_SRC)/config/xen-image/* \
159 /install/images/$(SNAME)
160 sed -i -e "s|KVER|$(KVER)|g" /install/images/$(SNAME)/ipfire.cfg
161
162 # Unmount
163 umount $(MNThdd)/proc
164 umount $(MNThdd)/dev
165 umount $(MNThdd)/sys
166 umount $(MNThdd)
167
168 # Compress Image
169 cd /install/images/ && tar -cvjf $(IMGinst) $(SNAME)
170
171 rm -rf $(MNThdd) /install/images/$(SNAME)