]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/flash-images
kernel: updated arm config and image build
[ipfire-2.x.git] / lfs / flash-images
CommitLineData
52ca8220
AF
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
ea9d53c8 4# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
52ca8220
AF
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
c42cbc86
MT
32DEVICE = $(shell losetup -f)
33PART_BOOT = /dev/mapper/$(patsubst /dev/%,%,$(DEVICE))p1
05656571 34PART_ROOT = /dev/mapper/$(patsubst /dev/%,%,$(DEVICE))p3
c42cbc86
MT
35
36ifeq "$(SCON)" "1"
02c36af4 37 IMAGE_FILE = /install/images/$(SNAME)-$(VERSION).2gb-ext4-scon.$(BUILD_ARCH)-full-core$(CORE).img.gz
c42cbc86 38else
02c36af4 39 IMAGE_FILE = /install/images/$(SNAME)-$(VERSION).2gb-ext4.$(BUILD_ARCH)-full-core$(CORE).img.gz
c42cbc86
MT
40endif
41
42FSTAB_FMT = UUID=%s %-8s %-4s %-10s %d %d\n
43
52ca8220
AF
44###############################################################################
45# Top-level Rules
46###############################################################################
47
48install : $(TARGET)
49
50check :
51
52download :
53
54md5 :
55
56###############################################################################
57# Installation Details
58###############################################################################
52ca8220 59MNThdd := /install/harddisk
c42cbc86 60IMG := /install/images/image.img
8a5ef45f
SS
61
62# All sizes in blocks
dc7d6b20 63ifeq "$(BUILD_PLATFORM)" "arm"
c42cbc86 64 BOOTLOADER =
8a5ef45f
SS
65 S_OFFSET = 8192
66
67 # FAT32
68 PART_TYPE = c
69else
c42cbc86
MT
70 BOOTLOADER = grub
71 S_OFFSET = 8192
8a5ef45f
SS
72
73 # Logical
74 PART_TYPE = L
75endif
76
0a21d63f 77# /boot: 100MB - OFFSET
02c36af4 78# / : 1200 MB
0a21d63f 79S_BOOT := $(shell echo $$(( 204800 - $(S_OFFSET) )))
02c36af4 80S_ROOT := 2477600
52ca8220 81
7051d2af
MT
82PADDING = 100 # MB
83
52ca8220 84$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
c42cbc86
MT
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)
52ca8220 93
c42cbc86 94 # Write Partition table
05656571 95 echo -e "$(S_OFFSET),$(S_BOOT),$(PART_TYPE),*\n,0,0\n$$(( $(S_BOOT) + $(S_OFFSET) )),$(S_ROOT),L\n" \
f3e86ec5 96 | sfdisk -uS $(DEVICE)
025e1fe1 97 -echo -e "d\n2\nw\n\q\n" | fdisk $(DEVICE)
52ca8220 98
c42cbc86 99 kpartx -v -a $(DEVICE)
52ca8220
AF
100
101 # Format them
8a5ef45f 102ifeq "$(PART_TYPE)" "c"
c42cbc86 103 mkfs.vfat $(PART_BOOT)
185f92e1 104else
c42cbc86 105 mkfs.ext2 -F $(PART_BOOT)
185f92e1 106endif
c42cbc86 107 mkfs.ext4 -O ^has_journal,extent -F $(PART_ROOT)
52ca8220 108
e9b5c815
AF
109 # Most systems that use Flashimages has no RTC at boot
110 # so the interval check should disables
c42cbc86
MT
111 tune2fs -i0 $(PART_ROOT)
112
113 # Mount root partition
114 mount $(PART_ROOT) $(MNThdd)
e9b5c815 115
c42cbc86
MT
116 # Mount boot partition
117 mkdir -pv $(MNThdd)/boot
118 mount $(PART_BOOT) $(MNThdd)/boot
52ca8220 119
56e211f6 120 # Install Pandaboard MLO and uboot first
dc7d6b20 121ifeq "$(BUILD_PLATFORM)" "arm"
9831c245 122 cp -v /boot/MLO $(MNThdd)/boot/
7284262a 123 cp -v /boot/u-boot.img $(MNThdd)/boot/
9831c245
AF
124 sync
125 umount $(MNThdd)/boot
c42cbc86 126 mount $(PART_BOOT) $(MNThdd)/boot
9831c245
AF
127endif
128
52ca8220 129 # Install IPFire
dc7d6b20 130ifneq "$(BUILD_PLATFORM)" "arm"
c061d66f 131 tar -x --xz -C $(MNThdd)/ -f /install/cdrom/distro.img
9b35b114
AF
132else
133 tar -x -C $(MNThdd)/ -f /install/cdrom/distro.img
134endif
6fafd272
AF
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
c42cbc86
MT
138
139ifeq "$(SCON)" "1"
ea9d53c8 140 # Disable console on tty2-6
c42cbc86
MT
141 sed -i -e "s|2:2345:respawn:|#2:2345:respawn:|g" $(MNThdd)/etc/inittab
142 sed -i -e "s|3:2345:respawn:|#3:2345:respawn:|g" $(MNThdd)/etc/inittab
143 sed -i -e "s|4:2345:respawn:|#4:2345:respawn:|g" $(MNThdd)/etc/inittab
144 sed -i -e "s|5:2345:respawn:|#5:2345:respawn:|g" $(MNThdd)/etc/inittab
145 sed -i -e "s|6:2345:respawn:|#6:2345:respawn:|g" $(MNThdd)/etc/inittab
c42cbc86 146
dc7d6b20 147ifeq "$(BUILD_PLATFORM)" "arm"
0a21d63f
AF
148 sed -i -e "s|SERIAL-CONSOLE=OFF|SERIAL-CONSOLE=ON|g" $(MNThdd)/boot/uEnv.txt
149 sed -i -e "s|xxxDTBSUNXIxxx|sun8i-h2-plus-ipfire-nano.dtb|" $(MNThdd)/boot/uEnv.txt
150endif
151else
152ifeq "$(BUILD_PLATFORM)" "arm"
153 sed -i -e "s|xxxDTBSUNXIxxx|sun7i-a20-bananapi.dtb|" $(MNThdd)/boot/uEnv.txt
c42cbc86
MT
154endif
155endif
156
185f92e1 157 -touch $(MNThdd)/lib/modules/$(KVER)-ipfire/modules.dep
52ca8220
AF
158 mkdir $(MNThdd)/proc
159 mount --bind /proc $(MNThdd)/proc
160 mount --bind /dev $(MNThdd)/dev
161 mount --bind /sys $(MNThdd)/sys
c42cbc86 162
52ca8220 163 chroot $(MNThdd) /usr/bin/perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
c42cbc86
MT
164
165 # Create /etc/fstab
166 printf "$(FSTAB_FMT)" "$$(blkid -o value -s UUID $(PART_BOOT))" "/boot" \
167 "auto" "defaults" 1 2 > $(MNThdd)/etc/fstab
168 printf "$(FSTAB_FMT)" "$$(blkid -o value -s UUID $(PART_ROOT))" "/" \
169 "auto" "defaults" 1 1 >> $(MNThdd)/etc/fstab
edc2be70 170
c42cbc86
MT
171ifeq "$(BOOTLOADER)" "grub"
172ifeq "$(SCON)" "1"
173 # Enable serial console on GRUB
7f6e0425 174 echo "GRUB_TERMINAL=\"serial\"" >> $(MNThdd)/etc/default/grub
c42cbc86 175 echo "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=115200\"" >> $(MNThdd)/etc/default/grub
52ca8220 176
c42cbc86 177 sed -i -e "s|panic=10|& console=ttyS0,115200n8|g" $(MNThdd)/etc/default/grub
185f92e1 178endif
dfc4bc56 179
c42cbc86
MT
180 # Create configuration
181 mkdir -pv $(MNThdd)/boot/grub
182 chroot $(MNThdd) grub-mkconfig -o /boot/grub/grub.cfg
9831c245 183
38956241
AF
184 # Insert the UUID because grub-mkconfig often fails to
185 # detect that correctly
c42cbc86 186 sed -i $(MNThdd)/boot/grub/grub.cfg \
efd02229 187 -e "s/root=[A-Za-z0-9\/=-]*/root=UUID=$$(blkid -o value -s UUID $(PART_ROOT))/g"
52ca8220 188
c42cbc86 189 # Install GRUB
5021ee33 190 grub-install --force --recheck --no-floppy --target=i386-pc \
c42cbc86 191 --root-directory=$(MNThdd) $(DEVICE)
185f92e1 192endif
52ca8220 193
920f1950
AF
194 # Set ramdisk mode to automatic
195 echo RAMDISK_MODE=2 > $(MNThdd)/etc/sysconfig/ramdisk
196
a2454679
MT
197 # Automatically resize the root partition to its maximum size at first boot
198 touch $(MNThdd)/.partresize
199
c42cbc86
MT
200 # Unmount
201 umount $(MNThdd)/proc
202 umount $(MNThdd)/sys
203 umount $(MNThdd)/dev
52ca8220
AF
204 umount $(MNThdd)/boot
205 umount $(MNThdd)
206
c42cbc86 207 # zerofree the ext2 images to get better compression
8a5ef45f 208ifneq "$(PART_TYPE)" "c"
c42cbc86
MT
209 zerofree $(PART_BOOT)
210 -fsck.ext2 -f -y $(PART_BOOT)
211 fsck.ext2 -f -y $(PART_BOOT)
185f92e1 212endif
c42cbc86
MT
213 zerofree $(PART_ROOT)
214 -fsck.ext4 -f -y $(PART_ROOT)
215 fsck.ext4 -f -y $(PART_ROOT)
dfc4bc56 216
e0b9a600 217 sleep 10 #Ubuntu compiling: allow time to automount/dismount
c42cbc86
MT
218 kpartx -d -v $(DEVICE)
219 losetup -d $(DEVICE)
52ca8220 220
7051d2af
MT
221 # Add padding at the end of the image (to fix alignment issues if the image is
222 # not copied to a block device)
223 dd if=/dev/zero bs=1M count=$(PADDING) >> $(IMG)
224
dc7d6b20 225ifeq "$(BUILD_PLATFORM)" "arm"
0a21d63f
AF
226ifeq "$(SCON)" "1"
227 # Install u-boot for Orangepi Zero/Nanopi DUO into image 8KB
228 dd if=/usr/share/u-boot/orangepi_zero/u-boot-sunxi-with-spl.bin of=$(IMG) bs=1K seek=8 conv=notrunc
229else
56e211f6
AF
230 # Install u-boot for LeMaker Banana Pi into image 8KB
231 dd if=/usr/share/u-boot/banana_pi/u-boot-sunxi-with-spl.bin of=$(IMG) bs=1K seek=8 conv=notrunc
0a21d63f 232endif
56e211f6
AF
233endif
234
52ca8220 235 # Compress Image
c42cbc86
MT
236 pigz -f9 < $(IMG) > $(IMAGE_FILE)
237 rm -rf $(IMG) $(MNThdd)