Changes between Version 16 and Version 17 of FuzixBuildNotes


Ignore:
Timestamp:
Nov 25, 2020, 9:05:27 AM (2 years ago)
Author:
Eric Hazen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FuzixBuildNotes

    v16 v17  
    2525Question:  how to tell if swap is enabled?
    2626
    27 Another thought:  maybe the old FS on the boot floppy is causing trouble.
    28 
     27Another thought:  maybe the old FS on the boot floppy is causing trouble.  Create '''makeboot''' script)
     28{{{
     29#!/bin/bash
     30#
     31# try to make a fuzix boot floppy
     32# size is 77 * 26 * 128 = 256256 bytes
     33
     34echo "Creating $1 as bootdisk"
     35
     36dd if=/dev/zero of=$1 bs=1 count=256256
     37dd if=~/work/FUZIX/Kernel/fuzix.bin of=$1 bs=1 seek=193024 conv=notrunc
     38dd if=~/work/FUZIX/Kernel/platform-z80pack/bootblock.bin  of=$1 bs=1 count=128 conv=notrunc
     39}}}
     40
     41It seems to work as well as the other boot disk.
    2942
    3043