Skip to content

Commit

Permalink
Don't build vlc on Pi as we need the version with accelerated stuff t…
Browse files Browse the repository at this point in the history
…hat Pi builds.

Might as well not build it on BBB either, save a ton of time on image creation
  • Loading branch information
dkulp committed Mar 15, 2024
1 parent c8221b8 commit 7a480f2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion SD/FPP_Install.sh
Expand Up @@ -158,7 +158,7 @@ fi

# Parse build options as arguments
clone_fpp=true
build_vlc=true
build_vlc=false
skip_apt_install=false
desktop=true
isimage=false;
Expand Down Expand Up @@ -217,6 +217,10 @@ while [ -n "$1" ]; do
build_vlc=false
shift
;;
--build-vlc)
build_vlc=true
shift
;;
--skip-apt-install)
skip_apt_install=true
shift
Expand Down Expand Up @@ -507,6 +511,9 @@ case "${OSVER}" in
if $isimage; then
PACKAGE_LIST="$PACKAGE_LIST networkd-dispatcher systemd-resolved"
fi
if ! $build_vlc; then
PACKAGE_LIST="$PACKAGE_LIST vlc libvlc-dev"
fi

if $skip_apt_install; then
PACKAGE_LIST=""
Expand Down

0 comments on commit 7a480f2

Please sign in to comment.