Changeset 5140


Ignore:
Timestamp:
04/28/09 03:28:38 (4 years ago)
Author:
alanbach-guest
Message:
  • Added missing get_root_device()
    • Do not run tune2fs on ext4
    • Fixed a glitch in system_create_modules()
Location:
pkg/kev/main/parsix-installer/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • pkg/kev/main/parsix-installer/trunk/01-hd.bm

    r5137 r5140  
    101101    fi 
    102102    # Deactivate dir_index-feature of ext2/ext3-partitions 
    103     case $HD_FSTYPE in *ext*) tune2fs -O ^dir_index $HD_CHOICE;; esac 
     103    case $HD_FSTYPE in ext3) tune2fs -O ^dir_index $HD_CHOICE;; esac 
    104104   
    105105    # Format /home partition, need to inform users? 
  • pkg/kev/main/parsix-installer/trunk/02-install-tools.bm

    r3929 r5140  
    337337EOF 
    338338 
    339         BLACKLIST=$(cut -f1 -d' ' /lib/modules/$(uname -r)/modules.usbmap|sort|uniq|perl -pe 's/#\n//;s/\n/|/g')"cloop|snd|radeon|fsam7400|capi|hisax|fcpci|fcdsl|ieee80211|slam|unionfs|dri" 
    340         cat /proc/modules | tac | grep -v '\[.*\]' | egrep -v "$BLACKLIST" | 
     339        #BLACKLIST=$(cut -f1 -d' ' /lib/modules/$(uname -r)/modules.usbmap|sort|uniq|perl -pe 's/#\n//;s/\n/|/g')"cloop|snd|radeon|fsam7400|capi|hisax|fcpci|fcdsl|ieee80211|slam|unionfs|dri" 
     340        cat /proc/modules | tac | grep -v '\[.*\]' | 
    341341        while read mod x; do 
    342342                if [ "$mod" = apm ]; then 
  • pkg/kev/main/parsix-installer/trunk/boot-tools.bm

    r4132 r5140  
    210210 
    211211    return 0 
     212} 
     213 
     214#------------------------------------- 
     215# code snippet gotten from update-grub 
     216# Called with one parameter: the partition 
     217# outputs the root device 
     218## 
     219function get_root_device() 
     220{         
     221        logit $"get_root_device" 
     222         
     223        echo "$1" | sed -e 's%\([sh]d[[:lower:]]\)[0-9]*$%\1%' \ 
     224                -e 's%\(fd[0-9]*\)$%\1%' \ 
     225                -e 's%/part[0-9]*$%/disc%' \ 
     226                -e 's%\(c[0-7]d[0-9]*\).*$%\1%' 
    212227} 
    213228 
  • pkg/kev/main/parsix-installer/trunk/debian/changelog

    r5137 r5140  
     1parsix-installer (0.89.99.7) unstable; urgency=low 
     2 
     3  * Added missing get_root_device() 
     4  * Do not run tune2fs on ext4 
     5  * Fixed a glitch in system_create_modules() 
     6 
     7 -- Alan Baghumian <alan@technotux.org>  Mon, 27 Apr 2009 18:26:05 -0700 
     8 
    19parsix-installer (0.89.99.6) unstable; urgency=low 
    210 
  • pkg/kev/main/parsix-installer/trunk/parsix-installer

    r5137 r5140  
    1919# 
    2020 
    21 VERSION="0.89.99.6" 
     21VERSION="0.89.99.7" 
    2222CONFIG_FILE="$HOME/.pi-config" 
    2323LOG="$HOME/parsix-installer.log" 
Note: See TracChangeset for help on using the changeset viewer.