Changes between Version 8 and Version 9 of FuzixBuildNotes


Ignore:
Timestamp:
Nov 24, 2020, 4:37:42 PM (5 years ago)
Author:
Eric Hazen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FuzixBuildNotes

    v8 v9  
    1313}}}
    1414
     15Trying to figure out how to make a bootable floppy.  Restored the script "createdrives"
     16from old SVN.  Found an old set of instructions which don't work.  Some observations:
     17
     18CPM disk images in z80pack are 256256 bytes long.  This is not a multiple of 512, and
     19thus AFAIK cannot be created by FUZIX "mkfs" tool.  A buried note in git says:
     20
     21"If you put just a kernel on floppy and the image on hard disk and boot with that as root fs it should work,"
     22
     23In {{{Kernel/platform-z80pack/README}}} it says:
     24
     25{{{
     26Put the kernel at the end of a floppy image from cyl 60
     27Add the fs in the first 58 cyls (366 blocks)
     28Put the bootblock in sector 0
     29dd the kernel image to offset 193024
     30ie
     31  dd if=fuzix.bin of=drivea.cpm bs=1 seek=193024 conv=notrunc
     32}}}
     33
     34This is all very well, but not obvious at all how to handle this with the tools provided.
     35First thing to try is to grab the {{{drivea.cpm}}} image and replace the boot block
     36and kernel with updated ones, leaving the FS alone.
    1537
    1638'''2020-11-22'''