English Amiga Board


Go Back   English Amiga Board > Support > support.Hardware

 
 
Thread Tools
Old 26 December 2016, 23:52   #1
iowtheme
Registered User
 
iowtheme's Avatar
 
Join Date: Mar 2010
Location: uk
Posts: 214
Help Plz DH2:Uninitialized

Hi All

I am not sure what is going on DH2:Uninitialized



This show up DH2:Uninitialized


I format DH2


Then format is done


Then reboot it come back DH2:Uninitialized


Anyone have any ideas this is on my A4000D

iowtheme is offline  
Old 27 December 2016, 00:19   #2
emufan
Registered User
 
Join Date: Feb 2012
Location: #DrainTheSwamp
Posts: 4,545
how big is the cf card u are using?
do you use an updated scsi.device.
emufan is offline  
Old 27 December 2016, 00:33   #3
iowtheme
Registered User
 
iowtheme's Avatar
 
Join Date: Mar 2010
Location: uk
Posts: 214
it is 8GB and version 40.12
iowtheme is offline  
Old 27 December 2016, 00:59   #4
emufan
Registered User
 
Join Date: Feb 2012
Location: #DrainTheSwamp
Posts: 4,545
Quote:
Originally Posted by iowtheme View Post
it is 8GB and version 40.12
i guess this is within the limits of the scsi device.

did you tested pfsformat to initialize/format the partition? it comes with the pfs3 release.

#1) did you added the filesystem to the RDB? youtube vid shows how to add pfs3.
if you are using the generic pfs3 release, take a look at the pfs3aio upgraded version.

[ Show youtube player ]

Last edited by emufan; 27 December 2016 at 01:12.
emufan is offline  
Old 27 December 2016, 08:44   #5
thomas
Registered User
 
thomas's Avatar
 
Join Date: Jan 2002
Location: Germany
Posts: 7,035
Use HDToolbox to reduce the size of DH2 by 1 cylinder.

Add this to S:User-Startup:

diskchange DH2:
thomas is offline  
Old 27 December 2016, 13:45   #6
iowtheme
Registered User
 
iowtheme's Avatar
 
Join Date: Mar 2010
Location: uk
Posts: 214
Update the ScSi to 43.45 and DH2 is now staying on .

But since I have done the update I now have two new problems .

( 1 ) then WB is load it now show - please insert volume ENV in any drive????

( 2 ) then it load - LoadModule: unable to open redirection file????


this is my

; $VER: Startup-Sequence_HardDrive 45.7 (30.10.2016) for BB4
; Startup-Sequence for hard drive systems

If Exists C:IDEFix
C:IDEFix
EndIf

FailAt 21
C:LoadResident >NIL: DEVS:trackdisk.device L:KingCON-Handler
FailAt 20
LoadModule >NILEVS:battmem.resource DEVS:console.device DEVS:FileSystem.resource DEVS:misc.resource DEVSotgo.resource L:FastFileSystem L:Ram-Handler L:Shell-Seg LIBS:dos.library LIBS:layers.library REVERSE NOREBOOT
Loadmodule devs:scsi.device NOREBOOT
C:SetPatch SKIPROMUPDATES scsi.device,console.device,dos,filesystem,FileSystem.resource,ram-handler,shell 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

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

C:LoadMonDrvs

;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
; Celete >NIL: T:M
;EndIF

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

C:AddDataTypes REFRESH QUIET
C:IPrefs
C:ConClip

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

SYS:System/REXXMast >NIL:

SYS:C/MakeLink RAM:disk.info ENVARC:SYS/def_RAM.info SOFT

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

Resident Execute REMOVE
Resident Assign REMOVE

C:LoadWB
EndCLI >NIL:
iowtheme is offline  
Old 27 December 2016, 13:51   #7
nogginthenog
Amigan
 
Join Date: Feb 2012
Location: London
Posts: 1,319
Your post got a bit messed up by the formatting. Use the 'code' tag in future!

This looks wrong, which would explain the "LoadModule: unable to open redirection file":
Code:
LoadModule >NILEVS:battmem.resource DEVS:console.device DEVS:FileSystem.resource DEVS:misc.resource DEVSotgo.resource L:FastFileSystem L:Ram-Handler L:Shell-Seg LIBS:dos.library LIBS:layers.library REVERSE NOREBOOT
Should be (note there are 2 changes):
Code:
LoadModule >NIL: DEVS:battmem.resource DEVS:console.device DEVS:FileSystem.resource DEVS:misc.resource DEVS:potgo.resource L:FastFileSystem L:Ram-Handler L:Shell-Seg LIBS:dos.library LIBS:layers.library REVERSE NOREBOOT
nogginthenog is offline  
Old 27 December 2016, 17:37   #8
emufan
Registered User
 
Join Date: Feb 2012
Location: #DrainTheSwamp
Posts: 4,545
agreed, using [ CODE ] ... [ / CODE ] around your text would prevent all those smiley.
the malformed LoadModule lines are the result of the misinterpreted : D by the eab webserver
: D ==>
: d ==> :d
i could imagine "C:IDEFix" makes use of ENV: so i would just put the following line above the IDEFIX block:
Code:
assign env: ram:
If Exists C:IDEFix
 C:IDEFix
EndIf
later in the startup-sequence the ENV will be assigned to it's correct location.
emufan is offline  
Old 27 December 2016, 23:14   #9
iowtheme
Registered User
 
iowtheme's Avatar
 
Join Date: Mar 2010
Location: uk
Posts: 214
OK guy

The two in RED ; this out and the A4000D run fine now.
But I do not know why this is causing a problem

; $VER: Startup-Sequence_HardDrive 45.7 (30.10.2016) for BB4
; Startup-Sequence for hard drive systems

If Exists C:IDEFix
C:IDEFix
EndIf

FailAt 21
C:LoadResident >NIL: DEVS:trackdisk.device L:KingCON-Handler

FailAt 20

;LoadModule >NIL: DEVS:battmem.resource DEVS:console.device DEVS:FileSystem.resource DEVS:misc.resource devs:potgo.resource L:FastFileSystem L:Ram-Handler L:Shell-Seg LIBS:dos.library LIBS:layers.library REVERSE NOREBOOT

Loadmodule Devs:scsi.device NOREBOOT

C:SetPatch SKIPROMUPDATES scsi.device,console.device,dos,filesystem,FileSystem.resource,ram-handler,shell 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

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

C:LoadMonDrvs

;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
C:ConClip

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

SYS:System/REXXMast >NIL:

;SYS:C/MakeLink RAM:disk.info ENVARC:SYS/def_RAM.info SOFT

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

Resident Execute REMOVE
Resident Assign REMOVE

C:LoadWB
EndCLI >NIL:
iowtheme is offline  
Old 27 December 2016, 23:23   #10
emufan
Registered User
 
Join Date: Feb 2012
Location: #DrainTheSwamp
Posts: 4,545
still missing the CODE tags, anyway

the 2nd i would replace with the following:
Code:
copy ENVARC:SYS/def_RAM.info ram:disk.info >NIL:
and ensure envarc:sys/def_RAM.info exists:
Code:
list envarc:sys/def_RAM.info
not sure about the 1st one, do all the modules really exists in devs: libs: L: folder?
is there a typo, you made, at devs:Potgo.resource?

Last edited by emufan; 27 December 2016 at 23:33.
emufan 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
CacheCDFS problem, cd0M uninitialized SimonV support.Apps 8 23 January 2018 23:02
What happens with DH2 and the Romupdate? Retrofan support.Hardware 1 12 September 2015 07:51
PCMCIA CF Transfer Kit - CF0:Uninitialized Amon_RA support.Hardware 13 03 July 2015 00:28
Making WHDload use DH1 and DH2 Crawff project.ClassicWB 10 10 November 2011 15:27
Help plz Gazhan New to Emulation or Amiga scene 8 29 May 2002 19:32

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 01:11.

Top

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