]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - lfs/flash-images
flash-images: increase size of root partition.
[ipfire-2.x.git] / lfs / flash-images
... / ...
CommitLineData
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007-2011 IPFire Team <info@ipfire.org> #
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 = flash-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).2gb-ext2.$(MACHINE)-full-core$(CORE).img
48IMGinsts := /install/images/$(SNAME)-$(VERSION).2gb-ext2-scon.$(MACHINE)-full-core$(CORE).img
49MNThdd := /install/harddisk
50IMGpart := /install/images/part_area
51IMGboot := /install/images/bootfs
52# don't change SIZEboot this without checking Image size
53SIZEboot := 20
54IMGroot := /install/images/rootfs
55SIZEroot := 1400
56IMGvar := /install/images/varfs
57SIZEvar := 430
58
59$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
60 rm -rf $(MNThdd) $(IMGinst) $(IMGpart) $(IMGboot) $(IMGroot) $(IMGvar) && mkdir -p $(MNThdd)
61
62 # Create first 32 sectors of image
63 dd bs=1k if=/dev/zero of=$(IMGpart) count=16
64
65 # Create images for filesystems
66 dd bs=1K if=/dev/zero of=$(IMGboot) count=20464 # 20MB-16K
67 dd bs=1M if=/dev/zero of=$(IMGroot) count=$(SIZEroot)
68 dd bs=1M if=/dev/zero of=$(IMGvar) count=$(SIZEvar)
69
70 # Format them
71ifeq "$(MACHINE_TYPE)" "arm"
72 mkfs.vfat $(IMGboot)
73else
74 mkfs.ext2 -F $(IMGboot)
75endif
76 mkfs.ext2 -F $(IMGroot)
77 mkfs.ext2 -F $(IMGvar)
78
79 # Mount Images
80 mount -o loop $(IMGroot) $(MNThdd)
81 mkdir $(MNThdd)/boot
82 mkdir $(MNThdd)/var
83 mkdir $(MNThdd)/var/log
84 mount -o loop $(IMGboot) $(MNThdd)/boot
85 mount -o loop $(IMGvar) $(MNThdd)/var
86
87 # Install IPFire
88 tar -C $(MNThdd)/ -xvaf /install/cdrom/$(SNAME)-$(VERSION).tlz
89 echo "LANGUAGE=en" >> $(MNThdd)/var/ipfire/main/settings
90 echo "HOSTNAME=$(SNAME)" >> $(MNThdd)/var/ipfire/main/settings
91 echo "THEME=ipfire" >> $(MNThdd)/var/ipfire/main/settings
92 -touch $(MNThdd)/lib/modules/$(KVER)-ipfire/modules.dep
93 mkdir $(MNThdd)/proc
94 mount --bind /proc $(MNThdd)/proc
95 mount --bind /dev $(MNThdd)/dev
96 mount --bind /sys $(MNThdd)/sys
97 chroot $(MNThdd) /usr/bin/perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
98 sed -i -e "s|DEVICE1|UUID=$$(blkid -sUUID $(IMGboot) | cut -d'"' -f2)|g" $(MNThdd)/etc/fstab
99ifeq "$(MACHINE_TYPE)" "arm"
100 # ARM flash images have a VFAT partition for /boot.
101 sed -i -e "s|ext2|vfat|" $(MNThdd)/etc/fstab
102endif
103 sed -i -e "s|DEVICE2|#DEVICE2|g" $(MNThdd)/etc/fstab
104 sed -i -e "s|DEVICE3|UUID=$$(blkid -sUUID $(IMGroot) | cut -d'"' -f2)|g" $(MNThdd)/etc/fstab
105 sed -i -e "s|DEVICE4|UUID=$$(blkid -sUUID $(IMGvar) | cut -d'"' -f2)|g" $(MNThdd)/etc/fstab
106 sed -i -e "s|FSTYPE|ext2|g" $(MNThdd)/etc/fstab
107
108ifneq "$(MACHINE_TYPE)" "arm"
109 sed -i -e "s|MOUNT|ro|g" $(MNThdd)/boot/grub/grub.conf
110 sed -i -e "s|KVER|$(KVER)|g" $(MNThdd)/boot/grub/grub.conf
111 sed -i -e "s|ROOT|UUID=$$(blkid -sUUID $(IMGroot) | cut -d'"' -f2)|g" $(MNThdd)/boot/grub/grub.conf
112 ln -s grub.conf $(MNThdd)/boot/grub/menu.lst
113
114 # Setup symlink for partresize at first boot...
115 ln -sf ../init.d/partresize $(MNThdd)/etc/rc.d/rcsysinit.d/S25partresize
116 # Setup symlink for fsresize at second boot...
117 ln -sf ../init.d/fsresize $(MNThdd)/etc/rc.d/rcsysinit.d/S26fsresize
118
119 # Copy grub files manually
120 cp -f $(MNThdd)/usr/share/grub/i386-pc/* $(MNThdd)/boot/grub/
121endif
122
123 # Unmount
124 umount $(MNThdd)/proc
125 umount $(MNThdd)/dev
126 umount $(MNThdd)/sys
127 umount $(MNThdd)/boot
128 umount $(MNThdd)/var
129 umount $(MNThdd)
130
131 # zerofree the ext2 images to get better compression
132ifneq "$(MACHINE_TYPE)" "arm"
133 zerofree $(IMGboot)
134 -fsck.ext2 -f -y $(IMGboot)
135 fsck.ext2 -f -y $(IMGboot)
136endif
137 zerofree $(IMGroot)
138 -fsck.ext2 -f -y $(IMGroot)
139 fsck.ext2 -f -y $(IMGroot)
140 zerofree $(IMGvar)
141 -fsck.ext2 -f -y $(IMGvar)
142 fsck.ext2 -f -y $(IMGvar)
143
144 # Cat to an image
145 cat $(IMGpart) $(IMGboot) $(IMGroot) $(IMGvar) > $(IMGinst)
146 # Write Partition table
147 echo -e ",$(SIZEboot),L,*\n,0,0\n,$(SIZEroot),L\n,$(SIZEvar),L\n" \
148 | sfdisk -D -uM -H 64 -S 32 $(IMGinst)
149
150ifneq "$(MACHINE_TYPE)" "arm"
151 # Install grub
152 echo "device (hd0) $(IMGinst)" > /tmp/grubinst.tmp
153 echo "root (hd0,0)" >> /tmp/grubinst.tmp
154 echo "setup (hd0)" >> /tmp/grubinst.tmp
155 echo "quit" >> /tmp/grubinst.tmp
156 grub < /tmp/grubinst.tmp
157 rm -f /tmp/grubinst.tmp
158endif
159
160 # Compress Image
161 gzip -f9 $(IMGinst)
162
163 # Now Build serialcon Version
164 # Mount Images
165 mount -o loop $(IMGroot) $(MNThdd)
166 mount -o loop $(IMGboot) $(MNThdd)/boot
167
168ifneq "$(MACHINE_TYPE)" "arm"
169 sed -i -e "s|splashimage|#splashimage|g" $(MNThdd)/boot/grub/grub.conf
170 sed -i -e "s|#serial|serial|g" $(MNThdd)/boot/grub/grub.conf
171 sed -i -e "s|#terminal|terminal|g" $(MNThdd)/boot/grub/grub.conf
172 sed -i -e "s| panic=10 | console=ttyS0,115200n8 panic=10 |g" $(MNThdd)/boot/grub/grub.conf
173endif
174
175 sed -i -e "s|1:2345:respawn:|#1:2345:respawn:|g" $(MNThdd)/etc/inittab
176 sed -i -e "s|2:2345:respawn:|#2:2345:respawn:|g" $(MNThdd)/etc/inittab
177 sed -i -e "s|3:2345:respawn:|#3:2345:respawn:|g" $(MNThdd)/etc/inittab
178 sed -i -e "s|4:2345:respawn:|#4:2345:respawn:|g" $(MNThdd)/etc/inittab
179 sed -i -e "s|5:2345:respawn:|#5:2345:respawn:|g" $(MNThdd)/etc/inittab
180 sed -i -e "s|6:2345:respawn:|#6:2345:respawn:|g" $(MNThdd)/etc/inittab
181 sed -i -e "s|#7:2345:respawn:|7:2345:respawn:|g" $(MNThdd)/etc/inittab
182
183 umount $(MNThdd)/boot
184 umount $(MNThdd)
185
186 # zerofree the ext3 images to get better compression
187ifneq "$(MACHINE_TYPE)" "arm"
188 zerofree $(IMGboot)
189 -fsck.ext2 -f -y $(IMGboot)
190 fsck.ext2 -f -y $(IMGboot)
191endif
192 zerofree $(IMGroot)
193 -fsck.ext2 -f -y $(IMGroot)
194 fsck.ext2 -f -y $(IMGroot)
195 zerofree $(IMGvar)
196 -fsck.ext2 -f -y $(IMGvar)
197 fsck.ext2 -f -y $(IMGvar)
198
199 # Cat to an image
200 cat $(IMGpart) $(IMGboot) $(IMGroot) $(IMGvar) > $(IMGinsts)
201 rm -vf $(IMGpart) $(IMGboot) $(IMGroot) $(IMGvar)
202 # Write Partition table
203 echo -e ",$(SIZEboot),L,*\n,0,0\n,$(SIZEroot),L\n,$(SIZEvar),L\n" \
204 | sfdisk -D -uM -H 64 -S 32 $(IMGinsts)
205
206ifneq "$(MACHINE_TYPE)" "arm"
207 # Install grub
208 echo "device (hd0) $(IMGinsts)" > /tmp/grubinst.tmp
209 echo "root (hd0,0)" >> /tmp/grubinst.tmp
210 echo "setup (hd0)" >> /tmp/grubinst.tmp
211 echo "quit" >> /tmp/grubinst.tmp
212 grub < /tmp/grubinst.tmp
213 rm -f /tmp/grubinst.tmp
214endif
215
216 # Compress Image
217 gzip -f9 $(IMGinsts)
218
219 rm -rf $(MNThdd) $(IMGpart) $(IMGboot) $(IMGroot) $(IMGvar)
220