Skip to content

Commit 8b10895

Browse files
committed
root-canal -> rootcanal
The upstream project prefers the non-hyphenated name.
1 parent 08a86e4 commit 8b10895

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

base/cvd/cuttlefish/host/commands/assemble_cvd/assemble_cvd_flags.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ DEFINE_vec(
135135
"Stop the bootflow in u-boot. You can continue the boot by connecting "
136136
"to the device console and typing in \"boot\".");
137137
DEFINE_bool(enable_host_bluetooth, CF_DEFAULTS_ENABLE_HOST_BLUETOOTH,
138-
"Enable the root-canal which is Bluetooth emulator in the host.");
138+
"Enable the rootcanal which is Bluetooth emulator in the host.");
139139
DEFINE_int32(
140140
rootcanal_instance_num, CF_DEFAULTS_ROOTCANAL_INSTANCE_NUM,
141141
"If it is greater than 0, use an existing rootcanal instance which is "

base/cvd/cuttlefish/host/commands/process_sandboxer/policies/process_restarter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ sandbox2::PolicyBuilder ProcessRestarterPolicy(const HostInfo& host) {
3434
.AddFileAt(sandboxer_proxy, host.HostToolExe("adb_connector"))
3535
.AddFileAt(sandboxer_proxy, host.HostToolExe("casimir"))
3636
.AddFileAt(sandboxer_proxy, host.HostToolExe("crosvm"))
37-
.AddFileAt(sandboxer_proxy, host.HostToolExe("root-canal"))
37+
.AddFileAt(sandboxer_proxy, host.HostToolExe("rootcanal"))
3838
.AddFileAt(sandboxer_proxy, host.HostToolExe("vhost_device_vsock"))
3939
.AddPolicyOnSyscall(__NR_prctl,
4040
{ARG_32(0), JEQ32(PR_SET_PDEATHSIG, ALLOW)})

base/cvd/cuttlefish/host/commands/run_cvd/doc/linkage.dot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ digraph {
3333

3434
bt_connector
3535
netsim
36-
root_canal [label = "root-canal"]
36+
root_canal [label = "rootcanal"]
3737
root_canal_log_tee [label = "log_tee"]
3838
}
3939

base/cvd/cuttlefish/host/commands/run_cvd/launch/root_canal.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ class RootCanal : public CommandSource {
4444

4545
// CommandSource
4646
Result<std::vector<MonitorCommand>> Commands() override {
47-
// Create the root-canal command with the process_restarter
48-
// as runner to restart root-canal when it crashes.
47+
// Create the rootcanal command with the process_restarter
48+
// as runner to restart rootcanal when it crashes.
4949
Command rootcanal(ProcessRestarterBinary());
5050
rootcanal.AddParameter("-when_killed");
5151
rootcanal.AddParameter("-when_dumped");

base/cvd/cuttlefish/host/libs/config/known_paths.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ std::string ProcessRestarterBinary() {
123123
return HostBinaryPath("process_restarter");
124124
}
125125

126-
std::string RootCanalBinary() { return HostBinaryPath("root-canal"); }
126+
std::string RootCanalBinary() { return HostBinaryPath("rootcanal"); }
127127

128128
std::string ScreenRecordingServerBinary() {
129129
return HostBinaryPath("screen_recording_server");

0 commit comments

Comments
 (0)