]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/flash-images
flash-images: Only install grub for EFI on aarch64
[ipfire-2.x.git] / lfs / flash-images
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2018 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
25 include Config
26
27 VER = ipfire
28
29 THISAPP = flash-image
30 TARGET = $(DIR_INFO)/$(THISAPP)
31
32 DEVICE = $(shell losetup -f)
33 PART_BOOT = /dev/mapper/$(patsubst /dev/%,%,$(DEVICE))p1
34 ifeq "$(EFI)" "1"
35 PART_EFI = /dev/mapper/$(patsubst /dev/%,%,$(DEVICE))p2
36 endif
37 PART_ROOT = /dev/mapper/$(patsubst /dev/%,%,$(DEVICE))p3
38
39 IMAGE_FILE = /install/images/$(SNAME)-$(VERSION).2gb-ext4.$(BUILD_ARCH)-full-core$(CORE).img.xz
40
41 FSTAB_FMT = UUID=%s %-8s %-4s %-10s %d %d\n
42
43 ###############################################################################
44 # Top-level Rules
45 ###############################################################################
46
47 install : $(TARGET)
48
49 check :
50
51 download :
52
53 md5 :
54
55 ###############################################################################
56 # Installation Details
57 ###############################################################################
58 MNThdd := /install/harddisk
59 IMG := /install/images/image.img
60
61 # All sizes in blocks
62 ifeq "$(BUILD_ARCH)" "armv5tel"
63 BOOTLOADER =
64 S_OFFSET = 8192
65
66 # FAT32
67 PART_TYPE = c
68 else
69 BOOTLOADER = grub
70 S_OFFSET = 8192
71
72 # Linux
73 PART_TYPE = L
74 endif
75
76 # /boot: 128MB - OFFSET
77 # / : 1200 MB
78 S_BOOT := $(shell echo $$(( 262144 - $(S_OFFSET) )))
79 S_ROOT := 2477600
80
81 ifeq "$(EFI)" "1"
82 S_EFI = 65536 # 32 MB
83 else
84 S_EFI = 0
85 endif
86
87 PADDING = 100 # MB
88
89 ifeq "$(EFI)" "1"
90 SFDISK = $(SFDISK_BOOT)$(SFDISK_EFI)$(SFDISK_ROOT)
91 else
92 SFDISK = $(SFDISK_BOOT)$(SFDISK_ROOT)
93 endif
94
95 SFDISK_BOOT = $(S_OFFSET),$(S_BOOT),$(PART_TYPE),*\n
96 SFDISK_EFI = $(shell echo $$(( $(S_OFFSET) + $(S_BOOT) ))),$(S_EFI),U\n
97 SFDISK_ROOT = $(shell echo $$(( $(S_OFFSET) + $(S_BOOT) + $(S_EFI) ))),$(S_ROOT),L\n
98
99 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
100 # Stop if $(MNThdd) is still mounted
101 mountpoint $(MNThdd) && exit 1 || exit 0
102
103 rm -rf $(IMG) $(MNThdd) && mkdir -p $(MNThdd)
104
105 # Allocate image on disk
106 dd if=/dev/zero of=$(IMG) bs=512 count=$$(( $(S_OFFSET) + $(S_BOOT) + $(S_EFI) + $(S_ROOT) ))
107 losetup $(DEVICE) $(IMG)
108
109 # Write Partition table
110 echo -e "$(SFDISK)" | sfdisk -uS $(DEVICE)
111
112 kpartx -v -a $(DEVICE)
113
114 # Format them
115 ifeq "$(PART_TYPE)" "c"
116 mkfs.vfat $(PART_BOOT)
117 else
118 mkfs.ext2 -F $(PART_BOOT)
119 endif
120 ifeq "$(EFI)" "1"
121 mkfs.vfat $(PART_EFI)
122 endif
123 mkfs.ext4 -O ^has_journal,extent -F $(PART_ROOT)
124
125 # Most systems that use Flashimages has no RTC at boot
126 # so the interval check should disables
127 tune2fs -i0 $(PART_ROOT)
128
129 # Mount root partition
130 mount $(PART_ROOT) $(MNThdd)
131
132 # Mount boot partition
133 mkdir -pv $(MNThdd)/boot
134 mount $(PART_BOOT) $(MNThdd)/boot
135
136 ifeq "$(EFI)" "1"
137 mkdir -pv $(MNThdd)/boot/efi
138 mount $(PART_EFI) $(MNThdd)/boot/efi
139 endif
140
141 # Install Pandaboard MLO and uboot first
142 ifeq "$(BUILD_ARCH)" "armv5tel"
143 cp -v /boot/MLO $(MNThdd)/boot/
144 cp -v /boot/u-boot.img $(MNThdd)/boot/
145 sync
146 umount $(MNThdd)/boot
147 mount $(PART_BOOT) $(MNThdd)/boot
148 endif
149
150 # Install IPFire
151 ifneq "$(BUILD_PLATFORM)" "arm"
152 tar -x --xz -C $(MNThdd)/ -f /install/cdrom/distro.img
153 else
154 tar -x -C $(MNThdd)/ -f /install/cdrom/distro.img
155 endif
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 ifeq "$(EFI)" "1"
168 printf "$(FSTAB_FMT)" "$$(blkid -o value -s UUID $(PART_EFI))" "/boot/efi" \
169 "auto" "defaults" 1 2 >> $(MNThdd)/etc/fstab
170 endif
171 printf "$(FSTAB_FMT)" "$$(blkid -o value -s UUID $(PART_ROOT))" "/" \
172 "auto" "defaults" 1 1 >> $(MNThdd)/etc/fstab
173
174 ifeq "$(BOOTLOADER)" "grub"
175 # backup defaults file
176 cp $(MNThdd)/etc/default/grub $(MNThdd)/etc/default/grub.backup
177
178 # Enable also serial console on GRUB
179 echo "GRUB_TERMINAL=\"serial console\"" >> $(MNThdd)/etc/default/grub
180 echo "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=115200\"" >> $(MNThdd)/etc/default/grub
181
182 # Add additional entry for Serial console
183 cp $(DIR_SRC)/config/flash-images/grub/11_linux_scon \
184 $(MNThdd)/etc/grub.d/
185
186 # Create configuration
187 mkdir -pv $(MNThdd)/boot/grub
188 chroot $(MNThdd) grub-mkconfig -o /boot/grub/grub.cfg
189
190 # Boot the first kernel by default
191 chroot $(MNThdd) grub-set-default 0
192
193 # Insert the UUID because grub-mkconfig often fails to
194 # detect that correctly
195 sed -i $(MNThdd)/boot/grub/grub.cfg \
196 -e "s/root=[A-Za-z0-9\/=-]*/root=UUID=$$(blkid -o value -s UUID $(PART_ROOT))/g"
197
198 ifeq "$(BUILD_PLATFORM)" "x86"
199 # Install GRUB
200 grub-install --force --recheck --no-floppy --target=i386-pc \
201 --root-directory=$(MNThdd) $(DEVICE)
202 endif
203
204 ifeq "$(EFI)" "1"
205 # Install GRUB for EFI
206 grub-install --target=$(GRUB_ARCH)-efi --removable --no-nvram \
207 --boot-directory=$(MNThdd)/boot --efi-directory=$(MNThdd)/boot/efi
208 endif
209
210 # restore orginal defaults
211 mv -f $(MNThdd)/etc/default/grub.backup $(MNThdd)/etc/default/grub
212 rm -f $(MNThdd)/etc/grub.d/11_linux_scon
213 endif
214
215 # Set ramdisk mode to automatic
216 echo RAMDISK_MODE=2 > $(MNThdd)/etc/sysconfig/ramdisk
217
218 # Automatically resize the root partition to its maximum size at first boot
219 touch $(MNThdd)/.partresize
220
221 # Unmount
222 umount $(MNThdd)/proc
223 umount $(MNThdd)/sys
224 umount $(MNThdd)/dev
225 ifeq "$(EFI)" "1"
226 umount $(MNThdd)/boot/efi
227 endif
228 umount $(MNThdd)/boot
229 umount $(MNThdd)
230
231 # zerofree the ext2 images to get better compression
232 ifneq "$(PART_TYPE)" "c"
233 zerofree $(PART_BOOT)
234 -fsck.ext2 -f -y $(PART_BOOT)
235 fsck.ext2 -f -y $(PART_BOOT)
236 endif
237 zerofree $(PART_ROOT)
238 -fsck.ext4 -f -y $(PART_ROOT)
239 fsck.ext4 -f -y $(PART_ROOT)
240
241 sleep 10 #Ubuntu compiling: allow time to automount/dismount
242 kpartx -d -v $(DEVICE)
243 losetup -d $(DEVICE)
244
245 # Add padding at the end of the image (to fix alignment issues if the image is
246 # not copied to a block device)
247 dd if=/dev/zero bs=1M count=$(PADDING) >> $(IMG)
248
249 ifeq "$(BUILD_ARCH)" "armv5tel"
250 # Install u-boot for Orangepi Zero/Nanopi DUO into image 8KB
251 dd if=/usr/share/u-boot/orangepi_zero/u-boot-sunxi-with-spl.bin of=$(IMG) bs=1K seek=8 conv=notrunc
252 endif
253
254 # Compress Image
255 xz $(XZ_OPT) < $(IMG) > $(IMAGE_FILE)
256 rm -rf $(IMG) $(MNThdd)