diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-20 08:07:43 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-20 08:15:23 +0900 |
| commit | b482fd4abfb2b3765b1791915b31067a0f80fec7 (patch) | |
| tree | 1cb95592a7f243aa920e3f4c497909a2e8bf9efb /internal/rosa/toybox.go | |
| parent | 2e502ede6c885496f4ac0a480aa4e4e337c54f51 (diff) | |
internal/rosa: remove global handles
These no longer serve any purpose.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/toybox.go')
| -rw-r--r-- | internal/rosa/toybox.go | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/internal/rosa/toybox.go b/internal/rosa/toybox.go index a0e439f1..4065e90a 100644 --- a/internal/rosa/toybox.go +++ b/internal/rosa/toybox.go @@ -2,6 +2,12 @@ package rosa import "hakurei.app/internal/pkg" +var ( + gzip = H("gzip") + + toyboxEarly = H("toybox-early") +) + func (t Toolchain) newToybox(suffix, script string) (pkg.Artifact, string) { const ( version = "0.8.13" @@ -52,10 +58,10 @@ mkdir -p /work/usr/bin ln -s ../../system/bin/env /work/usr/bin `, }, - Bash, - Gzip, + bash, + gzip, - KernelHeaders, + kernelHeaders, ), version } func init() { |
