From c7a22f82ac109e6b1f9b82c4aa80680a89fa7967 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Thu, 24 May 2018 23:19:55 +0100 Subject: [PATCH] trs80m1: build the image correctly --- Kernel/platform-trs80m1/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Kernel/platform-trs80m1/Makefile b/Kernel/platform-trs80m1/Makefile index 22d34a59..7577aa8e 100644 --- a/Kernel/platform-trs80m1/Makefile +++ b/Kernel/platform-trs80m1/Makefile @@ -34,11 +34,11 @@ image: trs80load.bin # Boot block at 0,0 dd if=trs80load.bin of=boot.raw bs=256 count=1 conv=notrunc # 16K of common at 1,0 - dd if=../common.bin of=boot.raw bs=256 count=61 seek=10 conv=notrunc + dd if=../common.bin of=boot.raw bs=256 count=61 seek=10 conv=notrunc skip=67 # Followed directly by bank1 (32K) - dd if=../bank1.bin of=boot.raw bs=256 count=128 seek=71 conv=notrunc + dd if=../bank1.bin of=boot.raw bs=256 count=128 seek=71 conv=notrunc skip=128 # And then bank2 (32K) - dd if=../bank2.bin of=boot.raw bs=256 count=128 seek=199 conv=notrunc + dd if=../bank2.bin of=boot.raw bs=256 count=128 seek=199 conv=notrunc skip=128 # And turn it into a single sided 40 track fm image ../tools/makejv3 -t sd40s -d boot.raw boot.jv3 -- 2.34.1