1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 13:31:36 +03:00
mobile-nixos/modules/quirks/qualcomm/msm-dwc3-otg_switch-task.rb

11 lines
250 B
Ruby
Raw Normal View History

2020-04-11 23:18:43 +03:00
class Tasks::MsmDwc3OtgSwitch < SingletonTask
def initialize()
Targets[:SwitchRoot].add_dependency(:Task, self)
add_dependency(:Mount, "/sys")
end
def run()
System.write("/sys/module/dwc3_msm/parameters/otg_switch", "1")
end
end