]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - lfs/flash-images
Merge remote-tracking branch 'mfischer/mc' into next
[ipfire-2.x.git] / lfs / flash-images
... / ...
CommitLineData
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007-2014 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
32DEVICE = $(shell losetup -f)
33PART_BOOT = /dev/mapper/$(patsubst /dev/%,%,$(DEVICE))p1
34PART_ROOT = /dev/mapper/$(patsubst /dev/%,%,$(DEVICE))p3
35
36ifeq "$(SCON)" "1"
37 IMAGE_FILE = /install/images/$(SNAME)-$(VERSION).1gb-ext4-scon.$(MACHINE)-full-core$(CORE).img.gz
38else
39 IMAGE_FILE = /install/images/$(SNAME)-$(VERSION).1gb-ext4.$(MACHINE)-full-core$(CORE).img.gz
40endif
41
42FSTAB_FMT = UUID=%s %-8s %-4s %-10s %d %d\n
43
44###############################################################################
45# Top-level Rules
46###############################################################################
47
48install : $(TARGET)
49
50check :
51
52download :
53
54md5 :
55
56###############################################################################
57# Installation Details
58###############################################################################
59MNThdd := /install/harddisk
60IMG := /install/images/image.img
61
62# All sizes in blocks
63ifeq "$(MACHINE_TYPE)" "arm"
64 BOOTLOADER =
65 S_OFFSET = 8192
66
67 # FAT32
68 PART_TYPE = c
69else
70 BOOTLOADER = grub
71 S_OFFSET = 8192
72
73 # Logical
74 PART_TYPE = L
75endif
76
77# /boot: 64MB - OFFSET
78# / : 700MB
79S_BOOT := $(shell echo $$(( 131072 - $(S_OFFSET) )))
80S_ROOT := 1433600
81
82PADDING = 100 # MB
83
84$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
85 # Stop if $(MNThdd) is still mounted
86 mountpoint $(MNThdd) && exit 1 || exit 0
87
88 rm -rf $(IMG) $(MNThdd) && mkdir -p $(MNThdd)
89
90 # Allocate image on disk
91 dd if=/dev/zero of=$(IMG) bs=512 count=$$(( $(S_OFFSET) + $(S_BOOT) + $(S_ROOT) ))
92 losetup $(DEVICE) $(IMG)
93
94 # Write Partition table
95 echo -e "$(S_OFFSET),$(S_BOOT),$(PART_TYPE),*\n,0,0\n$$(( $(S_BOOT) + $(S_OFFSET) )),$(S_ROOT),L\n" \
96 | sfdisk -D -uS -H 64 -S 32 $(DEVICE)
97
98 kpartx -v -a $(DEVICE)
99
100 # Format them
101ifeq "$(PART_TYPE)" "c"
102 mkfs.vfat $(PART_BOOT)
103else
104 mkfs.ext2 -F $(PART_BOOT)
105endif
106 mkfs.ext4 -O ^has_journal,extent -F $(PART_ROOT)
107
108 # Most systems that use Flashimages has no RTC at boot
109 # so the interval check should disables
110 tune2fs -i0 $(PART_ROOT)
111
112 # Mount root partition
113 mount $(PART_ROOT) $(MNThdd)
114
115 # Mount boot partition
116 mkdir -pv $(MNThdd)/boot
117 mount $(PART_BOOT) $(MNThdd)/boot
118
119 # Install MLO and uboot first
120ifeq "$(MACHINE_TYPE)" "arm"
121 cp -v /boot/MLO $(MNThdd)/boot/
122 cp -v /boot/u-boot.img $(MNThdd)/boot/
123 cp -v /boot/zImage-ipfire-multi $(MNThdd)/boot/
124 sync
125 umount $(MNThdd)/boot
126 mount $(PART_BOOT) $(MNThdd)/boot
127endif
128
129 # Install IPFire
130ifneq "$(MACHINE_TYPE)" "arm"
131 tar -x --lzma -C $(MNThdd)/ -f /install/cdrom/distro.img
132else
133 tar -x -C $(MNThdd)/ -f /install/cdrom/distro.img
134endif
135 echo "LANGUAGE=en" >> $(MNThdd)/var/ipfire/main/settings
136 echo "HOSTNAME=$(SNAME)" >> $(MNThdd)/var/ipfire/main/settings
137 echo "THEME=ipfire" >> $(MNThdd)/var/ipfire/main/settings
138
139ifeq "$(SCON)" "1"
140 # Enable serial console
141 sed -i -e "s|1:2345:respawn:|#1:2345:respawn:|g" $(MNThdd)/etc/inittab
142 sed -i -e "s|2:2345:respawn:|#2:2345:respawn:|g" $(MNThdd)/etc/inittab
143 sed -i -e "s|3:2345:respawn:|#3:2345:respawn:|g" $(MNThdd)/etc/inittab
144 sed -i -e "s|4:2345:respawn:|#4:2345:respawn:|g" $(MNThdd)/etc/inittab
145 sed -i -e "s|5:2345:respawn:|#5:2345:respawn:|g" $(MNThdd)/etc/inittab
146 sed -i -e "s|6:2345:respawn:|#6:2345:respawn:|g" $(MNThdd)/etc/inittab
147 sed -i -e "s|#7:2345:respawn:|7:2345:respawn:|g" $(MNThdd)/etc/inittab
148
149ifeq "$(MACHINE_TYPE)" "arm"
150 sed -i -e "s| console=tty1 | console=ttyAMA0,115200n8 |g" $(MNThdd)/boot/cmdline.txt
151 sed -i -e "s| console=tty1 | console=ttyO2,115200n8 |g" $(MNThdd)/boot/boot.script
152 cd $(MNThdd)/boot && ./convert_bootscript
153endif
154endif
155
156 -touch $(MNThdd)/lib/modules/$(KVER)-ipfire/modules.dep
157 mkdir $(MNThdd)/proc
158 mount --bind /proc $(MNThdd)/proc
159 mount --bind /dev $(MNThdd)/dev
160 mount --bind /sys $(MNThdd)/sys
161
162 chroot $(MNThdd) /usr/bin/perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
163
164 # Create /etc/fstab
165 printf "$(FSTAB_FMT)" "$$(blkid -o value -s UUID $(PART_BOOT))" "/boot" \
166 "auto" "defaults" 1 2 > $(MNThdd)/etc/fstab
167 printf "$(FSTAB_FMT)" "$$(blkid -o value -s UUID $(PART_ROOT))" "/" \
168 "auto" "defaults" 1 1 >> $(MNThdd)/etc/fstab
169
170ifeq "$(BOOTLOADER)" "grub"
171ifeq "$(SCON)" "1"
172 # Enable serial console on GRUB
173 echo "GRUB_TERMINAL=\"serial\"" >> $(MNThdd)/etc/default/grub
174 echo "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=115200\"" >> $(MNThdd)/etc/default/grub
175
176 sed -i -e "s|panic=10|& console=ttyS0,115200n8|g" $(MNThdd)/etc/default/grub
177endif
178
179 # Create configuration
180 mkdir -pv $(MNThdd)/boot/grub
181 chroot $(MNThdd) grub-mkconfig -o /boot/grub/grub.cfg
182
183 # Insert the UUID because grub-mkconfig fails to detect that correctly
184 sed -i $(MNThdd)/boot/grub/grub.cfg \
185 -e "s/root=[a-z0-9\/]*/root=UUID=$$(blkid -o value -s UUID $(PART_ROOT))/g"
186
187 # Install GRUB
188 grub-install --force --recheck --no-floppy \
189 --root-directory=$(MNThdd) $(DEVICE)
190endif
191
192 # Automatically resize the root partition to its maximum size at first boot
193 touch $(MNThdd)/.partresize
194
195 # Unmount
196 umount $(MNThdd)/proc
197 umount $(MNThdd)/sys
198 umount $(MNThdd)/dev
199 umount $(MNThdd)/boot
200 umount $(MNThdd)
201
202 # zerofree the ext2 images to get better compression
203ifneq "$(PART_TYPE)" "c"
204 zerofree $(PART_BOOT)
205 -fsck.ext2 -f -y $(PART_BOOT)
206 fsck.ext2 -f -y $(PART_BOOT)
207endif
208 zerofree $(PART_ROOT)
209 -fsck.ext4 -f -y $(PART_ROOT)
210 fsck.ext4 -f -y $(PART_ROOT)
211
212 kpartx -d -v $(DEVICE)
213 losetup -d $(DEVICE)
214
215 # Add padding at the end of the image (to fix alignment issues if the image is
216 # not copied to a block device)
217 dd if=/dev/zero bs=1M count=$(PADDING) >> $(IMG)
218
219 # Compress Image
220 pigz -f9 < $(IMG) > $(IMAGE_FILE)
221 rm -rf $(IMG) $(MNThdd)