aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/images.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-23 17:44:38 +0900
committerOphestra <cat@gensokyo.uk>2026-05-23 17:44:38 +0900
commit3f33b62dfdc9402eec55566204434efd6e842826 (patch)
treeba8150112f49e3c0b64b89bee4fc097e31ec6ce1 /internal/rosa/images.go
parentac5488eef61c8f7e8b5b677ceb85b69df7384f42 (diff)
internal/rosa/package: migrate system image
The overlay argument also enables migration of stage0. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/images.go')
-rw-r--r--internal/rosa/images.go29
1 files changed, 0 insertions, 29 deletions
diff --git a/internal/rosa/images.go b/internal/rosa/images.go
deleted file mode 100644
index 3c9b2fbf..00000000
--- a/internal/rosa/images.go
+++ /dev/null
@@ -1,29 +0,0 @@
-package rosa
-
-import (
- "hakurei.app/fhs"
- "hakurei.app/internal/pkg"
-)
-
-func init() {
- meta := Metadata{
- Name: "system-image",
- Description: "Rosa OS system image",
- Version: Unversioned,
- }
- native.MustRegister(meta.Name, func(t Toolchain) (*Metadata, pkg.Artifact) {
- return &meta, t.New("system.img", TNoToolchain, t.Append(nil,
- H("squashfs-tools"),
- ), nil, nil, `
-mksquashfs /mnt/system /work/system.img
-`, pkg.Path(fhs.AbsRoot.Append("mnt"), false, t.Append(nil,
- _musl,
- _mksh,
- _toybox,
-
- H("kmod"),
- H("kernel"),
- H("firmware"),
- )...))
- })
-}