chore: remove unused feature flag

This commit is contained in:
Gabriele Musco 2024-01-06 10:32:58 +00:00
parent a98345cd78
commit 23305d3585
3 changed files with 0 additions and 20 deletions

View file

@ -33,14 +33,6 @@ cd envision
./dist/appimage/build_appimage.sh
```
<!-- no feature flags for now :)
# Feature flags
|Env var|Values|Default|
|---|---|---|
|`ENVISION_FF_USE_LIBMONADO`|`1`: enabled; `0`: disabled|`0`|
-->
# Common issues
## NOSUID with systemd-homed

View file

@ -1,11 +0,0 @@
use lazy_static::lazy_static;
use std::env;
fn get_ff_libmonado_device_enumeration_enabled() -> bool {
env::var("ENVISION_FF_USE_LIBMONADO").unwrap_or_default() == "1"
}
lazy_static! {
pub static ref FF_LIBMONADO_DEVICE_ENUMERATION_ENABLED: bool =
get_ff_libmonado_device_enumeration_enabled();
}

View file

@ -6,7 +6,6 @@ pub mod debug_view;
pub mod devices_box;
pub mod factories;
pub mod fbt_config_editor;
pub mod feature_flags;
pub mod install_wivrn_box;
pub mod job_worker;
pub mod libsurvive_setup_window;