The tr command does not take regular expressions and should not be
used with ranges such as [a-z] which furthermore can cause issues if
unquoted as they are interpreted by the shell.
-------------------------------------------------------------------------------
* 15ba90f Add support for external LED application.
* da6eb1d Add functionality to change default brightness for SK9822 LEDs.
-------------------------------------------------------------------------------
commit 15ba90f01914113e7c5e8f8a6df6279c882e8265
Author: Markus Gothe <markus.gothe@genexis.eu>
Date: 2021-05-11 09:52:55 +0200
Add support for external LED application.
Add support for a callback script/application to control LEDs.
This commits adds the ability to control a LED via an external application.
The API is simple and is described in
'iopsys-brcm63xx-arm/tiger/base-files/sbin/external_led_ctrl.sh'.
To avoid unnecessary execution of the callback-script, logic has been added
to keep track on when to update the LEDs.
Base directory -> /
src/gpio_led.c | 133 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 132 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit da6eb1d6c0fd03d45cbf5213acd5c2ff07b45bf5
Author: Markus Gothe <markus.gothe@genexis.eu>
Date: 2021-05-11 09:40:00 +0200
Add functionality to change default brightness for SK9822 LEDs.
This commit adds the 'sk9822_brightness_file' option. The option can be used
to adjust the default maximum brightness for the SK9822 LED driver.
Base directory -> /
src/gpio_led.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
* 7e013f0 Do not read entire file into buffer when extracting
-------------------------------------------------------------------------------
commit 7e013f0afa68378d38a6bdc9b0c5a342bd3dd0a5
Author: Erik Karlsson <erik.karlsson@genexis.eu>
Date: 2021-11-30 00:09:44 +0100
Do not read entire file into buffer when extracting
Only read FDT into buffer, and then in case of external image, use lseek
followed by sendfile if supported or otherwise read/write.
Remove unnecessary strdup of option arguments that would leak memory in case
options are repeated.
Fix confusing error message with --attribute when --image is used to specify
a non-existing image.
Base directory -> /
fdtextract.c | 169 +++++++++++++++++++++++++++++++++++++----------------------
1 file changed, 106 insertions(+), 63 deletions(-)
-------------------------------------------------------------------------------