Stop presenting make runtime-bundle as a turnkey fresh-checkout bootstrap\nwhen the checked-in manifest is intentionally empty. The manifest comments,\nruntimebundle error messages, Make help, README, and AGENTS docs now all\ndescribe the same local-first flow: stage an archive, use a separate local\nmanifest copy with url/sha256, then bootstrap ./runtime from that manifest.\n\nKeep the existing package/fetch commands intact, and add a small runtimebundle\nregression test so the local-manifest guidance does not drift again.\n\nValidated with make help and GOCACHE=/tmp/banger-gocache go test\n./internal/runtimebundle.
32 lines
973 B
TOML
32 lines
973 B
TOML
# Template manifest for local or published runtime bundle archives.
|
|
# Keep this checked-in file empty by default; use a local manifest copy with
|
|
# concrete `url` and `sha256` values when bootstrapping `./runtime/`.
|
|
version = "v0"
|
|
url = ""
|
|
sha256 = ""
|
|
bundle_root = "runtime"
|
|
required_paths = [
|
|
"firecracker",
|
|
"customize.sh",
|
|
"dns.sh",
|
|
"packages.sh",
|
|
"nat.sh",
|
|
"namegen",
|
|
"packages.apt",
|
|
"id_ed25519",
|
|
"rootfs-docker.ext4",
|
|
"wtf/root/boot/vmlinux-6.8.0-94-generic",
|
|
"wtf/root/boot/initrd.img-6.8.0-94-generic",
|
|
"wtf/root/lib/modules/6.8.0-94-generic",
|
|
]
|
|
|
|
[bundle_metadata]
|
|
firecracker_bin = "firecracker"
|
|
ssh_key_path = "id_ed25519"
|
|
namegen_path = "namegen"
|
|
customize_script = "customize.sh"
|
|
default_packages_file = "packages.apt"
|
|
default_rootfs = "rootfs-docker.ext4"
|
|
default_kernel = "wtf/root/boot/vmlinux-6.8.0-94-generic"
|
|
default_initrd = "wtf/root/boot/initrd.img-6.8.0-94-generic"
|
|
default_modules_dir = "wtf/root/lib/modules/6.8.0-94-generic"
|