]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/cdrom
cdrom: Build EFI-enabled ISO image
[ipfire-2.x.git] / lfs / cdrom
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2013 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 = cdrom
30 TARGET = $(DIR_INFO)/$(THISAPP)
31
32 ifeq "$(MACHINE_TYPE)" "arm"
33 TAR_OPTIONS =
34 else
35 TAR_OPTIONS = --lzma
36 endif
37
38 ISO_ARGS = -J -r -v \
39 -A "$(NAME) $(VERSION)" \
40 -V "$(NAME)_$(VERSION)" \
41 -no-emul-boot \
42 -boot-load-size 4 \
43 -boot-info-table \
44 -b boot/isolinux/isolinux.bin \
45 -c boot/isolinux/boot.catalog
46
47 ifeq "$(EFI)" "1"
48 ISO_ARGS += \
49 -eltorito-alt-boot \
50 -e boot/isolinux/efiboot.img
51 endif
52
53 ###############################################################################
54 # Top-level Rules
55 ###############################################################################
56
57 install : $(TARGET)
58
59 check :
60
61 download :
62
63 md5 :
64
65 ###############################################################################
66 # Installation Details
67 ###############################################################################
68
69 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
70 # Update /etc/system-release, because the string might have changed
71 # since stage2 has been executed..
72 echo "$(SYSTEM_RELEASE)" > /etc/system-release
73
74 rm -rf /install/cdrom /tmp/*
75 mkdir -p /install/cdrom/doc
76
77 # Clear mtab (prevents .journal problems)
78 rm -vf /etc/mtab
79 echo > /etc/mtab
80
81 # Create filelist for packaging.
82 BUILDTARGET="$(BUILDTARGET)" BUILD_ARCH="$(BUILD_ARCH)" KVER="$(KVER)" \
83 $(DIR_SRC)/src/scripts/archive.files \
84 $(DIR_SRC)/config/rootfiles/common \
85 > /tmp/ROOTFILES
86
87 # Compress root filesystem
88 # Reason for this tar+untar+tar is removing of entries listed two or more in src/ROOTFILES
89 tar -c --exclude='#*' --exclude='proc/*' --exclude='dev/pts/*' --exclude='tmp/ROOTFILES' \
90 -C / --files-from=/tmp/ROOTFILES -f /$(SNAME).tar
91 rm -f /tmp/ROOTFILES
92 tar -x -C /tmp -f /$(SNAME).tar
93 rm -f /$(SNAME).tar
94 @mkdir /tmp/sys
95 cd /tmp && tar cf - * | xz $(XZ_OPT) > /install/cdrom/distro.img && rm -rf *
96
97 # Other files
98 touch /install/cdrom/$(SNAME)-$(VERSION)-core$(CORE).media
99 sed 's/VERSION/$(VERSION)/' $(DIR_SRC)/config/cdrom/README.txt > /install/cdrom/README.txt
100 cp $(DIR_SRC)/doc/COPYING /install/cdrom/
101 cp $(DIR_SRC)/doc/{ChangeLog,packages-list.txt} /install/cdrom/doc
102
103 # Make the ISO
104 mkdir -p /install/cdrom/boot/isolinux
105 dd if=/dev/zero bs=1k count=2 > /install/cdrom/boot/isolinux/boot.catalog
106 ifneq "$(BUILD_PLATFORM)" "arm"
107 cp /boot/vmlinuz-$(KVER)-ipfire /install/cdrom/boot/isolinux/vmlinuz
108 dracut --force -a "installer" --strip --xz /install/cdrom/boot/isolinux/instroot $(KVER)-ipfire
109 cp $(DIR_SRC)/config/syslinux/boot.png /install/cdrom/boot/isolinux/boot.png
110 cp /usr/lib/memtest86+/memtest.bin /install/cdrom/boot/isolinux/memtest
111 cp /usr/share/ipfire-netboot/ipxe.lkrn /install/cdrom/boot/isolinux/netboot
112 cp /usr/share/syslinux/isolinux.bin /install/cdrom/boot/isolinux/isolinux.bin
113 ifeq "$(EFI)" "1"
114 dd if=/dev/zero of=/install/cdrom/boot/isolinux/efiboot.img bs=1k count=1440
115 mkdosfs -F 12 -n "IPFIRE_EFI" /install/cdrom/boot/isolinux/efiboot.img
116
117 # XXX Some bootloader needs to be put in this image
118 endif
119 cp /usr/share/hwdata/pci.ids /install/cdrom/boot/isolinux/pci.ids
120 cp -vf /usr/share/syslinux/*.c32 /install/cdrom/boot/isolinux/
121 sed -e "s/VERSION/$(VERSION) - Core $(CORE)/g" \
122 $(DIR_SRC)/config/syslinux/syslinux.cfg \
123 > /install/cdrom/boot/isolinux/isolinux.cfg
124 endif
125 cd /install/cdrom && find -type f ! -name md5sum.txt | grep -v "./boot" | \
126 xargs md5sum > md5sum.txt
127
128 mkdir -p /install/images
129 ifeq "$(BUILD_PLATFORM)" "arm"
130 cd /install/cdrom && mkisofs -J -r -V "$(NAME)_$(VERSION)" \
131 . > /install/images/$(SNAME)-$(VERSION).$(BUILD_ARCH)-full-core$(CORE).iso
132 else
133 cd /install/cdrom && mkisofs $(ISO_ARGS) \
134 -o /install/images/$(SNAME)-$(VERSION).$(BUILD_ARCH)-full-core$(CORE).iso .
135
136 ifeq "$(EFI)" "1"
137 isohybrid --uefi /install/images/$(SNAME)-$(VERSION).$(BUILD_ARCH)-full-core$(CORE).iso
138 else
139 isohybrid /install/images/$(SNAME)-$(VERSION).$(BUILD_ARCH)-full-core$(CORE).iso
140 endif
141 endif