1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 13:31:36 +03:00
mobile-nixos/boot/init/tasks/graphics.rb

19 lines
499 B
Ruby
Raw Normal View History

2019-12-23 06:32:34 +03:00
# Ensures graphics have been initialized and are ready to be used.
#
# Currently this only handles the "legacy fbdev" style of framebuffers.
class Tasks::Graphics < SingletonTask
def initialize()
add_dependency(
:Files,
"/sys/class/graphics/fb0/mode",
"/sys/class/graphics/fb0/modes",
)
end
def run()
mode = File.read("/sys/class/graphics/fb0/modes")
log("Setting framebuffer mode to: #{mode}")
File.write("/sys/class/graphics/fb0/mode", mode)
end
end