]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/cdrom
cdrom: Do not write the temporary tarball to disk
[ipfire-2.x.git] / lfs / cdrom
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
eee037b8 4# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
cd1a2927 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
cd1a2927
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
cd1a2927
MT
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 #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
cd1a2927 18# #
cd1a2927
MT
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
0fbb45e9
MT
27VER = ipfire
28
cd1a2927 29THISAPP = cdrom
cd1a2927
MT
30TARGET = $(DIR_INFO)/$(THISAPP)
31
cd8ee302
MT
32# Fail when there is an error in the tar pipe
33SHELL=/bin/bash -o pipefail
34
ba3cbb0c 35ifeq "$(BUILD_PLATFORM)" "arm"
5f52a956
MT
36 TAR_OPTIONS =
37else
38 TAR_OPTIONS = --lzma
39endif
40
4790db5f
MT
41HAS_MEMTEST = 0
42HAS_IPXE = 0
43HAS_ISOLINUX = 0
44HAS_KERNEL = 1
45
46ifeq "$(BUILD_PLATFORM)" "x86"
47 HAS_MEMTEST = 1
48 HAS_IPXE = 1
49 HAS_ISOLINUX = 1
50endif
51
f096a2ea 52ifeq "$(BUILD_ARCH)" "armv5tel"
4790db5f 53 HAS_KERNEL = 0
f4330e19 54endif
7b4323c6 55
4790db5f
MT
56ISO_ARGS = -J -r -v \
57 -A "$(NAME) $(VERSION) $(BUILD_ARCH)" \
58 -V "$(NAME) $(VERSION) $(BUILD_ARCH)"
59
7b4323c6
MT
60ISOHYBRID_ARGS =
61
4790db5f
MT
62ifeq "$(HAS_ISOLINUX)" "1"
63 ISO_ARGS += \
64 -no-emul-boot \
65 -boot-load-size 4 \
66 -boot-info-table \
67 -b boot/isolinux/isolinux.bin \
68 -c boot/isolinux/boot.catalog
b7407cca
MT
69endif
70
3deac294
MT
71ifeq "$(EFI)" "1"
72 ISO_ARGS += \
0efda7ac 73 -eltorito-alt-boot \
5d657243 74 -e boot/isolinux/efiboot.img \
0efda7ac 75 -no-emul-boot
3deac294
MT
76
77 ISOHYBRID_ARGS += --uefi
78endif
79
de7c8df8
MT
80GRUB_EFI_MODULES = \
81 all_video \
82 at_keyboard \
83 boot \
84 bitmap_scale \
85 cat \
86 chain \
87 configfile \
88 disk \
89 echo \
90 efi_gop \
91 efi_uga \
92 ext2 \
93 extcmd \
94 fat \
95 file \
96 font \
97 fxterm_menu \
98 gfxterm \
99 gfxmenu \
100 gfxterm_background \
101 gzio \
102 halt \
103 help \
104 iso9660 \
105 jpeg \
106 loadbios \
107 loadenv \
108 loopback \
109 linux \
110 ls \
111 memdisk \
112 minicmd \
113 nativedisk \
114 normal \
115 ntfs \
116 part_gpt \
117 part_msdos \
118 png \
119 probe \
120 reboot \
121 regexp \
122 search \
123 search_fs_file \
124 search_fs_uuid \
125 search_label \
126 tar \
127 test \
128 tga \
129 true \
130 usb_keyboard
131
cd1a2927
MT
132###############################################################################
133# Top-level Rules
134###############################################################################
135
cd1a2927
MT
136install : $(TARGET)
137
fd0763dc 138check :
cd1a2927 139
fd0763dc 140download :
cd1a2927 141
fd0763dc 142md5 :
cd1a2927
MT
143
144###############################################################################
145# Installation Details
146###############################################################################
147
148$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
42e4fa80
MT
149 # Update /etc/system-release, because the string might have changed
150 # since stage2 has been executed..
151 echo "$(SYSTEM_RELEASE)" > /etc/system-release
152
cd8ee302 153 rm -rf /install/cdrom
1b453c76 154 mkdir -p /install/cdrom/doc
cd1a2927 155
1b453c76
MT
156 # Clear mtab (prevents .journal problems)
157 rm -vf /etc/mtab
9df6d70f
AF
158 echo > /etc/mtab
159
1b453c76 160 # Create filelist for packaging.
dc7d6b20 161 BUILDTARGET="$(BUILDTARGET)" BUILD_ARCH="$(BUILD_ARCH)" KVER="$(KVER)" \
1b453c76
MT
162 $(DIR_SRC)/src/scripts/archive.files \
163 $(DIR_SRC)/config/rootfiles/common \
cd8ee302 164 > $(DIR_TMP)/ROOTFILES
1b453c76 165
cd1a2927
MT
166 # Compress root filesystem
167 # Reason for this tar+untar+tar is removing of entries listed two or more in src/ROOTFILES
cd8ee302
MT
168 rm -rf $(DIR_TMP)/root && mkdir -p $(DIR_TMP)/root
169 tar -c --exclude='#*' --exclude='proc/*' --exclude='dev/pts/*' --exclude='tmp/*' \
170 --exclude='__pycache__' \
171 -C / --files-from=$(DIR_TMP)/ROOTFILES | tar -x -C $(DIR_TMP)/root
172 rm -f $(DIR_TMP)/ROOTFILES
173 mkdir $(DIR_TMP)/root/sys
174 cd $(DIR_TMP)/root && tar cf - * | xz $(XZ_OPT) > /install/cdrom/distro.img
175 rm -rf $(DIR_TMP)/root
03ad5f93 176
cd1a2927 177 # Other files
fab611b3 178 touch /install/cdrom/$(SNAME)-$(VERSION)-core$(CORE).media
03ad5f93 179 sed 's/VERSION/$(VERSION)/' $(DIR_SRC)/config/cdrom/README.txt > /install/cdrom/README.txt
f8031af5
MT
180 cp $(DIR_SRC)/doc/COPYING /install/cdrom/
181 cp $(DIR_SRC)/doc/{ChangeLog,packages-list.txt} /install/cdrom/doc
cd1a2927 182
1b453c76 183 mkdir -p /install/cdrom/boot/isolinux
4790db5f
MT
184
185ifeq "$(HAS_KERNEL)" "1"
bc8fe5ff 186 cp /boot/vmlinuz-$(KVER)-ipfire /install/cdrom/boot/isolinux/vmlinuz
b403b04a 187 dracut --force --early-microcode -a "installer" --strip --xz /install/cdrom/boot/isolinux/instroot $(KVER)-ipfire
4790db5f
MT
188endif
189
190ifeq "$(HAS_ISOLINUX)" "1"
191 dd if=/dev/zero bs=1k count=2 > /install/cdrom/boot/isolinux/boot.catalog
df2ac655 192 cp $(DIR_SRC)/config/syslinux/boot.png /install/cdrom/boot/isolinux/boot.png
1b453c76 193 cp /usr/share/syslinux/isolinux.bin /install/cdrom/boot/isolinux/isolinux.bin
df2ac655
MT
194 cp /usr/share/hwdata/pci.ids /install/cdrom/boot/isolinux/pci.ids
195 cp -vf /usr/share/syslinux/*.c32 /install/cdrom/boot/isolinux/
196 sed -e "s/VERSION/$(VERSION) - Core $(CORE)/g" \
197 $(DIR_SRC)/config/syslinux/syslinux.cfg \
198 > /install/cdrom/boot/isolinux/isolinux.cfg
1b453c76 199endif
5f387a1b 200
b7407cca
MT
201ifeq "$(HAS_MEMTEST)" "1"
202 # Install memtest
203 cp /usr/lib/memtest86+/memtest.bin /install/cdrom/boot/isolinux/memtest
204endif
205
0ce1e490
MT
206ifeq "$(HAS_IPXE)" "1"
207 cp /usr/share/ipfire-netboot/ipxe.lkrn /install/cdrom/boot/isolinux/netboot
208endif
209
5f52a956 210ifeq "$(EFI)" "1"
5765b49b
MT
211 # Generate embedded GRUB configuration
212 sed -e "s/NAME/$(NAME)/g" -e "s/VERSION/$(VERSION)/g" -e "s/ARCH/$(BUILD_ARCH)/g" \
213 $(DIR_SRC)/config/cdrom/grub-efi.cfg > /tmp/grub-efi.cfg
214
5f387a1b 215 # Build a GRUB EFI image
6b44fee7 216 mkdir -pv /install/cdrom/EFI/BOOT
5f387a1b 217 grub-mkimage \
a1eb7761 218 --format=$(GRUB_ARCH)-efi \
6b44fee7 219 --output=/install/cdrom/EFI/BOOT/boot$(EFI_ARCH).efi \
5765b49b 220 --config=/tmp/grub-efi.cfg \
5f387a1b
MT
221 --compression=xz \
222 --prefix=/EFI/BOOT \
de7c8df8 223 $$(for mod in $(GRUB_EFI_MODULES); do [ -f "/usr/lib/grub/$(GRUB_ARCH)-efi/$${mod}.mod" ] && echo "$${mod}"; done)
5f387a1b 224
6b44fee7
MT
225 # Install GRUB configuration
226 mkdir -pv /install/cdrom/EFI/BOOT
227 sed -e "s/NAME/$(NAME)/g" -e "s/VERSION/$(VERSION)/g" -e "s/ARCH/$(BUILD_ARCH)/g" \
228 < $(DIR_SRC)/config/cdrom/grub.cfg > /install/cdrom/EFI/BOOT/grub.cfg
229
230 # Create the EFI Eltorito image
231 dd if=/dev/zero of=/install/cdrom/boot/isolinux/efiboot.img bs=1k count=1440
232 mkdosfs -F 12 -n "IPFIRE_EFI" /install/cdrom/boot/isolinux/efiboot.img
233
5f387a1b
MT
234 # Mount the EFI image
235 mkdir -pv /install/efiboot.img
236 mount -o loop /install/cdrom/boot/isolinux/efiboot.img /install/efiboot.img
237
238 # Copy the bootloader into the image
239 mkdir -pv /install/efiboot.img/EFI/BOOT
6b44fee7
MT
240 cp -a /install/cdrom/EFI/BOOT/boot$(EFI_ARCH).efi \
241 /install/efiboot.img/EFI/BOOT/boot$(EFI_ARCH).efi
5f387a1b
MT
242
243 # Cleanup
244 umount /install/efiboot.img
6b44fee7 245 rm -rf /install/efiboot.img /tmp/grub-efi.cfg
5f52a956 246endif
5f387a1b 247
d7bf4fe7 248 cd /install/cdrom && find -type f ! -name md5sum.txt | grep -v "./boot" | \
1b453c76
MT
249 xargs md5sum > md5sum.txt
250
bc8fe5ff 251 mkdir -p /install/images
5f52a956
MT
252 cd /install/cdrom && mkisofs $(ISO_ARGS) \
253 -o /install/images/$(SNAME)-$(VERSION).$(BUILD_ARCH)-full-core$(CORE).iso .
254
092bc105 255ifeq "$(HAS_ISOLINUX)" "1"
7b4323c6 256 isohybrid $(ISOHYBRID_ARGS) /install/images/$(SNAME)-$(VERSION).$(BUILD_ARCH)-full-core$(CORE).iso
1b453c76 257endif