/[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.20 by slords, Thu Apr 8 20:03:57 2010 UTC Revision 1.30 by jpp, Sun Jun 14 05:54:37 2020 UTC
# Line 13  then Line 13  then
13      echo "No $distarch directory?"      echo "No $distarch directory?"
14      exit 1      exit 1
15  fi  fi
16    if [ "$distrel" == "10" ]
17    then
18        echo "do not run for $distrel"
19        exit 1
20    fi
21    
22  rm -rf $(pwd)/$distarch/{images,isolinux} $(pwd)/$distarch/SME/base/{hdlist*,*.img}  rm -rf $(pwd)/$distarch/{images,isolinux} $(pwd)/$distarch/SME/base/{hdlist*,*.img}
23    
# Line 28  then Line 33  then
33          $(pwd)/$distarch \          $(pwd)/$distarch \
34          $distarch > pkgorder.$distarch          $distarch > pkgorder.$distarch
35    
36      for PKG in /releases/$distrel/smeextras/$distarch/RPMS/*.rpm      for PKG in /build/smeserver/repo/$distrel/smeextras/$distarch/RPMS/*.rpm
37      do      do
38          PKGFILE=$(basename $PKG)          PKGFILE=$(basename $PKG)
39          if [ ! -f $(pwd)/$distarch/SME/RPMS/$PKGFILE ]          if [ ! -f $(pwd)/$distarch/SME/RPMS/$PKGFILE ]
# Line 46  then Line 51  then
51          $(pwd)/$distarch/          $(pwd)/$distarch/
52    
53      sed -i 's@1,2,3@1@' $(pwd)/$distarch/.discinfo      sed -i 's@1,2,3@1@' $(pwd)/$distarch/.discinfo
54  else  elif [ "$distrel" == "8" ]
55      for PKG in /releases/testing/$distrel/smeextras/$distarch/RPMS/*.rpm  then
56        for PKG in /build/smeserver/repo/$distrel/smeextras/$distarch/RPMS/*.rpm
57      do      do
58          PKGFILE=$(basename $PKG)          PKGFILE=$(basename $PKG)
59          if [ ! -f $(pwd)/$distarch/SME/$PKGFILE ]          if [ ! -f $(pwd)/$distarch/SME/$PKGFILE ]
# Line 56  else Line 62  else
62          fi          fi
63      done      done
64    
65      sed "/installforallkernels/ised -i 's|\\\\(enabled\\\\) = 1|\\\\1 = 0|' \$DEST/etc/yum/pluginconf.d/kmod.conf" \      cp /usr/lib/anaconda-runtime/mk-images* .
66          /usr/lib/anaconda-runtime/upd-instroot > upd-instroot      sed -i -e 's/count=12/count=15/' mk-images.*
67      chmod 755 upd-instroot      sed -e "/installforallkernels/ised -i 's|\\\\(enabled\\\\) = 1|\\\\1 = 0|' \$DEST/etc/yum/pluginconf.d/kmod.conf" \
68      sudo chown root:root upd-instroot          -e 's|^usr/\(.*/libz.*\)|&\n\1|' /usr/lib/anaconda-runtime/upd-instroot > upd-instroot
69        chmod 644 mk-images.*
70        chmod 755 mk-images upd-instroot
71        sudo chown root:root mk-images* upd-instroot
72    
73      PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \      PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \
74          --product "$distname" \          --product "$distname" \
# Line 68  else Line 77  else
77          --prodpath SME \          --prodpath SME \
78          --bugurl http://bugs.contribs.org/ \          --bugurl http://bugs.contribs.org/ \
79          $(pwd)/$distarch/          $(pwd)/$distarch/
80        sed -i 's/ALL/1/' $distarch/.discinfo
81    
82        sudo rm -rf $distarch/buildinstall.tree.*/ mk-images* upd-instroot
83    elif [ "$distrel" == "9" ]
84    then
85        sed -e '/anaconda.repos.d/arm -f $DEST/etc/anaconda.repos.d/*' /usr/lib/anaconda-runtime/upd-instroot > upd-instroot
86        chmod 755 upd-instroot
87        sudo chown root:root upd-instroot
88    
89        echo "delete repodata repoview and rebuild"
90        rm -rf $(pwd)/$distarch/{repodata,repoview}/
91        mkdir -p $(pwd)/$distarch/repodata/
92        /bin/cp -af $(pwd)/$distarch/Packages/base/comps.xml $(pwd)/$distarch/repodata/
93    
94        createrepo --quiet --database --skip-symlinks --simple-md-filenames --groupfile repodata/comps.xml $(pwd)/$distarch/
95        sync; rm -rf $(pwd)/$distarch/.olddata
96    
97        # add --final when we have final product
98        #PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \
99        #    --product "$distname" \
100       #     --version "${distvers/[^0-9.]*/}" \
101       #     --release "$distname" \
102       #     #--brand "centos" \
103       #     --final \
104       #     --bugurl http://bugs.contribs.org/ \
105       #     --output $(pwd)/$distarch/ \
106       #     /build/smeserver/repo/testing/$distrel/smeextras/$distarch/ \
107       #     $(pwd)/$distarch/
108        echo "Anaconda buildinstall...."
109        PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \
110             --product "$distname" \
111             --version "${distvers/[^0-9.]*/}" \
112             --release "$distname" \
113             --final \
114             --bugurl http://bugs.contribs.org/ \
115             --output $(pwd)/$distarch/ \
116             /build/smeserver/repo/$distrel/smeextras/$distarch/ \
117             $(pwd)/$distarch/
118    
119        echo "sed treeinfo"
120        /bin/sed -i -e "s|packagedir =.*|packagedir = Packages|" $(pwd)/$distarch/.treeinfo
121    
122      rm -rf $distarch/buildinstall.tree.*/      echo "upd-instroot"
123      sudo rm upd-instroot      sudo rm -f awk ../pci.ids *-logos-*.rpm grub-*.rpm upd-instroot
124  fi  fi
125    
126  # Remove previous linked files  # Remove previous linked files
127  find $(pwd)/$distarch/SME/ -type l | xargs rm -f  find $(pwd)/$distarch/SME/ -type l | xargs rm -f
128    
129  # Copy updated isolinux files  # Copy updated isolinux files
130  sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/  sudo cp -f /build/smeserver/stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/
131    
132  find $(pwd)/$distarch -\( -not -user 9000 -o -not -group 9000 -\) -print0 | sudo xargs -r0 chown 9000:9000  find $(pwd)/$distarch -\( -not -user 10007 -o -not -group 10018 -\) -print0 | sudo xargs -r0 chown 10007:10018
133  find $(pwd)/$distarch -\( -type f -not -perm -0664 -o -type d -not -perm -0775 -\) -print0 | sudo xargs -r0 chmod u+rwX,g+rwX,o+rX,o-w  find $(pwd)/$distarch -\( -type f -not -perm -0664 -o -type d -not -perm -0775 -\) -print0 | sudo xargs -r0 chmod u+rwX,g+rwX,o+rX,o-w
134    
135  echo "You now need to run /stage/bin/build_ISO as non-root"  echo "You now need to run /build/smeserver/stage/bin/build_ISO as non-root"
136    
137  # 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