Skip to main content

max / alloy

build: point the write instruction at the ISO that exists build-iso.sh closed by suggesting build-image.sh --skip-bib --write, which resolves its artifact to output/bootiso/install.iso. That is bib's output, which this ISO replaces and this script never writes, so the suggested command dies on a missing file.
Author: Max Johnson <me@maxj.phd> · 2026-07-21 21:52 UTC
Signed with PGP, not checked
Commit: b37fb483bf48ec5fac62aac0e96a47ef05ea9607
Parent: 30c15ab
1 file changed, +6 insertions, -1 deletion
@@ -138,5 +138,10 @@
138 138 sudo test -f "$ARTIFACT" || die "no ISO produced"
139 139 say "built: $ARTIFACT ($(sudo du -h "$ARTIFACT" | cut -f1))"
140 140 echo
141 + # Not build-image.sh: that script writes bib's artifact, $OUTPUT/bootiso,
142 + # which this ISO is the replacement for and does not produce. Pointing at it
143 + # sent a write at a path that is not there.
141 144 echo " Boot it, or write it with:"
142 - echo " build/build-image.sh --skip-bib --write /dev/sdX"
145 + echo " sudo dd if=$ARTIFACT of=/dev/sdX bs=4M oflag=direct conv=fsync status=progress"
146 + echo " then check it took:"
147 + echo " sudo cmp -n \$(sudo stat -c %s $ARTIFACT) /dev/sdX $ARTIFACT"