/[smeserver]/builds_bin/build_installer
ViewVC logotype

Diff of /builds_bin/build_installer

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

Revision 1.1 by gordonr, Mon Oct 10 03:15:53 2005 UTC Revision 1.7 by slords, Tue Jul 3 17:54:41 2007 UTC
# Line 1  Line 1 
1  #!/bin/sh  #!/bin/sh
2    
3  # Charlie Brady wrote on smeserver-developer:  [ -d cdrom.image ] || (echo "No cdrom.image directory?"; exit 1)
 # [I'm sure I've said this before, but ...] there's no new anaconda SRPM.  
 # The cdrom image I've been using comes directly from a CentOS one.  
   
 #  
 # What I've done is:  
 #  
 # - add CentOS/base/updates.img, made using mkcramfs from the updates directory  
 # - delete unwanted RPMs  
 # - add wanted RPMs  
 # - replace comps.xml  
 # - add install.cfg and update.cfg  
 # - edit isolinux/isolinux.cfg  
 #  
 # Run this in the a 7.0alphaXX directory, containing cdrom.image  
 # which contains the directory tree:  
   
   
 echo "Checking packages not installed in CentOS workstation group"  
 for package in anaconda anaconda-runtime bogl booty createrepo mkisofs zsync  
 do  
     rpm -q $package || exit "$package must be installed"  
 done  
4    
5  distname='SME Server'  distname='SME Server'
6    distrel=7
7  distvers=$(basename $(pwd))  distvers=$(basename $(pwd))
8    distarch=$(uname -i)
 for img in product updates  
 do  
         /usr/bin/mkcramfs \  
         $(pwd)/cdrom.image/$img \  
         $(pwd)/cdrom.image/CentOS/base/$img.img  
 done  
9    
10  PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \  PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \
11          --withnumbers \          --withnumbers \
# Line 40  PYTHONPATH=/usr/lib/anaconda/ /usr/lib/a Line 13  PYTHONPATH=/usr/lib/anaconda/ /usr/lib/a
13    
14  PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \  PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \
15          $(pwd)/cdrom.image \          $(pwd)/cdrom.image \
16          i386 > pkgorder          $distarch > pkgorder
17    
18  # Link to necessary rpms to rebuild installer  for PKG in /releases/$distrel/smeextras/$distarch/RPMS/*.rpm
19  for rpm in anaconda-10.1.1.19-1.centos4.i386.rpm \  do
20             anaconda-help-10.1.0-1.centos4.noarch.rpm \      PKGFILE=$(basename $PKG)
21             anaconda-runtime-10.1.1.19-1.centos4.i386.rpm \      if [ ! -f $(pwd)/cdrom.image/SME/$PKGFILE ]
22             atk-1.8.0-2.i386.rpm \      then
23             audiofile-0.2.6-1.i386.rpm \          ln -sf $PKG  $(pwd)/cdrom.image/SME/
24             bogl-0.1.18-4.i386.rpm \      fi
            bogl-bterm-0.1.18-4.i386.rpm \  
            booty-0.44-1.i386.rpm \  
            busybox-anaconda-1.00.rc1-5.i386.rpm \  
            comps-extras-10.1-1.noarch.rpm \  
            esound-0.2.35-2.i386.rpm \  
            fonts-arabic-1.5-3.noarch.rpm \  
            fonts-bengali-0.1-3.noarch.rpm \  
            fonts-xorg-base-6.8.1.1-1.EL.1.noarch.rpm \  
            gdk-pixbuf-0.22.0-16.el4.i386.rpm \  
            gnome-python2-2.6.0-3.i386.rpm \  
            gnome-python2-applet-2.6.0-3.i386.rpm \  
            gnome-python2-canvas-2.6.0-3.i386.rpm \  
            gnome-python2-nautilus-2.6.0-3.i386.rpm \  
            gtk2-2.4.13-14.i386.rpm \  
            joe-3.1-6.i386.rpm \  
            libart_lgpl-2.3.16-3.i386.rpm \  
            libgnomecanvas-2.8.0-1.i386.rpm \  
            memtest86+-1.26-2.i386.rpm \  
            open-1.4-21.i386.rpm \  
            pango-1.6.0-9.i386.rpm \  
            parted-1.6.19-1.EL.i386.rpm \  
            pygtk2-2.4.0-1.i386.rpm \  
            pyparted-1.6.8-2.i386.rpm \  
            redhat-artwork-0.120-1.1E.centos4.1.i386.rpm \  
            redhat-logos-1.1.25-1.centos4.3.noarch.rpm \  
            rsh-0.17-25.3.i386.rpm \  
            system-config-date-1.7.15-0.RHEL4.1.noarch.rpm \  
            ttfonts-bn-1.8-1.noarch.rpm \  
            ttfonts-gu-1.8-1.noarch.rpm \  
            ttfonts-hi-1.8-1.noarch.rpm \  
            ttfonts-ja-1.2-36.EL4.0.noarch.rpm \  
            ttfonts-ko-1.0.11-32.2.noarch.rpm \  
            ttfonts-pa-1.8-1.noarch.rpm \  
            ttfonts-ta-1.8-1.noarch.rpm \  
            ttfonts-zh_CN-2.14-6.noarch.rpm \  
            ttfonts-zh_TW-2.11-28.noarch.rpm \  
            urw-fonts-2.2-6.noarch.rpm \  
            vnc-server-4.0-8.1.i386.rpm \  
            xorg-x11-6.8.2-1.EL.13.6.i386.rpm; do  
     ln -fs /mirrors/centos/4.1/os/i386/CentOS/RPMS/$rpm $(pwd)/cdrom.image/CentOS/RPMS/  
25  done  done
26    
27  PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \  PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \
         --comp dist-4.1 \  
         --pkgorder pkgorder \  
         --release "$distname" \  
28          --product "$distname" \          --product "$distname" \
29          --version 7.0 \          --version "$distrel.0" \
30            --release "$distname" \
31            --pkgorder pkgorder \
32          $(pwd)/cdrom.image/          $(pwd)/cdrom.image/
33    
34  # Remove previous linked files  # Remove previous linked files
35  find $(pwd)/cdrom.image/CentOS/RPMS/ -type l | xargs rm -f  find $(pwd)/cdrom.image/CentOS/RPMS/ -type l | xargs rm -f
36    
37  # Copy updated isolinux files  # Copy updated isolinux files
38  sudo cp -fR /builds/isolinux/* $(pwd)/cdrom.image/isolinux/  sudo cp -f /builds/isolinux/* $(pwd)/cdrom.image/isolinux/
39    
40  cd cdrom.image  sed -i 's@1,2,3@1@' $(pwd)/cdrom.image/.discinfo
41    
42  /builds/bin/build_IS0  echo "You now need to run /builds/bin/build_ISO as non-root"
43    
44  # That's it.  # That's it.


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

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