We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
copy-to-boot
1 parent ab6f83e commit 175f2faCopy full SHA for 175f2fa
src/cli/bootupctl.rs
@@ -73,6 +73,8 @@ pub enum CtlBackend {
73
Generate(super::bootupd::GenerateOpts),
74
#[clap(name = "install", hide = true)]
75
Install(super::bootupd::InstallOpts),
76
+ #[clap(name = "copy-to-boot", hide = true)]
77
+ CopyToBoot,
78
}
79
80
#[derive(Debug, Parser)]
@@ -109,6 +111,9 @@ impl CtlCommand {
109
111
CtlVerb::Backend(CtlBackend::Install(opts)) => {
110
112
super::bootupd::DCommand::run_install(opts)
113
114
+ CtlVerb::Backend(CtlBackend::CopyToBoot) => {
115
+ super::bootupd::DCommand::run_copy_to_boot()
116
+ }
117
CtlVerb::MigrateStaticGrubConfig => Self::run_migrate_static_grub_config(),
118
119
0 commit comments