Skip to content

Commit 5fe1116

Browse files
chewittgitbook-bot
authored andcommitted
GitBook: [master] 2 pages modified
1 parent f263b39 commit 5fe1116

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
* [Add Firmware](how-to/add-firmware.md)
4747
* [Blacklist Kernel Module](how-to/blacklist-kernel-module.md)
48-
* [Change Bootscreen](how-to/change-bootscreen.md)
48+
* [Change Bootsplash](how-to/change-bootscreen.md)
4949
* [Force Add-on Update](how-to/force-add-on-update.md)
5050

5151
## Development <a id="development-1"></a>

how-to/change-bootscreen.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
1-
# Change Bootscreen
1+
# Change Bootsplash
22

3-
* Upload the custom image to the network share \(yoursplash.png to the download folder\).
4-
* Connect with a SSH client to your LibreELEC box.
5-
* mount boot partition
3+
LibreELEC displays the project logo as a background "splash" screen during boot. This can be changed to your own image by placing `oemsplash.png` in the boot partition.
4+
5+
Copy your splash image to the Downloads folder, then SSH into your LibreELEC box. Next we must remount the boot partition in read-write mode so we can make changes:
66

77
```text
88
mount -o remount,rw /flash
99
```
1010

11-
* copy your oemsplash.png
11+
Copy your splash image to the boot partition, renaming it to `oemsplash.png`
1212

1313
```text
1414
cp /storage/downloads/yoursplash.png /flash/oemsplash.png
1515
```
1616

17-
* unmount boot partition
17+
Remount the boot partition in read-only mode:
1818

1919
```text
2020
mount -o remount,ro /flash
2121
```
2222

23-
At the next boot you should see the new bootscreen.
23+
On reboot you should see the new bootsplash.
24+
25+
### Splash Image Requirements
26+
27+
Splash images must be a 32-bit png files with 1920 x 1080, 1280 x 720, or 1024 x 768 pixel dimensions. Images will be upscaled to the active display resolution, so it is best to use the largest resolution \(but not 4k, as most boot firmware does not support 4k output\). Most OS image editors do not support 32-bit png export, so we recommend the excellent and open-source [GIMP](https://www.gimp.org) editor for making boot splashes.
2428

0 commit comments

Comments
 (0)