blob: a9ec3bf55aa8a795f06e86659af2cd33dc62245f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#############################################################################
##
## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
##
## This file is part of the Qt Enterprise Embedded Scripts of the Qt
## framework.
##
## $QT_BEGIN_LICENSE$
## Commercial License Usage Only
## Licensees holding valid commercial Qt license agreements with Digia
## with an appropriate addendum covering the Qt Enterprise Embedded Scripts,
## may use this file in accordance with the terms contained in said license
## agreement.
##
## For further information use the contact form at
## http://qt.digia.com/contact-us.
##
##
## $QT_END_LICENSE$
##
#############################################################################
DESCRIPTION = "B2Qt on embedded Linux SDK image"
LICENSE = "CLOSED"
PR = "r0"
IMAGE_FEATURES += "\
package-management \
ssh-server-dropbear \
tools-debug \
debug-tweaks \
hwcodecs \
"
inherit core-image
EXTRA_IMAGEDEPENDS_mx6 += "u-boot-script-boundary"
MACHINE_EXTRA_INSTALL ?= ""
GSTREAMER_EXTRA_INSTALL = "\
gst-meta-video \
gst-meta-audio \
gst-plugins-good \
gst-plugins-base-app \
gst-plugins-good-videofilter \
gst-plugins-good-id3demux \
gst-plugins-good-auparse \
gst-plugins-good-isomp4 \
gst-plugins-ugly-rmdemux \
gst-plugins-ugly-asf \
gst-plugins-ugly-a52dec \
gst-ffmpeg \
"
TOOLS_EXTRA_INSTALL = "\
adbd \
ldd \
binutils \
binutils-symlinks \
"
IMAGE_INSTALL += "\
kernel-modules \
psplash \
openssh-sftp-server \
openssl \
libpng \
jpeg \
tiff \
libxslt \
icu \
freetype \
fontconfig \
liberation-fonts \
tslib \
tslib-calibrate \
alsa-utils-amixer \
hunspell \
${GSTREAMER_EXTRA_INSTALL} \
${TOOLS_EXTRA_INSTALL} \
${MACHINE_EXTRA_INSTALL} \
"
|