diff options
author | Kartik Agaram <vc@akkartik.com> | 2021-10-31 06:02:02 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2021-10-31 06:02:54 -0700 |
commit | 2f2871a51f4d0c7a4c0123c05c994cb25b7dcc06 (patch) | |
tree | f67b9171f9d228e8cd8a8ad54783270a85709d53 /translate_emulated | |
parent | b221d17f03fc22477646a675962e4be6e4b9c872 (diff) | |
download | mu-2f2871a51f4d0c7a4c0123c05c994cb25b7dcc06.tar.gz |
Mac OS build broken since Aug 29 :/
(commit b1dcfb03d00)
Diffstat (limited to 'translate_emulated')
-rwxr-xr-x | translate_emulated | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/translate_emulated b/translate_emulated index 87d54bda..72a4c4e3 100755 --- a/translate_emulated +++ b/translate_emulated @@ -76,7 +76,7 @@ fi 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 +cat font.subx |sed 's,/[^ ]*,,' |linux/bootstrap/bootstrap run linux/hex > a.font if [ `stat --printf="%s" a.font` -ge 262144 ] # 0x200 sectors * 512 bytes per sector (keep this sync'd with boot.subx) then |