/[smeserver]/builds_bin/build_ISO
ViewVC logotype

Diff of /builds_bin/build_ISO

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

Revision 1.41 by slords, Fri May 9 16:40:03 2014 UTC Revision 1.42 by unnilennium, Mon May 30 08:00:31 2016 UTC
# Line 3  Line 3 
3  distname='SME Server'  distname='SME Server'
4  disttag='smeserver'  disttag='smeserver'
5  distvers=$(basename $(readlink -f $(pwd)))  distvers=$(basename $(readlink -f $(pwd)))
6  distrel=${distvers:0:1}  distrel=${distvers%%.*}
7  distarch=$(uname -i)  distarch=$(uname -i)
8    
9  exec < /dev/null  exec < /dev/null
# Line 24  do Line 24  do
24          /usr/bin/mkcramfs \          /usr/bin/mkcramfs \
25          $(pwd)/$distarch/$img \          $(pwd)/$distarch/$img \
26          $(pwd)/$distarch/SME/base/$img.img          $(pwd)/$distarch/SME/base/$img.img
27        elif [ "$distrel" == "10" ]
28        then
29            echo "SME10 do nothing there,yet"
30      elif [ -d "$(pwd)/$distarch/$img" ]      elif [ -d "$(pwd)/$distarch/$img" ]
31      then      then
32          /sbin/mksquashfs \          /sbin/mksquashfs \
# Line 63  then Line 66  then
66  elif [ "$distrel" == "8" ]  elif [ "$distrel" == "8" ]
67  then  then
68      createrepo --update --database --groupfile repodata/comps.xml -u "media://$(head -1 $distarch/.discinfo)" $(pwd)/$distarch/      createrepo --update --database --groupfile repodata/comps.xml -u "media://$(head -1 $distarch/.discinfo)" $(pwd)/$distarch/
69  elif [ "$distrel" == "9" ]  elif [ "$distrel" == "9" -o  "$distrel" == "10" ]
70  then  then
71      mkdir -p $(pwd)/$distarch/repodata/      mkdir -p $(pwd)/$distarch/repodata/
72      rm -f  $(pwd)/$distarch/repodata/*comps.xml*      rm -f  $(pwd)/$distarch/repodata/*comps.xml*
# Line 78  bootimg='isolinux/isolinux.bin' Line 81  bootimg='isolinux/isolinux.bin'
81  bootcat='isolinux/boot.cat'  bootcat='isolinux/boot.cat'
82  mkisopts='-v -U -J -r -T'  mkisopts='-v -U -J -r -T'
83  today="$(date '+%d %b %Y')"  today="$(date '+%d %b %Y')"
84    if [ "$distrel" == "10" ]
85    then
86    mkisofs $mkisopts -V "$distname" \
87        -A "$distname" \
88        -volset "$distname" \
89        -b "$bootimg" -c "$bootcat" \
90        -no-emul-boot -boot-load-size 4 -boot-info-table -eltorito-alt-boot -x boot.iso \
91        -x lost+found -x product -x updates -x 'buildinstall.tree.*' -x CVS \
92        -o ../iso/$distrel/$distarch/$disttag-$distvers-$distarch.iso \
93        $(pwd)/$distarch/
94    else
95  mkisofs $mkisopts -V "$distname" \  mkisofs $mkisopts -V "$distname" \
96      -A "$distname $distvers created on $today" \      -A "$distname $distvers created on $today" \
97      -b "$bootimg" -c "$bootcat" \      -b "$bootimg" -c "$bootcat" \
# Line 85  mkisofs $mkisopts -V "$distname" \ Line 99  mkisofs $mkisopts -V "$distname" \
99      -x lost+found -x product -x updates -x 'buildinstall.tree.*' -x CVS \      -x lost+found -x product -x updates -x 'buildinstall.tree.*' -x CVS \
100      -o ../iso/$distrel/$distarch/$disttag-$distvers-$distarch.iso \      -o ../iso/$distrel/$distarch/$disttag-$distvers-$distarch.iso \
101      $(pwd)/$distarch/      $(pwd)/$distarch/
102    fi
103    
104  cp -a $(pwd)/$distarch/images/boot.iso ../iso/$distrel/$distarch/$disttag-$distvers-$distarch-netinstall.iso  cp -a $(pwd)/$distarch/images/boot.iso ../iso/$distrel/$distarch/$disttag-$distvers-$distarch-netinstall.iso
105    
106  isohybrid ../iso/$distrel/$distarch/$disttag-$distvers-$distarch.iso  if [ -x /usr/bin/isohybrid ]
107    then
108            #needs syslinux; should implement efi ?
109            # should not be necessary with centos7 : mkisofs/mkhybrids and genisoimage have been merged
110            isohybrid ../iso/$distrel/$distarch/$disttag-$distvers-$distarch.iso
111    else
112            # alternative with mkhybrid ??
113            echo "isohybrid not available; you should install syslinux or use genisoimage options"
114    fi
115    
116  if [ -x /usr/lib/anaconda-runtime/implantisomd5 ]  if [ -x /usr/lib/anaconda-runtime/implantisomd5 ]
117  then  then
118      /usr/lib/anaconda-runtime/implantisomd5 ../iso/$distrel/$distarch/$disttag-$distvers-$distarch.iso      /usr/lib/anaconda-runtime/implantisomd5 ../iso/$distrel/$distarch/$disttag-$distvers-$distarch.iso
# Line 115  jigdo-file make-template --force \ Line 139  jigdo-file make-template --force \
139      $distarch.jigdo//      $distarch.jigdo//
140  rm -rf $distarch.jigdo/  rm -rf $distarch.jigdo/
141    
142  if [ -d SRPMS -a "$distarch" == "i386" ]  if  [ -d SRPMS ] && [  "$distarch" == "i386" -o "$distrel" == "10"  ]
143  then  then
144      rm -f ../iso/$distrel/source/$disttag-$distvers-SRPMS.iso* ../iso/$distrel/source/$disttag-SRPMS.iso*      rm -f ../iso/$distrel/source/$disttag-$distvers-SRPMS.iso* ../iso/$distrel/source/$disttag-SRPMS.iso*
145    


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