meta-digi: add variants table to config templates
Signed-off-by: Javier Viguera <javier.viguera@digi.com> (cherry picked from commit db1782bd24c4347cb9f4db33210e0f3fd6e73298)
This commit is contained in:
parent
d5f3361935
commit
fb9ec7221a
|
|
@ -33,8 +33,7 @@ MACHINE_FEATURES += "alsa touchscreen"
|
|||
#
|
||||
# Supported variants
|
||||
#
|
||||
# To build any of these variants configure MACHINE_VARIANT on the project's
|
||||
# local.conf to the variant name.
|
||||
# Maintain in sync with the same table in platform local.conf template.
|
||||
#
|
||||
# Name WiFi Eth2 BT 1wire
|
||||
# -------------------------------------------
|
||||
|
|
|
|||
|
|
@ -37,8 +37,7 @@ KERNEL_MODULE_AUTOLOAD += "pmic_battery"
|
|||
#
|
||||
# Supported variants
|
||||
#
|
||||
# To build any of these variants configure MACHINE_VARIANT on the project's
|
||||
# local.conf to the variant name.
|
||||
# Maintain in sync with the same table in platform local.conf template.
|
||||
#
|
||||
# Name WiFi Eth2 RAM=128MB NAND=2GB Accel GPU VPU
|
||||
# ---------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -35,8 +35,7 @@ KERNEL_MODULE_AUTOLOAD += "mt9v111_camera"
|
|||
#
|
||||
# Supported variants
|
||||
#
|
||||
# To build any of these variants configure MACHINE_VARIANT on the project's
|
||||
# local.conf to the variant name.
|
||||
# Maintain in sync with the same table in platform local.conf template.
|
||||
#
|
||||
# Name WiFi Eth2 RAM NAND
|
||||
# ------------------------------------------
|
||||
|
|
|
|||
|
|
@ -33,8 +33,7 @@ MACHINE_EXTRA_RRECOMMENDS += "fsl-alsa-plugins"
|
|||
#
|
||||
# Supported variants
|
||||
#
|
||||
# To build any of these variants configure MACHINE_VARIANT on the project's
|
||||
# local.conf to the variant name.
|
||||
# Maintain in sync with the same table in platform local.conf template.
|
||||
#
|
||||
# Name WiFi[w] BT[b] Proc[q|dl] DDR[1024|512|256]
|
||||
# -----------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -36,6 +36,20 @@
|
|||
#MACHINE ??= "qemux86"
|
||||
|
||||
MACHINE = "ccardimx28js"
|
||||
|
||||
#
|
||||
# Supported variants
|
||||
#
|
||||
# Maintain in sync with the same table in platform machine config file.
|
||||
#
|
||||
# Name WiFi Eth2 BT 1wire
|
||||
# -------------------------------------------
|
||||
# - N N N N (empty MACHINE_VARIANT="")
|
||||
# e N Y N N
|
||||
# w Y N N N
|
||||
# wb Y N Y N
|
||||
# web Y Y Y N
|
||||
# web1 Y Y Y Y
|
||||
MACHINE_VARIANT = "web1"
|
||||
|
||||
#
|
||||
|
|
|
|||
|
|
@ -36,6 +36,24 @@
|
|||
#MACHINE ??= "qemux86"
|
||||
|
||||
MACHINE = "ccimx51js"
|
||||
|
||||
#
|
||||
# Supported variants
|
||||
#
|
||||
# Maintain in sync with the same table in platform machine config file.
|
||||
#
|
||||
# Name WiFi Eth2 RAM Accel GPU VPU
|
||||
# ---------------------------------------------------------
|
||||
# 128 N N 128 N N N
|
||||
# 128a N N 128 Y N N
|
||||
# 128agv N N 128 Y Y Y
|
||||
# agv N N 256 Y Y Y
|
||||
# eagv N Y 512 Y Y Y
|
||||
# w Y N 512 N N N
|
||||
# w128a Y N 128 Y N N
|
||||
# w128agv Y N 128 Y Y Y
|
||||
# wagv Y N 256 Y Y Y
|
||||
# weagv Y Y 512 Y Y Y
|
||||
MACHINE_VARIANT = "wagv"
|
||||
|
||||
#
|
||||
|
|
|
|||
|
|
@ -36,6 +36,22 @@
|
|||
#MACHINE ??= "qemux86"
|
||||
|
||||
MACHINE = "ccimx53js"
|
||||
|
||||
#
|
||||
# Supported variants
|
||||
#
|
||||
# Maintain in sync with the same table in platform machine config file.
|
||||
#
|
||||
# Name WiFi Eth2 RAM NAND
|
||||
# ------------------------------------------
|
||||
# - N N 512 512 (empty MACHINE_VARIANT="")
|
||||
# 128 N N 128 128
|
||||
# 4k N N 512 1024
|
||||
# e N Y 1024 512
|
||||
# e4k N Y 512 1024
|
||||
# w Y N 512 512
|
||||
# w128 Y N 128 128
|
||||
# we Y Y 512 512
|
||||
MACHINE_VARIANT = "w"
|
||||
|
||||
#
|
||||
|
|
|
|||
|
|
@ -36,6 +36,22 @@
|
|||
#MACHINE ??= "qemux86"
|
||||
|
||||
MACHINE = "ccimx6sbc"
|
||||
|
||||
#
|
||||
# Supported variants
|
||||
#
|
||||
# Maintain in sync with the same table in platform machine config file.
|
||||
#
|
||||
# Name WiFi[w] BT[b] Proc[q|dl] DDR[1024|512|256]
|
||||
# -----------------------------------------------------------------
|
||||
# wbq1024 Y Y quad/dual 1024MiB (0x01,0x02,0x04)
|
||||
# wbq512 Y Y quad/dual 512MiB (0x03,0x06)
|
||||
# wq1024 Y N quad/dual 1024MiB (0x05)
|
||||
# wdl256 Y N duallite/solo 256MiB (0x07)
|
||||
# q512 N N quad/dual 512MiB (0x08)
|
||||
# dl256 N N duallite/solo 256MiB (0x09)
|
||||
# wdl512 Y N duallite/solo 512MiB (0x0A)
|
||||
# wbdl1024 Y Y duallite/solo 1024MiB (0x0B)
|
||||
MACHINE_VARIANT = "wbq1024"
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in New Issue