about summary refs log tree commit diff stats
path: root/translate
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-08-29 20:54:05 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-08-29 20:54:05 -0700
commit4b90a26d71513f3b908b7f7ec651996ddf6460d6 (patch)
tree70f2884ac633fc1b3682b78800072bc20ab60f14 /translate
parent0633e401f9af46ae961915c601d6a333c1a79994 (diff)
downloadmu-4b90a26d71513f3b908b7f7ec651996ddf6460d6.tar.gz
.
Diffstat (limited to 'translate')
-rwxr-xr-xtranslate8
1 files changed, 4 insertions, 4 deletions
diff --git a/translate b/translate
index 2ecdbf7b..de8a51ad 100755
--- a/translate
+++ b/translate
@@ -5,7 +5,7 @@ set -e
 
 # Map of the Mu code disk
 export DISK=20160  # 20*16*63 512-byte sectors = almost 10MB
-dd if=/dev/zero of=code.img count=$DISK
+dd if=/dev/zero of=code.img count=$DISK status=none
 # code: sectors 0-8999
 # font: sectors 9000-10079  (1080 sectors = space enough for 16k glyphs (1080 * 512 / 33 bytes per glyph))
 export FONT=9000  # keep this sync'd with boot.subx
@@ -35,7 +35,7 @@ cat a.pack                                                |linux/labels_baremeta
 
 cat a.survey                                              |linux/hex                        > a.bin
 
-dd if=a.bin of=code.img conv=notrunc
+dd if=a.bin of=code.img conv=notrunc status=none
 
 if [ `stat --printf="%s" a.bin` -ge 492544 ]  # 15 tracks * 63 sectors per track * 512 bytes per sector (keep this sync'd with boot.subx)
 then
@@ -69,7 +69,7 @@ then
   exit 1
 fi
 
-dd if=labels of=code.img seek=$DEBUG conv=notrunc  # keep this sync'd with abort.subx
+dd if=labels of=code.img seek=$DEBUG conv=notrunc status=none  # keep this sync'd with abort.subx
 
 ## Font data at another well-defined location
 cat font.subx   |sed 's,/[^ ]*,,'    |linux/hex    > a.font
@@ -80,4 +80,4 @@ then
   exit 1
 fi
 
-dd if=a.font of=code.img seek=$FONT conv=notrunc
+dd if=a.font of=code.img seek=$FONT conv=notrunc status=none