mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-17 13:10:29 +03:00
11 lines
232 B
Ruby
11 lines
232 B
Ruby
|
class Tasks::MsmFbNotify < SingletonTask
|
||
|
def initialize()
|
||
|
Targets[:SwitchRoot].add_dependency(:Task, self)
|
||
|
add_dependency(:Mount, "/sys")
|
||
|
end
|
||
|
|
||
|
def run()
|
||
|
System.write("/sys/class/graphics/fb0/blank", "0")
|
||
|
end
|
||
|
end
|