Promote BSP Image
Purpose
Stage every Customize-* and Build output into
so it is
ready for
. This is the
promote leg of
Deploy — it copies files, never flashes and never builds.
Prerequisites
- Active target-platform profile with both and
resolved (run and first).
<source.root_path>/Linux_for_Tegra/
initialized as a git repo
(overlay tracker) with a clean working tree.
<bsp_image.root_path>/Linux_for_Tegra/
extracted from a BSP
tarball + already run.
- , , , and (for destinations) on
the host.
<source.root_path>/.build-manifest.yaml
+
from (required when kernel-side repos
have customize-* commits).
Overview
This is the
promote leg of Deploy — see
../../context/bsp-customization-workflow.md
for the pipeline view. The two channels this skill walks are:
| Channel | Source | Carrier | Owner |
|---|
| Overlay tracker | <source.root_path>/Linux_for_Tegra/
(git repo at HEAD) | Customize-* outputs that don't require a build (e.g. , , BPMP DTB hand-edits) | Customize skills commit here |
| Build manifest | <source.root_path>/.build-manifest.yaml
| Rebuilt kernel , in-tree , OOT , NVIDIA DTBs | Build writes here |
The skill computes the union of files to copy and writes each into
<bsp_image.root_path>/Linux_for_Tegra/
with diff-aware
skip-if-identical logic. When the copy pass touches the kernel
or anything under
, it also rebuilds
the initramfs via NVIDIA's
tools/l4t_update_initrd.sh
so the
freshly promoted kernel + modules ship in the initrd the
bootloader actually loads. After it returns,
carries
every Customize and Build output. The skill does
not flash and
does
not modify the workspace.
When to invoke
- First leg of the typical Deploy chain
jetson-promote-image → jetson-flash-image → jetson-validate-image
.
- Standalone, when the user wants updated but isn't
ready to flash yet (e.g. to inspect resolved files, run an
out-of-band build that reads bsp_image, or hand bsp_image to a
separate flashing host).
Procedure
Resolve active target + paths
Resolve the active profile per the contract in
../../context/target-platform-contract.md
.
Refuse and route in these cases:
| Condition | Refuse with |
|---|
| No active profile, or | Route to or . |
| Profile lacks | Route to . |
<bsp_image.root_path>/Linux_for_Tegra/
missing | Route to . |
<source.root_path>/Linux_for_Tegra/
missing or not a git repo | Route to . |
Resolve paths:
- = parent of the active profile's
directory (discovered at load time).
- from if present,
else .
- from if present, else
.
Bind shell variables for the rest of the procedure:
bash
LFT_SRC="<source.root_path>/Linux_for_Tegra" # overlay tracker
LFT_DST="<bsp_image.root_path>/Linux_for_Tegra"
MANIFEST="<source.root_path>/.build-manifest.yaml" # build outputs
Validate the two channels
The skill needs at least one channel populated. Refuse if the
overlay tracker has uncommitted changes (
non-empty), if
exists but doesn't parse as YAML, or
if both channels are empty. Records
/
and
for downstream steps.
See
references/copy-pass-snippets.md
for the shell snippet and refuse messages.
Verify build-source freshness
Refuse if
shows any kernel-side repo in
dirty since the last
— otherwise the copy pass would silently ship stale artifacts.
Detection rules + shell snippet in
references/build-source-freshness-gate.md
.
Records
.
Pre-promote collision check (overlay only)
When the overlay tracks a remote, refuse if upstream has commits
not yet pulled. Skip gracefully when no remote is configured
(the default
empty tracker from
).
Manifest channel has no git remote concept — this check is
overlay-only. Records
for the Summary.
See
references/copy-pass-snippets.md
for the shell snippet.
Enumerate sources (both channels)
Channel A — overlay:
against
is
the source of truth (transparent to symlink mounts when
source.repos.Linux_for_Tegra
was overridden, excludes
untracked /
d files). Each entry maps
→
.
Channel B — manifest: parse
from
. Refuse if any
is missing on disk (build was
interrupted, or manifest stale — re-run
).
The manifest schema is written by
v0.2.0.
See
references/copy-pass-snippets.md
for both shell snippets and the manifest YAML schema.
Diff-aware copy into bsp_image
Iterate the union of overlay files and manifest entries. For
each
: if byte-identical, skip; otherwise
(with
for
destinations, where the sample rootfs
was extracted as root). Tag
on any
or
write — the
"Refresh initramfs" step gates on this flag. Counts /
/
are recorded for the Summary.
Fail-fast: if any
fails, surface the failed path and stop.
may be left partially updated — re-running after
fixing the cause resumes via the diff-aware skip.
Channel
order is overlay first, then manifest: on a
collision
the manifest wins (freshly built artifact beats the older
overlay copy).
See
references/copy-pass-snippets.md
for the
function and the two driving loops.
Mirror kernel Image into rootfs (when kernel changed)
The kernel
lives in two paths inside
:
(read by the flash tool) and
<LFT_DST>/rootfs/boot/Image
(the rootfs-side copy, visible as
from inside the rootfs chroot the refresh tool
will run in). The build manifest only carries the
dst, so this step mirrors
→
(diff-aware, no-op when already in sync) so the chrooted refresh
tool resolves the kernel against the freshly promoted binary,
not the stale rootfs copy. The mirror also sets
so a kernel-only promote (no
writes) still
triggers the refresh.
See
references/kernel-image-and-initramfs.md
for the shell snippet, the failure mode this prevents, and the
corner case.
Refresh initramfs (when kernel or modules changed)
Run
tools/l4t_update_initrd.sh
from
whenever
(set by the diff-aware copy or the mirror step
above). The tool chroots into
, runs NVIDIA's
, and writes both
<LFT_DST>/bootloader/l4t_initrd.img
(used by the flash tool)
and
<LFT_DST>/rootfs/boot/initrd
(
on the DUT).
Idempotent; ~30 s. Skip when
(overlay-only
edits). DUT-side workarounds (
+ manual
) are out of scope — fix the gap here so flash ships a
coherent image.
See
references/kernel-image-and-initramfs.md
for the shell snippet, refuse paths, the "module shadowing" and
"vermagic skew" failure modes the rebuild closes, and why
(a different file) is left alone.
Summary
Report:
- Overlay scope:
overlay HEAD ($OVERLAY_HEAD)
or "(empty)".
- Manifest scope:
mode=<...>, bsp_version=<...>, rebuilt_at=<...>, N artifacts
or "(absent)".
- Collision check: .
- Counts:
- overlay:
$COPIED_OVERLAY copied, $IDENTICAL_OVERLAY identical
- manifest:
$COPIED_MANIFEST copied, $IDENTICAL_MANIFEST identical
- Kernel Image mirror: and initramfs:
( / when triggered by
or writes;
otherwise).
- First / last paths copied (omit if both totals are 0).
- Resolved , .
- Next step: (or if
the user only wanted bsp_image refreshed for inspection / static
validation).
Limitations
- Two channels, one destination.
bsp_image/Linux_for_Tegra/
is written by both passes. Overlay carries customize-* outputs
(overlay-only edits like nvfancontrol.conf); manifest carries
rebuilt binaries (kernel/OOT/DT). The two are intentionally
disjoint by construction: build outputs don't go into the
overlay, and customize-* edits to non-build files don't enter
the manifest.
- Build manifest is the trace-to-dirty contract. Anything in
the manifest came from a dirty source repo (per
's "Write the build manifest" step trace policy). Promoting the
manifest is therefore safe: every entry is a customization-bearing
artifact, not toolchain-divergence noise. The skill does not
re-derive the trace — it trusts the manifest.
- Manifest entries can outlive their build outputs. If the
user wipes or 's build artifacts
between and , the
manifest will reference missing files. The "Enumerate sources (both channels)" step refuses in that
case and points the user at to rebuild.
- Manifest absence is fine when only overlay edits happened.
A purely overlay-side customization (e.g. )
produces no build outputs and writes no manifest — the "Enumerate sources (both channels)" step is a
no-op, the "Diff-aware copy into bsp_image" step promotes only overlay files. The skill prints
"manifest: (absent)" in the summary and continues.
- Diff-aware, idempotent. Re-running with no overlay commits
or manifest changes since the last promote is a no-op (all
files identical). Use this to confirm bsp_image is in sync
without side effects.
- Symlink-mount transparency. When
source.repos.Linux_for_Tegra
was overridden in
, the canonical mount is a symlink into
<source.root_path>/.repos/Linux_for_Tegra/<subdir>
. ,
, and all follow it transparently — no special
handling needed at this layer. Manifest paths are
absolute, so symlinks under don't matter for the
manifest channel.
- is scoped to destinations. Files under
were extracted with by
, so they carry root ownership and special
mode bits the flashing toolchain reads back.
preserves them. Everything else (, ,
, , etc.) is user-owned and does not need
. This applies to both channels.
- Channel-overlap precedence. If the same appears in
both overlay and manifest, manifest wins (later in the "Diff-aware copy into bsp_image" step's
loop). This is the desired semantic — manifest entries are
freshly built, overlay entries may be older state. Hand-editing
binary files into the overlay is discouraged (Build's job
is to rebuild them); the precedence rule makes such mistakes
recoverable.
- is read-only outside Deploy. This skill is the
only writer in the normal flow (matches the workflow invariant).
Hand-edits to
<bsp_image.root_path>/Linux_for_Tegra/
outside
Deploy will be silently overwritten on the next promote run if
the same path exists in either channel; conversely they will
not be reverted if no entry shadows them. Both behaviors are
wrong for the diff trail — never hand-edit upstream.
- Scope is overlay HEAD only (channel A). Named tags /
manifests / commit ranges are deferred (see below). To promote
a historical state,
git -C $LFT_SRC checkout <ref>
first,
then re-run. The manifest channel has no ranged scope — it
reflects whatever 's last run produced.
- No automatic rollback on partial failure. If fails
partway through, is left in an intermediate state.
Fix the underlying cause (usually permissions / disk full) and
re-run — the "Diff-aware copy into bsp_image" step will resume by skipping already-promoted files.
- Kernel mirror + initramfs refresh. Gated on copy-pass
writes to or ; the mirror
feeds the refresh's chroot. Both are diff-aware and skipped on
pure-overlay edits.
tools/l4t_update_initrd.sh
must exist in
(ships with ); a missing tool
refuses and routes to . See
references/kernel-image-and-initramfs.md
for the full contract and failure modes.
Troubleshooting
| Error | Cause | Solution |
|---|
Overlay has uncommitted changes at <LFT_SRC>
| Customize-* edits not committed before promote | Run (or stash), then re-run. |
origin has N unpulled commits on <upstream>
| Remote overlay diverged from local | , resolve conflicts, then re-run. |
Both overlay and manifest are empty — nothing to promote
| No Customize-* commits and no Build manifest | Run a customize-* skill or first. |
Kernel-side source(s) changed since last /jetson-build-source
| Freshness gate detected unprocessed customize-* edits under | Commit pending edits, run , re-run promote. |
Manifest entry references missing build output: <src>
| build outputs wiped or stale manifest | Re-run to regenerate. |
Build manifest at <MANIFEST> is not valid YAML
| Manifest hand-edited or partially written | Re-run to rewrite the manifest. |
| under | Missing privilege on the host | Run on an account that can ; re-run resumes via diff-aware copy. |
| Profile lacks / | Workspace not bootstrapped | Run and/or . |
tool not found at <LFT_DST>/tools/l4t_update_initrd.sh
| was pruned, or bsp_image extracted from a non-NVIDIA tarball | Re-run to repopulate. |
l4t_update_initrd.sh exited non-zero
| Insufficient sudo, broken rootfs (missing lib/modules/<ver>/modules.dep
), or out-of-space | Run depmod -a -b <LFT_DST>/rootfs <ver>
against the rootfs first; verify headroom; rerun promote. |
DUT boots with stale kernel / modules after promote, modules fail to load with disagrees about version of symbol …
, or initramfs ships pre-customize modules even after the refresh ran | The mirror / refresh gate didn't fire (manual hand-edit under outside the skill), or drifted from so the chrooted refresh built against the stale kernel | Force the gate by sudo touch <LFT_DST>/kernel/Image
+ re-run promote, or run the two steps manually: sudo cp -p <LFT_DST>/kernel/Image <LFT_DST>/rootfs/boot/Image && cd <LFT_DST> && sudo ./tools/l4t_update_initrd.sh
. Then re-flash. See references/kernel-image-and-initramfs.md
. |
Spec status
Locked in for v0.2.0:
- Two-channel scope — overlay HEAD + build manifest, both
diff-aware, both copying into
<bsp_image.root_path>/Linux_for_Tegra/
.
- Channel-overlap precedence — manifest wins on collision.
- Source-repo collision check — overlay only; manifest has no
remote concept and source repos under are not
fetched (their state was sealed when
wrote the manifest).
- Atomicity — fail-fast, no rollback. Diff-aware copy makes
resume natural.
- Audit trail — stdout-only at promote time. The overlay
tracker's git log is the canonical record for channel A; the
manifest itself is the canonical record for channel B.
- Kernel Image mirror + initramfs refresh. Locked in as a
paired step. The mirror copies →
whenever the copy pass touched
; the refresh runs
tools/l4t_update_initrd.sh
whenever or any
was promoted, rebuilding both
bootloader/l4t_initrd.img
and .
Inseparable because the refresh chroots into and
resolves the kernel through — the mirror has to
run first. Closes both module-shadowing and vermagic-skew
failure modes; both diff-aware, both skipped on overlay-only
edits. Full contract in
references/kernel-image-and-initramfs.md
.
Still deferred:
- Named-tag / commit-range scope for the overlay channel.
Revisit when a "promote release X" use case appears.
- Manifest history. Currently only the last build's manifest
exists; if a user wants to roll bsp_image back to a previous
build state, they'd need to re-run at
the prior commit. A manifest archive (saved per-build-mode or
per-commit) would enable rollback without rebuild.
- Sidecar manifest in . Revisit when promotion
happens on a host that does not have access to the overlay
tracker repo (or the workspace's manifest file).
References
references/kernel-image-and-initramfs.md
— full contract for the kernel mirror + refresh: shell snippets, failure modes, tool semantics, output filenames.
../../context/target-platform-contract.md
— target-platform contract.
../../context/bsp-customization-workflow.md
— workspace edit protocol (this skill is the promote leg of Deploy).
../jetson-init-source/SKILL.md
— Setup; materializes the overlay tracker this skill reads (channel A) and authors .
../jetson-build-source/SKILL.md
— Build builder; writes the this skill reads (channel B).
../jetson-flash-image/SKILL.md
— next leg; flashes the just-promoted bsp_image to the DUT.
../jetson-validate-image/SKILL.md
— final leg; static + on-target validation.