27 | | Another thought: maybe the old FS on the boot floppy is causing trouble. |
28 | | |
| 27 | Another 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 | |
| 34 | echo "Creating $1 as bootdisk" |
| 35 | |
| 36 | dd if=/dev/zero of=$1 bs=1 count=256256 |
| 37 | dd if=~/work/FUZIX/Kernel/fuzix.bin of=$1 bs=1 seek=193024 conv=notrunc |
| 38 | dd if=~/work/FUZIX/Kernel/platform-z80pack/bootblock.bin of=$1 bs=1 count=128 conv=notrunc |
| 39 | }}} |
| 40 | |
| 41 | It seems to work as well as the other boot disk. |