about summary refs log tree commit diff stats
path: root/translate_subx
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-05-15 07:49:12 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-05-15 07:49:12 -0700
commitc26aef11b7c55b89e85cdd8f2b7e8254b180278d (patch)
tree1bc376cbaa13d7cee8f5b09761ff2fabb8e14f29 /translate_subx
parenta577c7fcb031afb7efe5dafc48b81f6ea3a7b06b (diff)
downloadmu-c26aef11b7c55b89e85cdd8f2b7e8254b180278d.tar.gz
grow a few buffers until shell/ loads
Diffstat (limited to 'translate_subx')
-rwxr-xr-xtranslate_subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/translate_subx b/translate_subx
index 8d97b197..7b16425c 100755
--- a/translate_subx
+++ b/translate_subx
@@ -43,13 +43,13 @@ fi
 
 # Latter half of disk is for debug info.
 dd if=labels of=code.img seek=10080 conv=notrunc  # keep this sync'd with abort.subx
-if [ `stat --printf="%s" labels` -ge 131072 ]  # 256 sectors * 512 bytes per sector, the most an ATA drive can read in a single command
+if [ `stat --printf="%s" labels` -ge 524288 ]  # 4 reads * 256 sectors * 512 bytes per sector
 then
   echo "labels won't all be loaded on abort"
   exit 1
 fi
 
-if [ `wc -l < labels` -gt 4096 ]  # 0x1000 stream capacity in abort.subx
+if [ `wc -l < labels` -gt 16384 ]  # 0x4000 stream capacity in abort.subx
 then
   echo "abort will go into infinite regress"
   exit 1