/[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.11 by slords, Sun Dec 23 22:24:41 2007 UTC
# Line 1  Line 1 
1  #!/bin/sh  #!/bin/sh
2    
 # Charlie Brady wrote on smeserver-developer:  
 # [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  
   
3  distname='SME Server'  distname='SME Server'
4  distvers=$(basename $(pwd))  distvers=$(basename $(pwd))
5    distrel=${distvers:0:1}
6    distarch=$(uname -i)
7    
8  for img in product updates  if ! [ -d $distarch ]
9  do  then
10          /usr/bin/mkcramfs \      echo "No $distarch directory?"
11          $(pwd)/cdrom.image/$img \      exit 1
12          $(pwd)/cdrom.image/CentOS/base/$img.img  fi
13  done  
14    if [ "$distrel" == "7" ]
15  PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \  then
16        PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \
17            --productpath SME \
18          --withnumbers \          --withnumbers \
19          $(pwd)/cdrom.image/          $(pwd)/$distarch/
20    
21        PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \
22            --product SME \
23            $(pwd)/$distarch \
24            $distarch > pkgorder.$distarch
25    
26        for PKG in /releases/$distrel/smeextras/$distarch/RPMS/*.rpm
27        do
28            PKGFILE=$(basename $PKG)
29            if [ ! -f $(pwd)/$distarch/SME/RPMS/$PKGFILE ]
30            then
31                ln -sf $PKG $(pwd)/$distarch/SME/RPMS/
32            fi
33        done
34    
35  PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \      PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \
36          $(pwd)/cdrom.image \          --product "$distname" \
37          i386 > pkgorder          --version "$distrel.0" \
   
 # Link to necessary rpms to rebuild installer  
 for rpm in anaconda-10.1.1.19-1.centos4.i386.rpm \  
            anaconda-help-10.1.0-1.centos4.noarch.rpm \  
            anaconda-runtime-10.1.1.19-1.centos4.i386.rpm \  
            atk-1.8.0-2.i386.rpm \  
            audiofile-0.2.6-1.i386.rpm \  
            bogl-0.1.18-4.i386.rpm \  
            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/  
 done  
   
 PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \  
         --comp dist-4.1 \  
         --pkgorder pkgorder \  
38          --release "$distname" \          --release "$distname" \
39            --prodpath SME \
40            --pkgorder pkgorder.$distarch \
41            $(pwd)/$distarch/
42    
43        sed -i 's@1,2,3@1@' $(pwd)/$distarch/.discinfo
44    else
45        for PKG in /releases/testing/$distrel/smeextras/$distarch/RPMS/*.rpm
46        do
47            PKGFILE=$(basename $PKG)
48            if [ ! -f $(pwd)/$distarch/SME/$PKGFILE ]
49            then
50                ln -sf $PKG $(pwd)/$distarch/SME/
51            fi
52        done
53    
54        PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \
55          --product "$distname" \          --product "$distname" \
56          --version 7.0 \          --version "$distrel.0" \
57          $(pwd)/cdrom.image/          --release "$distname" \
58            --prodpath SME \
59            --bugurl http://bugs.contribs.org/ \
60            $(pwd)/$distarch/
61    fi
62    
63  # Remove previous linked files  # Remove previous linked files
64  find $(pwd)/cdrom.image/CentOS/RPMS/ -type l | xargs rm -f  find $(pwd)/$distarch/SME/ -type l | xargs rm -f
65    
66  # Copy updated isolinux files  # Copy updated isolinux files
67  sudo cp -fR /builds/isolinux/* $(pwd)/cdrom.image/isolinux/  sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/
68    
69  cd cdrom.image  sudo chown -R 9000:9001 $(pwd)/$distarch/
70    sudo chmod -R u+rwX,g+rwX,o+rX,o-w $(pwd)/$distarch/
71    
72  /builds/bin/build_IS0  echo "You now need to run /stage/bin/build_ISO as non-root"
73    
74  # 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