Skip to content

Commit 604cacb

Browse files
e2bclaude
authored andcommitted
fix: rename busybox binaries with version, add source comments
Per review: keep version in filename (busybox_1.36.1-2_{arch}) and document the package source in the Go embed files. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8feeef8 commit 604cacb

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

packages/orchestrator/pkg/template/build/core/systeminit/busybox_amd64 renamed to packages/orchestrator/pkg/template/build/core/systeminit/busybox_1.36.1-2_amd64

File renamed without changes.
Binary file not shown.
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
//go:build amd64
22

3+
// Busybox v1.36.1 static binary for amd64 (musl, minimal ~16 applets).
4+
// Custom build added in #1002 — origin unknown, no distro tag in binary.
5+
36
package systeminit
47

58
import _ "embed"
69

7-
//go:embed busybox_amd64
10+
//go:embed busybox_1.36.1-2_amd64
811
var BusyboxBinary []byte
Binary file not shown.
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
//go:build arm64
22

3+
// Busybox v1.36.1 static binary for arm64 (glibc, full 271 applets).
4+
// Source: Debian busybox-static 1:1.36.1-9 (https://packages.debian.org/busybox-static)
5+
// TODO: rebuild both binaries from the same minimal config for consistency.
6+
37
package systeminit
48

59
import _ "embed"
610

7-
//go:embed busybox_arm64
11+
//go:embed busybox_1.36.1-2_arm64
812
var BusyboxBinary []byte

0 commit comments

Comments
 (0)