]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/cdrom
vpnmain.cgi: Disable compression by default
[ipfire-2.x.git] / lfs / cdrom
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
fab611b3 4# Copyright (C) 2007-2013 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
dc7d6b20 32ifeq "$(BUILD_PLATFORM)" "arm"
185f92e1
MT
33 TAR_OPTIONS =
34else
c061d66f 35 TAR_OPTIONS = --xz
185f92e1
MT
36endif
37
c061d66f 38# Enable multi-threaded compression for LZMA
348ba8e2 39export XZ_OPT = --threads=0
c061d66f 40
cd1a2927
MT
41###############################################################################
42# Top-level Rules
43###############################################################################
44
cd1a2927
MT
45install : $(TARGET)
46
fd0763dc 47check :
cd1a2927 48
fd0763dc 49download :
cd1a2927 50
fd0763dc 51md5 :
cd1a2927
MT
52
53###############################################################################
54# Installation Details
55###############################################################################
56
57$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
42e4fa80
MT
58 # Update /etc/system-release, because the string might have changed
59 # since stage2 has been executed..
60 echo "$(SYSTEM_RELEASE)" > /etc/system-release
61
cd1a2927 62 rm -rf /install/cdrom /tmp/*
1b453c76 63 mkdir -p /install/cdrom/doc
cd1a2927 64
1b453c76
MT
65 # Clear mtab (prevents .journal problems)
66 rm -vf /etc/mtab
9df6d70f
AF
67 echo > /etc/mtab
68
1b453c76 69 # Create filelist for packaging.
dc7d6b20 70 BUILDTARGET="$(BUILDTARGET)" BUILD_ARCH="$(BUILD_ARCH)" KVER="$(KVER)" \
1b453c76
MT
71 $(DIR_SRC)/src/scripts/archive.files \
72 $(DIR_SRC)/config/rootfiles/common \
73 > /tmp/ROOTFILES
74
cd1a2927
MT
75 # Compress root filesystem
76 # Reason for this tar+untar+tar is removing of entries listed two or more in src/ROOTFILES
50f96334 77 tar -c -C / --files-from=/tmp/ROOTFILES \
90c973a6 78 -f /$(SNAME).tar --exclude='#*' --exclude='dev/pts/*' \
5609904b 79 --exclude='proc/*' --exclude='tmp/ROOTFILES'
50f96334 80 rm -f /tmp/ROOTFILES
cd1a2927
MT
81 tar -x -C /tmp -f /$(SNAME).tar
82 rm -f /$(SNAME).tar
069680ac 83 @mkdir /tmp/sys
5315fae6 84 cd /tmp && tar cf /install/cdrom/distro.img $(TAR_OPTIONS) * && rm -rf *
03ad5f93 85
cd1a2927 86 # Other files
fab611b3 87 touch /install/cdrom/$(SNAME)-$(VERSION)-core$(CORE).media
03ad5f93 88 sed 's/VERSION/$(VERSION)/' $(DIR_SRC)/config/cdrom/README.txt > /install/cdrom/README.txt
f8031af5
MT
89 cp $(DIR_SRC)/doc/COPYING /install/cdrom/
90 cp $(DIR_SRC)/doc/{ChangeLog,packages-list.txt} /install/cdrom/doc
cd1a2927 91
0afc6d83 92 # Make the ISO
1b453c76
MT
93 mkdir -p /install/cdrom/boot/isolinux
94 dd if=/dev/zero bs=1k count=2 > /install/cdrom/boot/isolinux/boot.catalog
dc7d6b20 95ifneq "$(BUILD_PLATFORM)" "arm"
bc8fe5ff 96 cp /boot/vmlinuz-$(KVER)-ipfire /install/cdrom/boot/isolinux/vmlinuz
2d38ca79 97 dracut --force -a "installer" --strip --xz /install/cdrom/boot/isolinux/instroot $(KVER)-ipfire
df2ac655 98 cp $(DIR_SRC)/config/syslinux/boot.png /install/cdrom/boot/isolinux/boot.png
1b453c76 99 cp /usr/lib/memtest86+/memtest.bin /install/cdrom/boot/isolinux/memtest
89fd5ae0 100 cp /usr/share/ipfire-netboot/ipxe.lkrn /install/cdrom/boot/isolinux/netboot
1b453c76 101 cp /usr/share/syslinux/isolinux.bin /install/cdrom/boot/isolinux/isolinux.bin
df2ac655
MT
102 cp /usr/share/hwdata/pci.ids /install/cdrom/boot/isolinux/pci.ids
103 cp -vf /usr/share/syslinux/*.c32 /install/cdrom/boot/isolinux/
104 sed -e "s/VERSION/$(VERSION) - Core $(CORE)/g" \
105 $(DIR_SRC)/config/syslinux/syslinux.cfg \
106 > /install/cdrom/boot/isolinux/isolinux.cfg
1b453c76 107endif
d7bf4fe7 108 cd /install/cdrom && find -type f ! -name md5sum.txt | grep -v "./boot" | \
1b453c76
MT
109 xargs md5sum > md5sum.txt
110
bc8fe5ff 111 mkdir -p /install/images
dc7d6b20 112ifeq "$(BUILD_PLATFORM)" "arm"
1b453c76 113 cd /install/cdrom && mkisofs -J -r -V "$(NAME)_$(VERSION)" \
dc7d6b20 114 . > /install/images/$(SNAME)-$(VERSION).$(BUILD_ARCH)-full-core$(CORE).iso
1b453c76 115else
03ad5f93
MT
116 cd /install/cdrom && mkisofs -J -r -V "$(NAME)_$(VERSION)" \
117 -b boot/isolinux/isolinux.bin -no-emul-boot -boot-load-size 4 -boot-info-table \
dc7d6b20
MT
118 -c boot/isolinux/boot.catalog . > /install/images/$(SNAME)-$(VERSION).$(BUILD_ARCH)-full-core$(CORE).iso
119 isohybrid /install/images/$(SNAME)-$(VERSION).$(BUILD_ARCH)-full-core$(CORE).iso
1b453c76 120endif