aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-23 17:53:05 +0900
committerOphestra <cat@gensokyo.uk>2026-05-23 17:53:05 +0900
commit689f97297691beb266ded94e7b4fdcd4a36da51b (patch)
treefc453ea4be8b8c8f1dfc0c0601a15dc7a49a8f35 /cmd
parent3f33b62dfdc9402eec55566204434efd6e842826 (diff)
internal/rosa/package: migrate stage0
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mbf/main.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go
index 8e2c4bda..e5c17ac2 100644
--- a/cmd/mbf/main.go
+++ b/cmd/mbf/main.go
@@ -439,8 +439,6 @@ func main() {
var (
flagGentoo string
flagChecksum string
-
- flagStage0 bool
)
c.NewCommand(
"stage3",
@@ -502,17 +500,6 @@ func main() {
"("+pkg.Encode(checksum[0].Value())+")",
)
}
-
- if flagStage0 {
- if err = cm.Do(func(cache *pkg.Cache) (err error) {
- pathname, _, err = cache.Cure(rosa.Native().Std().NewStage0())
- return
- }); err != nil {
- return
- }
- log.Println(pathname)
- }
-
return
},
).Flag(
@@ -523,10 +510,6 @@ func main() {
&flagChecksum,
"checksum", command.StringFlag(""),
"Checksum of Gentoo stage3 tarball",
- ).Flag(
- &flagStage0,
- "stage0", command.BoolFlag(false),
- "Create bootstrap stage0 tarball",
)
}