aboutsummaryrefslogtreecommitdiff
path: root/working/velox-reinstall/velox-reinstall-runbook.org
diff options
context:
space:
mode:
Diffstat (limited to 'working/velox-reinstall/velox-reinstall-runbook.org')
-rw-r--r--working/velox-reinstall/velox-reinstall-runbook.org9
1 files changed, 8 insertions, 1 deletions
diff --git a/working/velox-reinstall/velox-reinstall-runbook.org b/working/velox-reinstall/velox-reinstall-runbook.org
index 02671e2..0c14946 100644
--- a/working/velox-reinstall/velox-reinstall-runbook.org
+++ b/working/velox-reinstall/velox-reinstall-runbook.org
@@ -22,8 +22,15 @@ Fallback ordering if the test finds a real gap:
the microcode vendor-detection fix (archsetup, 2026-08-08) and was built
without ARCHSETUP_DIR at all.
#+begin_src sh
- cd ~/code/archangel && sudo ARCHSETUP_DIR=~/code/archsetup ./build.sh
+ cd ~/code/archangel && sudo ARCHSETUP_DIR="$HOME/code/archsetup" ./build.sh
#+end_src
+ Two traps in that one line, and either alone silently produces a bare ISO
+ with archsetup absent (archangel, 2026-08-20). The =VAR=value= form is
+ required because sudo's =env_reset= discards an exported variable. And
+ =$HOME= is required because zsh does not expand a tilde on the right-hand
+ side of an assignment — the earlier =ARCHSETUP_DIR=~/code/archsetup= here
+ passed the literal string. build.sh now warns and reports baked/not-baked
+ in its closing summary, so the failure is visible rather than silent.
- [ ] build.sh fixes before the final rebuild (archangel repo):
- rsync exclude for =.ai= (keeps =archsetup/.ai/private-design/= — the
credential audit — off the portable USB stick).