1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-09-11 03:55:23 +03:00

splash: review "loading"...

While it's not as useful as the other splashes, this may help showing
issues with early post-framebuffer init. E.g. network or adbd in
stage-1.

The hollow logo is simple to describe, compared to a black and white
one, compared to a full colour one.
This commit is contained in:
Samuel Dionne-Riel 2019-09-21 18:07:42 -04:00
parent 54a52b8351
commit a9368b3623
3 changed files with 4 additions and 1 deletions

BIN
artwork/splash.stage-0.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
artwork/splash.stage-0.xcf Normal file

Binary file not shown.

View File

@ -49,7 +49,10 @@ in
];
}
(mkSplash AFTER_FRAMEBUFFER_INIT "loading")
# This is as early as we can splash...
(mkSplash AFTER_FRAMEBUFFER_INIT "splash.stage-0")
# Though there's still some setting-up in stage-1,
# This is where "init is ready".
(mkSplash (READY_INIT - 1) "splash.stage-1")
(mkIf cfg.rgb-debug (mkSplash (READY_INIT) "rgb-debug"))
]);