/[smeserver]/builds_bin/build_ISO
ViewVC logotype

Contents of /builds_bin/build_ISO

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (show annotations) (download)
Fri Jun 30 23:01:26 2006 UTC (17 years, 10 months ago) by gordonr
Branch: MAIN
Changes since 1.3: +11 -10 lines
Use disttag throughout

1 #!/bin/sh
2
3 # Charlie Brady wrote on smeserver-developer:
4 # [I'm sure I've said this before, but ...] there's no new anaconda SRPM.
5 # The cdrom image I've been using comes directly from a CentOS one.
6
7 #
8 # What I've done is:
9 #
10 # - add CentOS/base/updates.img, made using mkcramfs from the updates directory
11 # - delete unwanted RPMs
12 # - add wanted RPMs
13 # - replace comps.xml
14 # - add install.cfg and update.cfg
15 # - edit isolinux/isolinux.cfg
16 #
17 # Run this in the a 7.0alphaXX directory, containing cdrom.image
18 # which contains the directory tree:
19
20
21 echo "Checking packages not installed in CentOS workstation group"
22 for package in anaconda anaconda-runtime bogl booty createrepo mkisofs zsync
23 do
24 rpm -q $package || exit "$package must be installed"
25 done
26
27 [ -d cdrom.image ] || (echo "No cdrom.image directory?"; exit 1)
28
29 distname='SME Server'
30 disttag='smeserver'
31 distvers=$(basename $(pwd))
32
33 [ -f cdrom.image/updates/anaconda ] && chmod a+rx cdrom.image/updates/anaconda
34
35 chmod -R a+rX cdrom.image
36
37 for img in product updates
38 do
39 /usr/bin/mkcramfs \
40 $(pwd)/cdrom.image/$img \
41 $(pwd)/cdrom.image/CentOS/base/$img.img
42 done
43
44 PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \
45 --withnumbers \
46 $(pwd)/cdrom.image/
47
48 PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \
49 $(pwd)/cdrom.image \
50 i386 > pkgorder
51
52 PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \
53 --withnumbers \
54 --fileorder pkgorder \
55 $(pwd)/cdrom.image/
56
57 rm -f $disttag-$distvers.iso smeserver.iso
58
59 cd cdrom.image
60
61 yum-arch .
62 createrepo .
63
64 bootimg='isolinux/isolinux.bin'
65 bootcat='isolinux/boot.cat'
66 #mkisopts='-r -N -L -d -D -J'
67 mkisopts='-r -J'
68 today="$(date '+%d %b %Y')"
69 mkisofs $mkisopts \
70 -V "$distname $distvers" \
71 -A "$distname created on $today" \
72 -b "$bootimg" \
73 -c "$bootcat" \
74 -no-emul-boot -boot-load-size 4 -boot-info-table \
75 -x lost+found \
76 -x CVS \
77 -o "../$disttag-$distvers".iso \
78 .
79
80 cd ..
81 /usr/lib/anaconda-runtime/implantisomd5 $disttag-$distvers.iso
82 dd if=/dev/zero bs=2048 count=150 >> $disttag-$distvers.iso
83 md5sum $disttag-$distvers.iso > $disttag-$distvers.iso.md5sum
84 ls -lRt > $disttag-$distvers.iso.ls-lRt
85 zsyncmake $disttag-$distvers.iso
86 mv $disttag-$distvers.iso $disttag.iso
87 ln -sf $disttag.iso $disttag-$distvers.iso
88
89 echo "Building SRPMS ISO"
90
91 mkisofs $mkisopts \
92 -V "$distname $distvers SRPMS" \
93 -A "$distname SRPMS created on $today" \
94 -x lost+found \
95 -x CVS \
96 -x cdrom.image \
97 -o "$disttag-$distvers-SRPMS".iso \
98 --graft-points \
99 ./SRPMS=SRPMS \
100 GPL=cdrom.image/GPL \
101 RPM-GPG-KEY=cdrom.image/RPM-GPG-KEY \
102 RPM-GPG-KEY-centos4=cdrom.image/RPM-GPG-KEY-centos4 \
103 RPM-GPG-KEY-SMEServer7=cdrom.image/RPM-GPG-KEY-SMEServer7
104
105 # That's it.
106

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed