151
5x00 Hardware / 2.2GB Magicstor microdrive, shows up as 2GB. partition?
« on: January 15, 2004, 03:32:15 am »
Ok, I tried to hack a bit with ide.opts, in order to see if I can mount my 2 partitions in 2 different mount points!
Here is my last version of ide.opts:
This mounts correctly hda1 in /mnt/cf, but does not see hda2!
Am I on the right way and I ma only writing something uncorrectly, or I am making my life too difficult and it would be enough adding a line o the original scripts I posted yesterday?
A hint would be really appreciated!
Thanks,
Adalberto
Here is my last version of ide.opts:
Code: [Select]
# ATA/IDE drive adapter configuration
#
# The address format is "scheme,socket,serial_no[,part]".
#
# For multi-partition devices, first return list of partitions in
# $PARTS. Then, we\'ll get called for each partition.
#
case "$ADDRESS" in
*,*,*,1)
#INFO="Sample IDE setup"
#DO_FSTAB="y"; DO_FSCK="y"; DO_MOUNT="y"
#FSTYPE="msdos"
#OPTS=""
FATOPTS="-o noatime,quiet,umask=000,iocharset=utf8"
#MOUNTPT="/mnt/ide"
DO_MOUNT="y"
#FSTYPE="vfat"
MOUNTPT="/mnt/cf"
;;
*,*,*,2)
OPTS="-o noatime,quiet,umask=000,iocharset=utf8"
DO_MOUNT="y"
FSTYPE="ext2"
MOUNTPT="/mnt/cf2"
;;
*,*,*)
PARTS="1 2"
# Card eject policy options
NO_CHECK=n
NO_FUSER=n
;;
esacThis mounts correctly hda1 in /mnt/cf, but does not see hda2!
Am I on the right way and I ma only writing something uncorrectly, or I am making my life too difficult and it would be enough adding a line o the original scripts I posted yesterday?
A hint would be really appreciated!
Thanks,
Adalberto
