English Amiga Board


Go Back   English Amiga Board > Support > support.Hardware

 
 
Thread Tools
Old 25 May 2022, 19:51   #1
Aminator
Registered User
 
Join Date: Dec 2016
Location: Finland
Posts: 76
IDE-CD automount

I have Amigakit 4xIde and idefix97 installed and the cd drive is working but it won't mount automatically when i insert CD.

Any suggestions?
Aminator is offline  
Old 25 May 2022, 20:20   #2
daxb
Registered User
 
Join Date: Oct 2009
Location: Germany
Posts: 3,303
What about "Devs:DosDrivers/"?
daxb is offline  
Old 25 May 2022, 20:28   #3
Aminator
Registered User
 
Join Date: Dec 2016
Location: Finland
Posts: 76
Quote:
Originally Posted by daxb View Post
What about "DevsosDrivers/"?
I have CD2 there and it mounts the cd when i doubleclick it, but i want the drive to mount automatically.
Aminator is offline  
Old 25 May 2022, 20:30   #4
supaduper
Registered User
 
supaduper's Avatar
 
Join Date: Oct 2012
Location: Krypton
Posts: 1,210
Just shove it in the WBstartup drawer then it will mount on boot
supaduper is offline  
Old 25 May 2022, 20:37   #5
Aminator
Registered User
 
Join Date: Dec 2016
Location: Finland
Posts: 76
Quote:
Originally Posted by supaduper View Post
Just shove it in the WBstartup drawer then it will mount on boot
Well that works too
I was thinking too complicated, like having to edit startup-sequence or something.
Aminator is offline  
Old 25 May 2022, 20:44   #6
Daedalus
Registered User
 
Daedalus's Avatar
 
Join Date: Jun 2009
Location: Dublin, then Glasgow
Posts: 6,334
Well, that will work around the problem, but it shouldn't be needed. DOSDrivers located in DEVS/DOSDrivers should be mounted automatically on boot, and if that's not happening it points at something being amiss with your startup-sequence. Are you sure it was in DEVS/DOSDrivers and not Storage/DOSDrivers?
Daedalus is offline  
Old 25 May 2022, 20:51   #7
supaduper
Registered User
 
supaduper's Avatar
 
Join Date: Oct 2012
Location: Krypton
Posts: 1,210
Yeah I just gave him a quick and dirty solution but he needs to check that in the Icon info that in the `Default Tool` that the command C:MOUNT is present and that should sort it and he can leave it in Devs:

Last edited by supaduper; 25 May 2022 at 20:58.
supaduper is offline  
Old 26 May 2022, 18:11   #8
Aminator
Registered User
 
Join Date: Dec 2016
Location: Finland
Posts: 76
Quote:
Originally Posted by Daedalus View Post
Well, that will work around the problem, but it shouldn't be needed. DOSDrivers located in DEVS/DOSDrivers should be mounted automatically on boot, and if that's not happening it points at something being amiss with your startup-sequence. Are you sure it was in DEVS/DOSDrivers and not Storage/DOSDrivers?
It's located in devs/dosdrivers not in storage, and the default tool is c:mount
Aminator is offline  
Old 26 May 2022, 18:20   #9
AMIGASYSTEM
Registered User
 
AMIGASYSTEM's Avatar
 
Join Date: Aug 2014
Location: Brindisi (Italy)
Age: 70
Posts: 8,248
Quote:
Originally Posted by Aminator View Post
I have CD2 there and it mounts the cd when i doubleclick it, but i want the drive to mount automatically.
If the CD2 you click is in the SYS:Devs\DOSDrivers path it should automatically mount the CD even if the icon is not present.

In any case you can also add the command in the User-startup, this:

Mount CD2:
AMIGASYSTEM is offline  
Old 26 May 2022, 21:51   #10
Daedalus
Registered User
 
Daedalus's Avatar
 
Join Date: Jun 2009
Location: Dublin, then Glasgow
Posts: 6,334
The default tool setting isn't needed when it's in DEVS/DOSDrivers because Mount is explicitly called during boot, though the setting *is* needed when it's in WBStartup or for double-clicking it (which appears to work, so the setting is correct anyway). It sounds like the Mount line in the standard Startup-Sequence is missing or somehow otherwise ineffective.
Daedalus is offline  
Old 28 May 2022, 01:25   #11
Aminator
Registered User
 
Join Date: Dec 2016
Location: Finland
Posts: 76
Quote:
Originally Posted by daedalus View Post
the default tool setting isn't needed when it's in devs/dosdrivers because mount is explicitly called during boot, though the setting *is* needed when it's in wbstartup or for double-clicking it (which appears to work, so the setting is correct anyway). It sounds like the mount line in the standard startup-sequence is missing or somehow otherwise ineffective.
Code:
;BEGIN IDEfix
If Exists C:IDEfix
   ; You may want to exchange the following line with LoadIDE reset quiet
   ; to make IDEfix reset resident, or LoadIDE start quiet
   ; to start IDEfix immediately and have it reset resident
   ; from the next reboot. Make sure to put LoadIDE behind any Kickstart mappers!
   C:IDEfix
EndIf
;END IDEfix

; $VER: Startup-Sequence_HardDrive 40.2 (25.2.93)
; Startup-Sequence for hard drive systems

C:SetPatch QUIET

C:Version >NIL:
C:AddBuffers >NIL: DF0: 15
FailAt 21

C:MakeDir RAM:T RAM:Clipboards RAM:ENV RAM:ENV/Sys
C:Copy >NIL: ENVARC: RAM:ENV ALL NOREQ

Resident >NIL: C:Assign PURE
Resident >NIL: C:Execute PURE

Assign >NIL: ENV: RAM:ENV
Assign >NIL: T: RAM:T
Assign >NIL: CLIPS: RAM:Clipboards
Assign >NIL: REXX: S:
Assign >NIL: PRINTERS: DEVS:Printers
Assign >NIL: KEYMAPS: DEVS:Keymaps
Assign >NIL: LOCALE: SYS:Locale
Assign >NIL: LIBS: SYS:Classes ADD
Assign >NIL: HELP: LOCALE:Help DEFER

; ## AmigaKit 4xIDE adapter
IF EXISTS c:Load4xIDEPrefs
    c:Load4xIDEPrefs QUIET
EndIF

BindDrivers
C:Mount >NIL: DEVS:DOSDrivers/~(#?.info)


IF EXISTS DEVS:Monitors
  IF EXISTS DEVS:Monitors/VGAOnly
    DEVS:Monitors/VGAOnly
  EndIF

  C:List >NIL: DEVS:Monitors/~(#?.info|VGAOnly) TO T:M LFORMAT "DEVS:Monitors/%s"
  Execute T:M
  C:Delete >NIL: T:M
EndIF

SetEnv Language "english"
SetEnv Workbench $Workbench
SetEnv Kickstart $Kickstart
UnSet Workbench
UnSet Kickstart

C:AddDataTypes REFRESH QUIET
C:IPrefs
Work:FullPalette/FPPrefs
C:ConClip

Path >NIL: RAM: C: SYS:Utilities SYS:Rexxc SYS:System S: SYS:Prefs SYS:WBStartup SYS:Tools SYS:Tools/Commodities

IF EXISTS S:User-Startup
  Execute S:User-Startup
EndIF

Resident Execute REMOVE
Resident Assign REMOVE

C:LoadWB
EndCLI >NIL:
CI
Here's my startup-sequence
Aminator is offline  
Old 28 May 2022, 13:46   #12
Aminator
Registered User
 
Join Date: Dec 2016
Location: Finland
Posts: 76
Quote:
Originally Posted by AMIGASYSTEM View Post
If the CD2 you click is in the SYSevs\DOSDrivers path it should automatically mount the CD even if the icon is not present.

In any case you can also add the command in the User-startup, this:

Mount CD2:
This works too
Aminator is offline  
Old 28 May 2022, 14:48   #13
daxb
Registered User
 
Join Date: Oct 2009
Location: Germany
Posts: 3,303
I would check if IDEfix and Load4xIDEPrefs have to work this way or not. Is both needed or do they conflict?

The mound line seems to be ok. However, you can add "set echo on" on top of your S-S to see if something strange happens.
daxb is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
WinUAE: Problem CDFS AutoMount AMIGASYSTEM support.WinUAE 33 23 July 2020 11:42
Automount SCSI Zip drive MikeA3000 support.Hardware 3 15 December 2018 04:24
CDFS automount and .backdrop AMIGASYSTEM support.WinUAE 5 06 October 2018 20:39
Mounting volumes not set to automount on boot. Amiga1992 support.Hardware 32 28 September 2017 00:05
SCSI-IDE bridge + IDE to CF adapter - How can I make a backup? Tuffy New to Emulation or Amiga scene 2 02 April 2008 21:14

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 09:51.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.14572 seconds with 15 queries