mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
config/options: add support for options file in $HOME/.openelec folder to override options in source dir
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
8dabf66ffa
commit
73047ca119
@ -68,6 +68,14 @@ fi
|
||||
LIBJPEG="jpeg"
|
||||
fi
|
||||
|
||||
# read options from $HOME if available
|
||||
if [ -f "$HOME/.openelec/options" ]; then
|
||||
. $HOME/.openelec/options
|
||||
fi
|
||||
if [ -f "$HOME/.openelec/$PROJECT/options" ]; then
|
||||
. $HOME/.openelec/$PROJECT/options
|
||||
fi
|
||||
|
||||
get_graphicdrivers() {
|
||||
if [ "$GRAPHIC_DRIVERS" = "all" ]; then
|
||||
GRAPHIC_DRIVERS="i915 i965 r200 r300 r600 radeon nvidia vmware"
|
||||
|
Loading…
x
Reference in New Issue
Block a user