Merge pull request #7376 from mglae/le11_options_additional

options: allow using  ADDITIONAL_DRIVERS and ADDITIONAL_PACKAGES of distribution
This commit is contained in:
Christian Hewitt 2023-01-18 23:18:10 +04:00 committed by GitHub
commit a283803c54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 15 additions and 15 deletions

View File

@ -46,7 +46,7 @@
KODI_DVDCSS_SUPPORT="no" KODI_DVDCSS_SUPPORT="no"
# additional drivers to install # additional drivers to install
ADDITIONAL_DRIVERS="" ADDITIONAL_DRIVERS+=""
# build and install bluetooth support (yes / no) # build and install bluetooth support (yes / no)
BLUETOOTH_SUPPORT="no" BLUETOOTH_SUPPORT="no"
@ -124,7 +124,7 @@
SWAP_SUPPORT="no" SWAP_SUPPORT="no"
# additional packages to install # additional packages to install
ADDITIONAL_PACKAGES="" ADDITIONAL_PACKAGES+=""
# build with installer (yes / no) # build with installer (yes / no)
INSTALLER_SUPPORT="no" INSTALLER_SUPPORT="no"

View File

@ -63,4 +63,4 @@
DEBUG_TTY="/dev/console" DEBUG_TTY="/dev/console"
# additional packages to install: # additional packages to install:
ADDITIONAL_PACKAGES="dt-overlays" ADDITIONAL_PACKAGES+=" dt-overlays"

View File

@ -63,8 +63,8 @@
# additional drivers to install: # additional drivers to install:
# for a list of additional drivers see packages/linux-drivers # for a list of additional drivers see packages/linux-drivers
# Space separated list is supported, # Space separated list is supported,
# e.g. ADDITIONAL_DRIVERS="DRIVER1 DRIVER2" # e.g. ADDITIONAL_DRIVERS+=" DRIVER1 DRIVER2"
ADDITIONAL_DRIVERS="" ADDITIONAL_DRIVERS+=""
# build and install driver addons (yes / no) # build and install driver addons (yes / no)
DRIVER_ADDONS_SUPPORT="no" DRIVER_ADDONS_SUPPORT="no"
@ -75,7 +75,7 @@
DRIVER_ADDONS="crazycat dvb-latest" DRIVER_ADDONS="crazycat dvb-latest"
# additional packages to install: # additional packages to install:
ADDITIONAL_PACKAGES="dtc ethmactool emmctool flashrom" ADDITIONAL_PACKAGES+=" dtc ethmactool emmctool flashrom"
# use the kernel CEC framework for libcec (yes / no) # use the kernel CEC framework for libcec (yes / no)
CEC_FRAMEWORK_SUPPORT="yes" CEC_FRAMEWORK_SUPPORT="yes"

View File

@ -59,8 +59,8 @@
# additional drivers to install: # additional drivers to install:
# for a list of additional drivers see packages/linux-drivers # for a list of additional drivers see packages/linux-drivers
# Space separated list is supported, # Space separated list is supported,
# e.g. ADDITIONAL_DRIVERS="DRIVER1 DRIVER2" # e.g. ADDITIONAL_DRIVERS+=" DRIVER1 DRIVER2"
ADDITIONAL_DRIVERS="$ADDITIONAL_DRIVERS bcm_sta" ADDITIONAL_DRIVERS+=" bcm_sta"
# build and install driver addons (yes / no) # build and install driver addons (yes / no)
DRIVER_ADDONS_SUPPORT="no" DRIVER_ADDONS_SUPPORT="no"

View File

@ -106,8 +106,8 @@
# additional drivers to install: # additional drivers to install:
# for a list of additional drivers see packages/linux-drivers # for a list of additional drivers see packages/linux-drivers
# Space separated list is supported, # Space separated list is supported,
# e.g. ADDITIONAL_DRIVERS="DRIVER1 DRIVER2" # e.g. ADDITIONAL_DRIVERS+=" DRIVER1 DRIVER2"
ADDITIONAL_DRIVERS="$ADDITIONAL_DRIVERS bcm2835-driver" ADDITIONAL_DRIVERS+=" bcm2835-driver"
if [ "${ALSA_SUPPORT}" = "yes" ]; then if [ "${ALSA_SUPPORT}" = "yes" ]; then
ADDITIONAL_DRIVERS+=" rpi-cirrus-config" ADDITIONAL_DRIVERS+=" rpi-cirrus-config"

View File

@ -62,7 +62,7 @@
FIRMWARE="misc-firmware wlan-firmware dvb-firmware brcmfmac_sdio-firmware" FIRMWARE="misc-firmware wlan-firmware dvb-firmware brcmfmac_sdio-firmware"
# additional packages to install # additional packages to install
ADDITIONAL_PACKAGES="dtc" ADDITIONAL_PACKAGES+=" dtc"
# build and install CEC framework support (yes / no) # build and install CEC framework support (yes / no)
CEC_FRAMEWORK_SUPPORT="yes" CEC_FRAMEWORK_SUPPORT="yes"

View File

@ -64,14 +64,14 @@
# additional packages to install: # additional packages to install:
# Space separated list is supported, # Space separated list is supported,
# e.g. ADDITIONAL_PACKAGES="PACKAGE1 PACKAGE2" # e.g. ADDITIONAL_PACKAGES+=" PACKAGE1 PACKAGE2"
ADDITIONAL_PACKAGES="dtc emmctool" ADDITIONAL_PACKAGES+=" dtc emmctool"
# additional drivers to install: # additional drivers to install:
# for a list of additional drivers see packages/linux-drivers # for a list of additional drivers see packages/linux-drivers
# Space separated list is supported, # Space separated list is supported,
# e.g. ADDITIONAL_DRIVERS="DRIVER1 DRIVER2" # e.g. ADDITIONAL_DRIVERS+=" DRIVER1 DRIVER2"
ADDITIONAL_DRIVERS="" ADDITIONAL_DRIVERS+=""
# build and install driver addons (yes / no) # build and install driver addons (yes / no)
DRIVER_ADDONS_SUPPORT="no" DRIVER_ADDONS_SUPPORT="no"