]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/cdrom
This fixes Bug #0000642 - clearer description for p2p-block buttons on outgoing firew...
[people/pmueller/ipfire-2.x.git] / lfs / cdrom
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
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 ###############################################################################
33 # Top-level Rules
34 ###############################################################################
35
36 install : $(TARGET)
37
38 check :
39
40 download :
41
42 md5 :
43
44 ###############################################################################
45 # Installation Details
46 ###############################################################################
47
48 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
49 rm -rf /install/cdrom /tmp/*
50
51 #Clear mtab (prevents .journal problems)
52 echo > /etc/mtab
53
54 # Compress root filesystem
55 # Reason for this tar+untar+tar is removing of entries listed two or more in src/ROOTFILES
56 mkdir -p /install/cdrom/doc
57 find $(DIR_SRC)/config/rootfiles/common -maxdepth 1 -type f | xargs cat >> /tmp/ROOTFILES
58 find $(DIR_SRC)/config/rootfiles/ver_$(ED) -maxdepth 1 -type f | xargs cat >> /tmp/ROOTFILES
59 find $(DIR_SRC)/config/rootfiles/core/*/files -maxdepth 1 -type f | xargs cat >> /tmp/ROOTFILES
60 sed -e "s/KVER/$(KVER)/g" -i /tmp/ROOTFILES
61
62 tar -c -C / --files-from=/tmp/ROOTFILES \
63 -f /$(SNAME).tar --exclude='#*' --exclude='dev/pts/*' \
64 --exclude='proc/*' --exclude='tmp/ROOTFILES'
65 rm -f /tmp/ROOTFILES
66 tar -x -C /tmp -f /$(SNAME).tar
67 rm -f /$(SNAME).tar
68 @mkdir /tmp/sys
69 cd /tmp && tar cf /install/cdrom/$(SNAME)-$(VERSION).tlz --lzma * && rm -rf *
70
71 # Other files
72 sed 's/VERSION/$(VERSION)/' $(DIR_SRC)/config/cdrom/README.txt > /install/cdrom/README.txt
73 cp $(DIR_SRC)/doc/COPYING /install/cdrom/
74 cp $(DIR_SRC)/doc/{ChangeLog,packages-list.txt} /install/cdrom/doc
75
76 # Configuration
77 mkdir -p /install/cdrom/boot
78 cp $(DIR_SRC)/config/syslinux/unattended.conf /install/cdrom/boot/unattended.conf
79
80 # Make the ISO
81 mkdir -p /install/cdrom/boot/isolinux; \
82 dd if=/dev/zero bs=1k count=2 > /install/cdrom/boot/isolinux/boot.catalog; \
83 cp /install/images/initrd /install/cdrom/boot/isolinux/instroot; \
84 cp /boot/vmlinuz-$(KVER)-ipfire /install/cdrom/boot/isolinux/vmlinuz; \
85 cp $(DIR_SRC)/config/syslinux/syslinux.cfg /install/cdrom/boot/isolinux/isolinux.cfg; \
86 cp $(DIR_SRC)/config/syslinux/boot.msg /install/cdrom/boot/isolinux/boot.msg; \
87 cp $(DIR_SRC)/config/syslinux/options.msg /install/cdrom/boot/isolinux/options.msg; \
88 cp $(DIR_SRC)/config/syslinux/splash.lss /install/cdrom/boot/isolinux/splash.lss; \
89 cp /usr/lib/memtest86+/memtest.bin /install/cdrom/boot/isolinux/memtest; \
90 cp /usr/lib/syslinux/isolinux.bin /install/cdrom/boot/isolinux/isolinux.bin; \
91 cd /install/cdrom && find -type f ! -name md5sum.txt | grep -v "./boot" | \
92 xargs md5sum > md5sum.txt; \
93 cd /install/cdrom && mkisofs -J -r -V "$(NAME)_$(VERSION)" \
94 -b boot/isolinux/isolinux.bin -no-emul-boot -boot-load-size 4 -boot-info-table \
95 -c boot/isolinux/boot.catalog . > /install/images/$(SNAME)-$(VERSION).$(MACHINE)-$(ED)-core$(CORE).iso