Changeset 2 for 64studio/trunk/utils

Show
Ignore:
Timestamp:
01/23/07 10:38:27 (23 months ago)
Author:
free
Message:

releasing version 0.9.8

Location:
64studio/trunk/utils
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • 64studio/trunk/utils/64studio-config

    r1 r2  
    4848fi 
    4949 
    50 # If network is available, run apt-get update 
     50# If network is available, run apt-get update, otherwise 
     51# comment the source list 
     52APT_SOURCE=/etc/apt/sources.list.d/64studio.list 
     53if ! [ -e /proc/net/route ]; then 
     54        mount /proc 
     55fi 
    5156if route -n | grep -q ^0.0.0.0; then 
    52     apt-get update 
     57    apt-get update || sed -i -e 's/^deb /#deb /g' $APT_SOURCE 
     58else 
     59    sed -i -e 's/^deb /#deb /g' $APT_SOURCE 
    5360fi 
     61 
  • 64studio/trunk/utils/64studio-upgrade

    r1 r2  
    11#!/bin/sh 
    22 
    3 UNWANTED="\ 
    4     at \ 
    5     cinepaint \ 
    6     courier-mta \ 
    7     cron \ 
    8     exim4 \ 
    9     exim4-base \ 
    10     exim4-config \ 
    11     exim4-daemon-light \ 
    12     fluxbox \ 
    13     grip \ 
    14     k3b \ 
    15     kfilereplace \ 
    16     klinkstatus \ 
    17     kommander \ 
    18     quanta \ 
    19     nvu \ 
    20     toolame \ 
    21     xmms \ 
    22     xmms-jack \ 
    23     zynaddsubfx \ 
    24 " 
    25 EXTRA= 
    26  
    27 # Add xorg here as it hits etch 
    28 for TASK in base kernel 64studio; do 
    29     EXTRA="$EXTRA $(tasksel --task-packages $TASK)" 
    30 done 
    31  
    32 echo SET debconf/priority high | debconf-communicate > /dev/null 2>&1 
    33  
    34 apt-get install -y aptitude libsigc++-1.2-5c2 
    353apt-get dist-upgrade -y 
    36 dpkg --force-all --purge xorg-common 
    37 apt-get dist-upgrade -y 
    38 apt-get install -f -y 
    39 apt-get dist-upgrade -y 
    40 apt-get install -f -y 
    41 apt-get dist-upgrade -y 
    42 aptitude remove -y $UNWANTED 
    43 aptitude install -y $EXTRA 
    44  
    45 apt-get install alsa-modules-2.6.13-1-multimedia-amd64-generic 
    46 apt-get install ia32-libs 
    47  
    48 CFG=/etc/bootsplash/themes/current/config/bootsplash-1024x768.cfg 
    49 INITRD=/boot/initrd.img-2.6.13-1-multimedia-amd64-generic 
    50  
    51 if [ -e $CFG ]; then 
    52         if [ -e $INITRD.orig ] ; then 
    53                 mv $INITRD.orig $INITRD 
    54         fi 
    55         cp $INITRD $INITRD.orig 
    56         splash -s -f $CFG >> $INITRD 
    57 fi 
    58  
    59 SYSV="rc rcS" 
    60 for RC in $SYSV; do 
    61         if [ -e /etc/init.d/$RC.orig ]; then 
    62                 mv /etc/init.d/$RC.orig /etc/init.d/$RC 
    63         fi 
    64 done 
    65  
    66 /var/lib/dpkg/info/sysv-rc-bootsplash.postinst configure