Welcome, Guest. Please login or register.

Author Topic: path, assign and non-bootable harddrive  (Read 1362 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline koaftderTopic starter

  • Hero Member
  • *****
  • Join Date: Apr 2004
  • Posts: 2116
    • Show only replies by koaftder
    • http://koft.net
path, assign and non-bootable harddrive
« on: November 25, 2007, 09:30:31 AM »
I recently acquired a scsi controller for my a1k (thanks CharmFX!)

I'm running wb and ks 1.3

What I would like to do is have all of the assignments and paths point to the harddisk upon boot. I've modified the startupII file on my workbench to do this, but everything ends up getting overridden and pointing back to DF0: except for l, s, and sys

For some reason C, FONTS, DEVS, and LIBS assignment revert back to FD0: All of the path statement get overridden as well.

here is the relevant chunk in that startup file. What am i doing wrong?

Code: [Select]

mount dh0:
list dh0:

assign sys: DH0:
assign s: DH0:s
assign l: DH0:l
assign e: DH0:e
assign fonts: DH0:fonts
assign devs: DH0:devs
assign libs: DH0:libs

path reset
path DH0:c add
path DH0:Utilities add
path DH0:System add
path DH0:s add
path DH0:Prefs add
 

Offline koaftderTopic starter

  • Hero Member
  • *****
  • Join Date: Apr 2004
  • Posts: 2116
    • Show only replies by koaftder
    • http://koft.net
Re: path, assign and non-bootable harddrive
« Reply #1 on: November 25, 2007, 10:02:37 AM »
ok, I found a mistake in the listing, assign e: DH0:e, changed it to assign c: dh0:c and now all my assigns are the way they should be but the Path still gets reset on me.
 

Offline smoorke

  • Newbie
  • *
  • Join Date: Nov 2006
  • Posts: 24
    • Show only replies by smoorke
Re: path, assign and non-bootable harddrive
« Reply #2 on: November 29, 2007, 11:44:51 PM »
Don't use the add option when defining the first item of a new path. Also i'm pretty sure you don't need to reset the path if you define a new path.
So drop the 'path reset' and change 'path dh0:c add' into 'path dh0:c' and i think it should work.
 

Offline smoorke

  • Newbie
  • *
  • Join Date: Nov 2006
  • Posts: 24
    • Show only replies by smoorke
Re: path, assign and non-bootable harddrive
« Reply #3 on: November 29, 2007, 11:44:52 PM »
http://cataclysm.cx/random/amiga/reference/AmigaOS3.9_Manual/dos/book-main65.html
After reading this i'm not sure about my previous post.
But i'm also not sure why what you have now fails to work.
If what i posted before didn't work try replacing the lines 'path reset' and 'path dh0:c add' by just 'path reset dh0:c'
Actually i'm just guessing here and i'm too lazy/tired to  test this myself.