I have a 8MB floppy image created with mkfloppyimage
people.cs.uchicago.edu/~gmurali/gui/downloads.htmlI'm attempting to boot to the floppy image using memdisk. Becuase the floppy in a non-standard geometry I have to specify the floppy images geometry using memdisk paramaters
Memdisk Documentation. I am having a rough time getting the memdisk copmmand within cdshell to pass the additional parameters to memdisk upon execution.
What Ive tried so far:
cdshell syntax:
memdisk /cdsh/images/floppy.img
output of memdisk:
Ramdisk at 0x0b6d0000, length 0x00800000
command line: BOOT_IMAGE=/CDSH/modules/memdisk initrd=/cdsh/images/floppy.img
MEMDISK: Image seems to have fractional end cylinder
Disk is hard disk, 8192 K, C/H/S = 2/133/51
of course that geometry is incorrect so I tried specifying the geometry...
cdshell syntax:
memdisk floppy c=8 s=32 h=64 /cdsh/images/floppy.img
output of memdisk:
Error: file not found.
cdshell syntax:
memdisk /cdsh/images/floppy.img floppy c=8 s=32 h=64
output of memdisk:
Ramdisk at 0x0b6d0000, length 0x00800000
command line: BOOT_IMAGE=/CDSH/modules/memdisk initrd=/cdsh/images/floppy.img
MEMDISK: Image seems to have fractional end cylinder
Disk is hard disk, 8192 K, C/H/S = 2/133/51
cdshell syntax:
memdisk /cdsh/images/floppy.img c=8 s=32 h=64
output of memdisk:
Ramdisk at 0x0b6d0000, length 0x00800000
command line: BOOT_IMAGE=/CDSH/modules/memdisk initrd=/cdsh/images/floppy.img
MEMDISK: Image seems to have fractional end cylinder
Disk is hard disk, 8192 K, C/H/S = 2/133/51
cdshell syntax:
memdisk /cdsh/images/floppy.img floppy
output of memdisk:
Ramdisk at 0x0b6d0000, length 0x00800000
command line: BOOT_IMAGE=/CDSH/modules/memdisk initrd=/cdsh/images/floppy.img
MEMDISK: Image seems to have fractional end cylinder
Disk is hard disk, 8192 K, C/H/S = 2/133/51
Any insight?!?