mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
rpi-eeprom updates the Raspberry Pi 4 bootloader and the VL805 USB controller Closes: https://bugs.gentoo.org/753431 Package-Manager: Portage-3.0.10, Repoman-3.0.2 Signed-off-by: Peter Alfredsen <crabbedhaloablution@icloud.com> Closes: https://github.com/gentoo/gentoo/pull/18386 Signed-off-by: Sam James <sam@gentoo.org>
19 lines
394 B
Plaintext
19 lines
394 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# Set configuration in /etc/conf.d/rpi-eeprom-update
|
|
|
|
description="Raspberry Pi 4 bootloader and VL805 USB controller updater"
|
|
command="/usr/sbin/rpi-eeprom-update"
|
|
command_args="-a"
|
|
|
|
depend() {
|
|
need localmount
|
|
}
|
|
|
|
stop() {
|
|
# Nothing to stop
|
|
return 0;
|
|
}
|