mirror of
https://github.com/armbian/build.git
synced 2025-08-18 21:11:02 +02:00
* Initial commit for kernel boot splash * Add startup files to disable bootlog when system is up / down * Update logo, remove deprecated one * Introduce new u-boot variable bootlogo * Adjust kernel config * Make logo possible on Odroid XU4 - add legacy and current upstream patches - delete xu4 environment since its not used * Cleanup C2,C4, both tested, logo works on mainline, - adding legacy upstream patches for c4 * Enable bootlogo by default on Odroid N2 * Enable logo on RK3399 desktop images * Cleanup the rest of the environment files * Add initrd hook that copy splash file to initrd. * Missing logo bits for one boot scripts * Enable boot logo on Pinebook A64 * Enable bootlogo on Teres * Update config
20 lines
507 B
Desktop File
20 lines
507 B
Desktop File
[Unit]
|
|
Description=Show bootsplash on system halt, power off, reboot, or kexec
|
|
Before=systemd-halt.service
|
|
Before=systemd-kexec.service
|
|
Before=systemd-poweroff.service
|
|
Before=systemd-reboot.service
|
|
DefaultDependencies=no
|
|
ConditionPathExists=/sys/devices/platform/bootsplash.0/enabled
|
|
|
|
[Service]
|
|
ExecStart=/bin/sh -c 'exec /bin/echo on > /sys/devices/platform/bootsplash.0/enabled'
|
|
Restart=no
|
|
Type=oneshot
|
|
|
|
[Install]
|
|
WantedBy=halt.target
|
|
WantedBy=kexec.target
|
|
WantedBy=poweroff.target
|
|
WantedBy=reboot.target
|