Cset exclude: mickey@r2d2.tm.informatik.uni-frankfurt.de|ChangeSet|20040822220256...
authorChris Larson <clarson@kergoth.com>
Wed, 25 Aug 2004 18:43:20 +0000 (18:43 +0000)
committerChris Larson <clarson@kergoth.com>
Wed, 25 Aug 2004 18:43:20 +0000 (18:43 +0000)
Revert the change of the ramdisk to minix, given the extremely low filename length limit.

BKrev: 412cddc8viJJrva7osY6BoBwT8EaIg

initscripts/initscripts-1.0/ramdisk

index f1f6f0b..b1bc8d6 100644 (file)
@@ -33,12 +33,12 @@ if (test ! -e /etc/.configured) || test "$OLD_MTD_SIZE" != "$RAM_MTD_SIZE"; then
   dd if=/dev/zero bs=1024 count=$RAM_MTD_SIZE of=$RAM_MTD 2>/dev/null >&2 || exit 1
   test "$VERBOSE" != "no" && echo "$RAM_MTD";
   test "$VERBOSE" != "no" && echo -n "Creating filesystem on ramdisk: "
-  mkfs.minix $RAM_MTDBLK 2>/dev/null >&2 || exit 1
+  mkfs.ext2 $RAM_MTDBLK 2>/dev/null >&2 || exit 1
   test "$VERBOSE" != "no" && echo "$RAM_MTDBLK";
 fi
 
 test "$VERBOSE" != "no" && echo -n "Mounting ramdisk: "
-mount -t minix $RAM_MTDBLK $RAM_MNTPT 2>/dev/null >&2 || exit 1
+mount $RAM_MTDBLK $RAM_MNTPT 2>/dev/null >&2 || exit 1
 test "$VERBOSE" != "no" && echo "$RAM_MTDBLK";
 
 exit 0