English Amiga Board


Go Back   English Amiga Board > Coders > Coders. General

 
 
Thread Tools
Old 02 November 2017, 19:11   #1
bloodline
Registered User
 
bloodline's Avatar
 
Join Date: Jan 2017
Location: London, UK
Posts: 433
Odd request: a raw image of a real (RDB) Amiga hard drive

I'm working on my Amiga file system browser software https://drive.google.com/file/d/0B3C...ew?usp=sharing

While I have ADF and HDF files working fine, I want to add real Amiga hard drive support. To do this I need someone to dd image a real hard drive for me, preferably with at least a couple of partitions.

Thanks
bloodline is offline  
Old 02 November 2017, 20:37   #2
mark_k
Registered User
 
Join Date: Aug 2004
Location:
Posts: 3,336
WinUAE supports lots of different hard drive controllers, so you could (assuming you want to spend lots of time and get really bored) use the respective controllers' install/format/partitioning software to create your own image files.

The advantage of that is, there are many obscure/rare controllers. And transferring images from a real Amiga could be tricky for many people.
mark_k is offline  
Old 02 November 2017, 22:41   #3
bloodline
Registered User
 
bloodline's Avatar
 
Join Date: Jan 2017
Location: London, UK
Posts: 433
Quote:
Originally Posted by mark_k View Post
WinUAE supports lots of different hard drive controllers, so you could (assuming you want to spend lots of time and get really bored) use the respective controllers' install/format/partitioning software to create your own image files.

The advantage of that is, there are many obscure/rare controllers. And transferring images from a real Amiga could be tricky for many people.
I intend to try using UAE to set up a real hard disk, I just wondered if anyone had a raw image ready made.
bloodline is offline  
Old 03 November 2017, 00:20   #4
NorthWay
Registered User
 
Join Date: May 2013
Location: Grimstad / Norway
Posts: 839
Ehm...?
Are yo sure you want what you say? When I transfered my data I just took my old drives, hooked them up to a scsi controller, and dd dumped them to files. The files were simply given hdf extensions and WinUAE accepted them just like that.
Shouldn't a drive created with WinUAE be the same?
NorthWay is offline  
Old 03 November 2017, 00:34   #5
bloodline
Registered User
 
bloodline's Avatar
 
Join Date: Jan 2017
Location: London, UK
Posts: 433
Quote:
Originally Posted by NorthWay View Post
Ehm...?
Are yo sure you want what you say? When I transfered my data I just took my old drives, hooked them up to a scsi controller, and dd dumped them to files. The files were simply given hdf extensions and WinUAE accepted them just like that.
Shouldn't a drive created with WinUAE be the same?
My app can already read HDF files, but they have no RDB or partitions, so I need files with these things to test my code.

WinUAE has the original AmigaOS hard drive software so probably used that to read your disk images
bloodline is offline  
Old 03 November 2017, 00:38   #6
prowler
Global Moderator
 
prowler's Avatar
 
Join Date: Aug 2008
Location: Sidcup, England
Posts: 10,300
Quote:
Originally Posted by bloodline View Post
My app can already read HDF files, but they have no RDB or partitions, so I need files with these things to test my code.

WinUAE has the original AmigaOS hard drive software so probably used that to read your disk images
I thought dd gave an image of a device, not a disk. So the image would contain the RDB.

And WinUAE can work with and create RDB images - and can even replicate and emulate bad sectors!
prowler is offline  
Old 03 November 2017, 05:26   #7
bloodline
Registered User
 
bloodline's Avatar
 
Join Date: Jan 2017
Location: London, UK
Posts: 433
Quote:
Originally Posted by prowler View Post
I thought dd gave an image of a device, not a disk. So the image would contain the RDB.

And WinUAE can work with and create RDB images - and can even replicate and emulate bad sectors!
Yes, that's why I want a dd image

I have ADF images and I have HDF images (which are basically just large floppy disks).

What I need now is a raw disk image with the RDB, so I can test my ADF browsing app (linked to in the original post) with it. Once I can prove that works, I will then allow raw device access so it can read a real Amiga disk plugged into a Mac.
bloodline is offline  
Old 03 November 2017, 10:25   #8
thomas
Registered User
 
thomas's Avatar
 
Join Date: Jan 2002
Location: Germany
Posts: 6,987
There are two kinds of HDF files: the traditional HDF is a large floppy disk and a HDF in RDB mode is a real harddrive which contains a RDB and possbily more than one partition.

Just click on "RDB mode" in WinUAE to get the latter one. Then you can initialise and partition it with HDToolbox.

You can also make a big file with the letters RDSK in the first four bytes, then WinUAE will automatically switch into RDB mode.

If you do the same with DRKS in the first four bytes you'll get a byte-swapped image as it appears with some Amiga IDE controllers.

For your program be aware that the RDB does not need to be in the very first sector of the harddrive but it can be located in any of the first 16 sectors.
thomas is offline  
Old 03 November 2017, 16:21   #9
bloodline
Registered User
 
bloodline's Avatar
 
Join Date: Jan 2017
Location: London, UK
Posts: 433
Thanks Thomas! I will attempt to make an RDB disk image this way!

I hope I don't have to support byte swapped images... I would have to rewrite my code to cope with little endian data :-|
bloodline is offline  
Old 03 November 2017, 16:35   #10
mark_k
Registered User
 
Join Date: Aug 2004
Location:
Posts: 3,336
Check the RDB documentation.

In the course of testing various WinUAE controller emulation I created some HDFs.

Various Comspec SA1000 HDFs in this thread.
Some A2090A HDFs (The A2090 software doesn't follow the RDB spec, since the spec didn't exist when it was introduced. So you might want to ignore that.)
A2091/A590 HDF with A-Max (HDF created using HDToolBox)
Masoboshi MasterCard
On real hardware an image file created from an IDE drive may need to be byte-swapped.
Golem HD3000 (HDF created using HDToolBox not the original Golem software)

There may be others if you search for them.

Some controllers (AdIDE probably, don't know of others) scramble the data lines. That could mean that an image file created from a real Amiga-with-AdIDE's IDE hard drive (reading it connected to a PC) is scrambled as compared to an HDF you create in WinUAE/emulation.

AdIDE has a "CPRM" sector at the start of the drive, some info here.
AdIDE HDF with A-Max. ICD prep program creates non-compatible RDB.

Finally, I don't remember whether I uploaded an HDF, but GVP Series I with the original V1.0 ROM is "interesting" because it's almost RDB-compliant but different enough to not be bootable on any other controller, and vice versa.
mark_k is offline  
Old 04 November 2017, 11:28   #11
bloodline
Registered User
 
bloodline's Avatar
 
Join Date: Jan 2017
Location: London, UK
Posts: 433
Quote:
Originally Posted by thomas View Post
There are two kinds of HDF files: the traditional HDF is a large floppy disk and a HDF in RDB mode is a real harddrive which contains a RDB and possbily more than one partition.

Just click on "RDB mode" in WinUAE to get the latter one. Then you can initialise and partition it with HDToolbox.

You can also make a big file with the letters RDSK in the first four bytes, then WinUAE will automatically switch into RDB mode.

If you do the same with DRKS in the first four bytes you'll get a byte-swapped image as it appears with some Amiga IDE controllers.

For your program be aware that the RDB does not need to be in the very first sector of the harddrive but it can be located in any of the first 16 sectors.
I just want to thank you again! Using WinUAE, I built a 128meg HD image wih two partitions (8meg Workbench, 119 meg Work), it has a proper RDB so I can now add support for real Amiga hard drives!
bloodline 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
why cannot I boot hard drive directory or hard disk image jotd support.WinUAE 2 31 October 2017 18:00
Real Amiga 1200 Hard Drive Problem kratam support.WinUAE 21 01 March 2016 19:23
[REQUEST] - KryoFlux RAW image support amigafreak68k support.FS-UAE 6 24 June 2014 07:48
Hard drive image file creation failed john1979 support.WinUAE 3 02 February 2013 13:17
Hard drive install real amiga & winuae, please help magnox support.Hardware 3 28 February 2006 22:35

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 18:02.

Top

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