mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-17 13:10:29 +03:00
11 lines
250 B
Ruby
11 lines
250 B
Ruby
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
|