diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2017-11-07 22:32:07 +0100 |
---|---|---|
committer | Stefan Agner <stefan.agner@toradex.com> | 2017-11-27 15:47:13 +0100 |
commit | 478922fc1b186f83e944d5524ee5e030be7027bf (patch) | |
tree | 7562b6d983a90ea37a99d83f7e98477105d05b23 | |
parent | bf3c60305125a15d186258e83196eeee4b53513e (diff) |
tdx-extra.inc: simplify the addition of backports
This adds the backports usable for all modules unconditionally
and the ones usefull for Apalis (PCIe) specifically to all
Apalis machines.
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Acked-by: Stefan Agner <stefan.agner@toradex.com>
-rw-r--r-- | recipes-images/images/tdx-extra.inc | 51 |
1 files changed, 10 insertions, 41 deletions
diff --git a/recipes-images/images/tdx-extra.inc b/recipes-images/images/tdx-extra.inc index fc24c82..8ed8197 100644 --- a/recipes-images/images/tdx-extra.inc +++ b/recipes-images/images/tdx-extra.inc @@ -167,6 +167,7 @@ IMAGE_INSTALL += " \ \ sqlite3 \ \ + ${BACKPORTS_WIFI} \ curl \ canutils \ nfs-utils-client \ @@ -201,22 +202,10 @@ IMAGE_INSTALL += " \ \ tdx-oak-sensors \ " + #Backports -BACKPORTS_APALIS = " \ - backports \ - linux-firmware-ath10k \ - linux-firmware-ath9k \ - linux-firmware-iwlwifi \ - linux-firmware-sd8686 \ - linux-firmware-sd8688 \ - linux-firmware-sd8787 \ - linux-firmware-sd8797 \ - linux-firmware-ralink \ - linux-firmware-rtl8192cu \ - linux-firmware-rtl8188eu \ -" -BACKPORTS_COLIBRI = " \ +BACKPORTS_WIFI = " \ backports \ linux-firmware-ath10k \ linux-firmware-sd8686 \ @@ -227,39 +216,19 @@ BACKPORTS_COLIBRI = " \ linux-firmware-rtl8192cu \ linux-firmware-rtl8188eu \ " +BACKPORTS_WIFI_EXTRA = " \ + linux-firmware-ath9k \ + linux-firmware-iwlwifi \ +" IMAGE_INSTALL_append_apalis-tk1 = " \ - ${BACKPORTS_APALIS} \ + ${BACKPORTS_WIFI_EXTRA} \ " IMAGE_INSTALL_append_apalis-t30 = " \ - ${BACKPORTS_APALIS} \ + ${BACKPORTS_WIFI_EXTRA} \ " IMAGE_INSTALL_append_apalis-imx6 = " \ - ${BACKPORTS_APALIS} \ -" - -IMAGE_INSTALL_append_colibri-t30 = " \ - ${BACKPORTS_COLIBRI} \ -" - -IMAGE_INSTALL_append_colibri-t20 = " \ - ${BACKPORTS_COLIBRI} \ -" - -IMAGE_INSTALL_append_colibri-imx6 = " \ - ${BACKPORTS_COLIBRI} \ -" - -IMAGE_INSTALL_append_colibri-imx6ull = " \ - ${BACKPORTS_COLIBRI} \ -" - -IMAGE_INSTALL_append_colibri-imx7 = " \ - ${BACKPORTS_COLIBRI} \ -" - -IMAGE_INSTALL_append_colibri-vf = " \ - ${BACKPORTS_COLIBRI} \ + ${BACKPORTS_WIFI_EXTRA} \ " |