Remove some legacy support in rc scripts & some cleanup

* Remove support for the Poor Man fstab
 * Remove checks for the missing ARCH kernel variable
 * Remove .ashrc which is anyway only read once per login
 * Cleanup PATH variable

Change-Id: Ic32e5749fba502dfa38d4d538860e717580bad60
This commit is contained in:
2013-10-30 18:12:35 +01:00
parent 859a265cba
commit a5f47c23d5
7 changed files with 68 additions and 88 deletions

View File

@@ -68,9 +68,9 @@ INODES=6000
dd if=/dev/zero seek=$BLOCKS of=$fsimage count=1 bs=$BS >/dev/null 2>&1
# -s keeps modes
mkproto -s -b $BLOCKS -i $INODES $testdir >$protofile
/usr/sbin/mkproto -s -b $BLOCKS -i $INODES $testdir >$protofile
mkfs.mfs -T 1 -b $BLOCKS -i $INODES $fsimage $protofile >/dev/null 2>&1
/sbin/mkfs.mfs -T 1 -b $BLOCKS -i $INODES $fsimage $protofile >/dev/null 2>&1
sum="`sha1 $fsimage | awk '{ print $4 }'`"
if [ $sum != $expect ]