summaryrefslogtreecommitdiffstats
path: root/templates/machine/qemux86-64
diff options
context:
space:
mode:
authorYannick Gicquel <yannick.gicquel@iot.bzh>2016-10-03 17:05:57 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2016-10-05 08:43:56 +0000
commit3c932b11312b75a76c285a40fb4fbfacc4712a14 (patch)
tree2698738216ec7885f30f7c4cfcce841426601834 /templates/machine/qemux86-64
parent884c2f9a33543fd928188f6df4597d0ddcf055a8 (diff)
packagegroup: agl-audio-plugin ported to pulseaudio-8.0
Change-Id: Ia987b1e5fa8f16faaf6b3b9e69524a793c935cf3 Signed-off-by: Yannick Gicquel <yannick.gicquel@iot.bzh>
Diffstat (limited to 'templates/machine/qemux86-64')
0 files changed, 0 insertions, 0 deletions
b { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"

def prep_version (d) :
    KV = d.getVar('KERNEL_VERSION', True)
    if not KV :
        return "4.12"
    else:
        return KV

ORIG_KERN_VER = "${@prep_version(d)}"

VANILLA_KERNEL_VERSION = "${@str(ORIG_KERN_VER.split("-")[0].split(".")[0]+ORIG_KERN_VER.split("-")[0].split(".")[1])}"

APPLY = "${@str('no' if ${VANILLA_KERNEL_VERSION} > 412 else 'yes')}"
APPLY_419 = "${@str('no' if ${VANILLA_KERNEL_VERSION} < 419 else 'yes')}"

SRC_URI_append = " \
        file://0001-most-aim-network-backport-Kernel-API.patch;apply=${APPLY} \
        file://0002-src-most-add-auto-conf-feature.patch \
        file://0003-core-remove-kernel-log-for-MBO-status.patch \
        file://0004-most-video-set-device_caps.patch \
        file://0005-most-video-set-V4L2_CAP_DEVICE_CAPS-flag.patch \
        file://0006-dim2-fix-startup-sequence.patch \
        file://0007-dim2-use-device-tree.patch \
        file://0008-dim2-read-clock-speed-from-the-device-tree.patch \
        file://0009-dim2-use-device-for-coherent-memory-allocation.patch \
        file://0010-backport-usb-setup-timer.patch \
        file://0011-handle-snd_pcm_lib_mmap_vmalloc-removal.patch;apply=${APPLY_419} \
       "
# Make sure we can expose KERNEL_VERSION ...
do_patch[depends] += "virtual/kernel:do_populate_sysroot"